/* Cute Clinic — home page.
 * Scoped to .hp-page so it can't leak into the rest of the page CSS.
 */

body { background: #f8f3ea; }

.hp-page {
  --green:       #1e4d37;
  --green-soft:  #2a6648;
  --green-deep:  #163829;
  --cream:       #f3ecdc;
  --cream-soft:  #fafaf7;
  --cream-warm:  #f8f3ea;
  --ink:         #1a1a1a;
  --ink-muted:   #555;
  --ink-soft:    #888;
  --rule:        #e3ddcc;

  font-family: "Karla", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream-soft);
  line-height: 1.6;
}

.hp-page * { box-sizing: border-box; }
.hp-page img { max-width: 100%; height: auto; display: block; }
.hp-page a { color: inherit; text-decoration: none; border-bottom: 0; }

.hp-container {
  max-width: 1180px; margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 56px);
}

.hp-section { padding-block: clamp(56px, 8vw, 104px); }
.hp-section--tall {
  padding-block: clamp(120px, 15vw, 200px);
  min-height: 75vh;
  display: flex; align-items: center;
}
.hp-section--tall > .hp-container { width: 100%; }
.hp-section--hero {
  min-height: 100vh;
  display: flex; align-items: center;
}
.hp-section--hero > .hp-container { width: 100%; }
.hp-section--green {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--green);
  color: var(--cream);
}
.hp-section--green::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(80% 50% at 10% 0%, rgba(243, 236, 220, 0.06), transparent 60%),
    radial-gradient(60% 40% at 90% 100%, rgba(0, 0, 0, 0.22), transparent 60%);
  z-index: -1; pointer-events: none;
}
.hp-section--cream { background: var(--cream-warm); }

.hp-eyebrow {
  display: inline-block;
  font-family: "Karla", sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--green);
  margin: 0 0 24px;
}
.hp-section--green .hp-eyebrow { color: var(--cream); opacity: 0.7; }

.hp-h1 {
  font-family: "Spectral", Georgia, serif;
  font-weight: 200;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 24px;
}
.hp-h1 em, .hp-h2 em, .hp-h3 em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic; font-weight: 400;
  color: var(--green);
}
.hp-h2 {
  font-family: "Spectral", Georgia, serif;
  font-weight: 200;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 24px;
}
.hp-h3 {
  font-family: "Spectral", Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.25rem, 1.6vw, 1.4rem);
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.005em;
}
.hp-section--green .hp-h1, .hp-section--green .hp-h2 { color: var(--cream); }
.hp-section--green .hp-h1 em, .hp-section--green .hp-h2 em { color: var(--cream); opacity: 0.85; }

.hp-lead {
  font-family: "Spectral", Georgia, serif;
  font-weight: 200;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0 0 32px;
  max-width: 56ch;
}
.hp-section--green .hp-lead { color: rgba(243,236,220,0.78); }

/* ------- Buttons ------- */
.hp-page .hp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 10px 22px;
  font-family: "Spectral", Georgia, serif;
  font-size: 0.9rem; font-weight: 200;
  letter-spacing: 0;
  background: var(--green); color: var(--cream);
  border: 1px solid var(--green);
  border-radius: 999px;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
}
.hp-page .hp-btn:hover { background: var(--green-soft); border-color: var(--green-soft); color: var(--cream); }
.hp-page .hp-btn--ghost { background: transparent; color: var(--green); }
.hp-page .hp-btn--ghost:hover { background: var(--green); color: var(--cream); }
.hp-page .hp-section--green .hp-btn {
  background: var(--cream); color: var(--green); border-color: var(--cream);
}
.hp-page .hp-section--green .hp-btn:hover { background: #fff; border-color: #fff; color: var(--green); }
.hp-page .hp-section--green .hp-btn--ghost {
  background: transparent; color: var(--cream); border-color: var(--cream);
}
.hp-page .hp-section--green .hp-btn--ghost:hover { background: var(--cream); color: var(--green); }

/* ============================================================
   1) HERO
   ============================================================ */
.hp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hp-hero__text { max-width: 520px; }
.hp-hero__buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hp-hero__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(30, 77, 55, 0.45);
}
.hp-hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hp-hero__credentials {
  display: flex; gap: 24px;
  margin-top: 36px; padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-family: "Karla", sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
}
.hp-hero__credentials span { display: inline-flex; align-items: center; gap: 8px; }
.hp-hero__credentials .hp-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--green); opacity: 0.5;
}
@media (max-width: 880px) {
  .hp-hero { grid-template-columns: 1fr; }
  .hp-hero__photo { aspect-ratio: 16 / 11; order: -1; }
}

/* ============================================================
   2) POPULAR DIAGNOSTIC TESTS
   ============================================================ */
.hp-section__head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  margin-bottom: clamp(40px, 5vw, 64px);
  align-items: end;
}
.hp-section__head .hp-lead { margin: 0; max-width: none; }
@media (max-width: 880px) {
  .hp-section__head { grid-template-columns: 1fr; gap: 24px; }
}

