:root {
  --bg: #FBFAF8;
  --ink: #1E1B22;
  --muted: #6E6876;
  --accent: #B04A6E;
  --accent-dark: #8F3A58;
  --ring: #E9E2EA;
  --card: #FFFFFF;
  --wa: #25D366;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }
}

body {
  font-family: 'Assistant', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3{
  font-family: 'Frank Ruhl Libre', serif;
  line-height: 1.2
}

p {
  white-space: pre-line
}

a {
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

.wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px
}

/* ---------- header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 248, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ring);
}

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

.logo {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .02em
}

.logo span {
  color: var(--accent)
}

.nav a.cta-mini {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  transition: background .2s;
}

.nav a.cta-mini:hover {
  background: var(--accent-dark)
}

/* ---------- hero ---------- */
.hero {
  padding: 56px 0 64px
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center
}

.eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .06em;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 800;
  margin-bottom: 14px
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 34ch;
  margin-bottom: 28px
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: 999px;
  transition: transform .15s, background .2s;
}

.btn:active {
  transform: scale(.97)
}

.btn-wa {
  background: var(--wa);
  color: #fff
}

.btn-wa:hover {
  background: #1fb958
}

.btn-ghost {
  border: 1.5px solid var(--ink);
  color: var(--ink)
}

.btn-ghost:hover {
  background: var(--ink);
  color: #fff
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0
}

/* signature: the hoop */
.hoop {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 420px;
  margin-inline: auto;
  border-radius: 50%;
  border: 3px solid var(--ink);
  overflow: hidden;
  background: var(--ring);
}

.hoop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

/* ---------- classes ---------- */
section {
  padding: 64px 0
}

.sec-head {
  margin-bottom: 36px
}

.sec-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800
}

.sec-head p {
  color: var(--muted);
  margin-top: 6px
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

.card {
  background: var(--card);
  border: 1px solid var(--ring);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-img {
  aspect-ratio: 16/10;
  background: var(--ring);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .85rem;
  text-align: center;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.card-img svg {
  width: 100%;
  height: 100%
}

.card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 800
}

.card p {
  color: var(--muted);
  font-size: .97rem;
  flex-grow: 1
}

.card .tag {
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent)
}

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center
}

.about-photo {
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  background: var(--ring);
  border: 1px solid var(--ring);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo .ph {
  color: var(--muted);
  font-size: .9rem;
  text-align: center;
  padding: 0 30px
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.about h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 14px
}

.about p {
  color: var(--muted);
  margin-bottom: 12px
}

.levels {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.levels span {
  border: 1px solid var(--ring);
  background: var(--card);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: .9rem;
  font-weight: 600;
}

/* ---------- contact ---------- */
.contact {
  background: var(--ink);
  color: #fff;
  border-radius: 28px;
  padding: 56px 40px;
  text-align: center;
  margin-bottom: 64px;
}

.contact h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 10px
}

.contact p {
  color: #CFC9D6;
  margin-bottom: 28px
}

.contact .cta-row {
  justify-content: center
}

.contact .info {
  margin-top: 34px;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: .95rem;
  color: #CFC9D6;
}

.contact .info a {
  color: #fff;
  text-decoration: none;
  font-weight: 600
}

.contact .info a:hover {
  text-decoration: underline
}

footer {
  padding: 24px 0 40px;
  text-align: center;
  color: var(--muted);
  font-size: .85rem
}

/* focus */
a:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 999px
}

/* ---------- mobile ---------- */
@media (max-width:820px) {
  .hero {
    padding: 36px 0 48px
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .hoop {
    max-width: 280px;
    order: -1
  }

  .cards {
    grid-template-columns: 1fr
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .about-photo {
    max-width: 340px;
    margin-inline: auto
  }

  section {
    padding: 44px 0
  }

  .contact {
    padding: 44px 22px
  }
}