:root{
  --bg:        #FAF7F4;
  --ink:       #2E2A28;
  --ink-soft:  #6E645E;
  --accent:    #DF7488;
  --accent-2:  #B8556B;
  --blush:     #F4DCE1;
  --line:      #EBDFE0;
  --white:     #FFFFFF;

  --font-display: 'Newsreader', serif;
  --font-body: 'Inter', sans-serif;

  --max-w: 1080px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap{
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
@media(max-width: 480px){
  .wrap{ padding: 0 20px; }
}

h1, h2, h3{
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

h1{ font-size: clamp(2.2rem, 4.2vw, 3.4rem); line-height: 1.12; }
h2{ font-size: clamp(1.6rem, 2.6vw, 2.15rem); line-height: 1.2; }
h3{ font-size: 1.15rem; margin-bottom: .35em; }

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

em{
  font-style: italic;
  color: var(--accent);
}

strong{ color: var(--ink); font-weight: 600; }

a{ color: inherit; text-decoration: none; }

.eyebrow{
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .9em;
}
.eyebrow-inverse{ color: var(--blush); }

/* ---------- header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250,247,243,0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-row{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
}
.nav{
  display: flex;
  gap: 28px;
  font-size: .92rem;
  color: var(--ink-soft);
}
.nav a:hover{ color: var(--accent); }
.nav-cta{ display: none; }
.nav-mobile-cta{ display: none; }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media(min-width: 761px){
  .nav-cta{ display: inline-flex; }
}
@media(max-width: 760px){
  .nav-toggle{ display: flex; }
  .nav{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .nav.open{ max-height: 340px; }
  .nav a{
    padding: 14px 28px;
    border-top: 1px solid var(--line);
  }
  .nav-mobile-cta{
    display: block;
    margin: 16px 28px 20px;
    text-align: center;
    border-top: none !important;
  }
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 600;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }

.btn-primary{
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover{ background: var(--accent-2); }

.btn-ghost{
  border-color: var(--accent);
  color: var(--accent);
  padding: 9px 20px;
}
.btn-ghost:hover{ background: var(--accent); color: var(--white); }

.btn-text{
  color: var(--ink);
  padding: 12px 6px;
  font-weight: 500;
}
.btn-text:hover{ color: var(--accent); }

.btn-outline{
  border-color: var(--blush);
  color: var(--blush);
}
.btn-outline:hover{ background: var(--blush); color: var(--accent-2); }

.btn-lg{ padding: 15px 32px; font-size: 1rem; }

/* ---------- hero ---------- */
.hero{ padding: 84px 0 70px; }
@media(max-width: 640px){
  .hero{ padding: 44px 0 48px; }
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.lede{ font-size: 1.08rem; max-width: 46ch; }
.hero-actions{
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-art{ display: flex; justify-content: center; }
.constellation-standalone{ width: 100%; max-width: 360px; }
.c-line{ stroke: var(--line); stroke-width: 1.4; }
.c-line-soft{ stroke: var(--blush); }
.c-node{ fill: var(--blush); }
.c-node-main{ fill: var(--accent); }
.c-node-soft{ fill: var(--white); stroke: var(--blush); stroke-width: 2; }

@media(max-width: 860px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-art{ order: -1; }
  .constellation-standalone{ max-width: 260px; }
}
@media(max-width: 480px){
  .constellation-standalone{ max-width: 190px; }
}

/* ---------- sections ---------- */
.section{ padding: 76px 0; border-top: 1px solid var(--line); }
.section-tint{ background: var(--blush); border-top: none; }
.section-tint .eyebrow{ color: var(--accent-2); }
@media(max-width: 640px){
  .section{ padding: 52px 0; }
}

.about-grid{
  display: grid;
  grid-template-columns: auto 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.about-grid > .eyebrow{ padding-top: 6px; }
.about-photo{
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  background: var(--blush);
}
.about-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-text h2{ max-width: 20ch; }
@media(max-width: 900px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-photo{ max-width: 280px; aspect-ratio: 4/5; margin: 0 auto; }
}

.cards{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 34px;
}
.card{
  background: var(--bg);
  border-radius: 14px;
  padding: 26px 24px;
}
@media(max-width: 640px){
  .cards{ grid-template-columns: 1fr; }
}

.atend-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}
@media(max-width: 780px){
  .atend-grid{ grid-template-columns: 1fr; }
}
.steps{
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.steps li{
  padding-left: 0;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.step-n{
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
  margin-bottom: 4px;
}

/* ---------- contact ---------- */
.section-dark{
  background: var(--ink);
  border-top: none;
}
.section-dark h2{ color: var(--white); }
.contact-lede{ color: #C9BFB9; max-width: 40ch; }
.contact-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}
.contact-actions{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media(max-width: 780px){
  .contact-grid{ grid-template-columns: 1fr; }
}
@media(max-width: 480px){
  .contact-actions{ flex-direction: column; align-items: stretch; }
  .contact-actions .btn{ width: 100%; }
  .hero-actions{ flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary{ width: 100%; text-align: center; }
}

/* ---------- footer ---------- */
.site-footer{
  padding: 26px 0 40px;
  background: var(--ink);
}
.footer-row{
  display: flex;
  justify-content: space-between;
  color: #9C918A;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid #423C39;
  padding-top: 22px;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .btn{ transition: none; }
}