.hp-tests {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 880px) {
  .hp-tests { grid-template-columns: 1fr; }
}
.hp-test {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .2s ease, transform .2s ease;
}
.hp-test:hover { border-color: rgba(30, 77, 55, 0.35); transform: translateY(-2px); }
.hp-test__img {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--cream-warm);
}
.hp-test__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.hp-test:hover .hp-test__img img { transform: scale(1.03); }
.hp-test__body {
  padding: clamp(20px, 2vw, 28px);
  display: flex; flex-direction: column;
  gap: 10px;
  flex: 1;
}
.hp-test__eyebrow {
  font-family: "Karla", sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green);
  margin: 0;
}
.hp-test__price {
  font-family: "Cormorant Garamond", serif;
  font-style: italic; font-weight: 400;
  font-size: 1.4rem;
  color: var(--green);
  margin: 0;
  line-height: 1;
}
.hp-test__cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto; padding-top: 10px;
  font-family: "Spectral", serif;
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--green);
  border-bottom: 1px solid transparent;
  align-self: flex-start;
  transition: border-color .2s ease;
}
.hp-test__cta:hover { border-bottom-color: var(--green); }

/* ============================================================
   3) NOTE FROM SIMONA
   ============================================================ */
.hp-note {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hp-note__portrait {
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background: var(--cream);
}
.hp-note__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hp-note__body p {
  font-family: "Spectral", serif;
  font-weight: 200;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-muted);
  margin: 0 0 18px;
  max-width: 56ch;
}
.hp-note__body p:last-child { margin-bottom: 0; }
.hp-note__sig {
  margin-top: 28px;
  display: flex; align-items: center; gap: 20px;
}
.hp-note__sig img {
  height: 56px; width: auto;
  opacity: 0.85;
}
.hp-note__sig-meta {
  font-family: "Spectral", serif;
  font-weight: 200;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.hp-note__sig-meta strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic; font-weight: 400;
  font-size: 1.15rem;
  color: var(--green);
  margin-bottom: 2px;
}
.hp-note__socials {
  margin-top: 24px;
  display: flex; gap: 10px;
}
.hp-note__socials a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule); border-radius: 50%;
  color: var(--green);
  transition: background-color .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.hp-note__socials a:hover {
  background: var(--green); border-color: var(--green); color: var(--cream);
  transform: translateY(-2px);
}
.hp-note__socials svg { width: 15px; height: 15px; }
@media (max-width: 880px) {
  .hp-note { grid-template-columns: 1fr; }
}

/* ============================================================
   4) LATEST POSTS
   ============================================================ */
.hp-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 880px) {
  .hp-posts { grid-template-columns: 1fr; }
}
.hp-post {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--rule);
  transition: border-color .2s ease, transform .2s ease;
}
.hp-post:hover { border-color: rgba(30, 77, 55, 0.35); transform: translateY(-2px); }
.hp-post__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-warm);
}
.hp-post__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.hp-post:hover .hp-post__img img { transform: scale(1.03); }
.hp-post__body {
  padding: clamp(20px, 2vw, 28px);
}
.hp-post__date {
  font-family: "Karla", sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green);
  margin: 0 0 10px;
}
.hp-post__title {
  font-family: "Spectral", serif;
  font-weight: 300;
  font-size: clamp(1.15rem, 1.4vw, 1.25rem);
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.005em;
}

.hp-posts-foot {
  display: flex; justify-content: center;
  margin-top: clamp(32px, 4vw, 48px);
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   5) BIG CTA
   ============================================================ */
.hp-cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hp-cta__heading {
  font-family: "Spectral", serif;
  font-weight: 200;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin: 0 0 24px;
  max-width: 18ch;
  letter-spacing: -0.01em;
}
.hp-cta__heading em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic; font-weight: 400;
  color: var(--green);
}
.hp-cta__lede {
  font-family: "Spectral", serif;
  font-weight: 200;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0 0 24px;
  max-width: 48ch;
}
.hp-cta__buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.hp-cta-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: clamp(28px, 3vw, 40px);
}
.hp-cta-card__title {
  font-family: "Karla", sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--green);
  margin: 0 0 14px;
}
.hp-cta-card__list { list-style: none; padding: 0; margin: 0; }
.hp-cta-card__list li {
  display: grid; grid-template-columns: 28px 1fr; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-family: "Spectral", serif;
  font-weight: 200; font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.4;
}
.hp-cta-card__list li:first-child { padding-top: 0; }
.hp-cta-card__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.hp-cta-card__num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic; font-weight: 400;
  font-size: 1.2rem;
  color: var(--green);
  line-height: 1;
}
@media (max-width: 880px) {
  .hp-cta-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Fades
   ============================================================ */
.hp-fade {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.hp-fade.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .hp-fade { opacity: 1; transform: none; transition: none; }
}
</content>
</invoke>