/* ── Variables ──────────────────────────────────────────── */
:root {
  --rose:   #D4537E;
  --rose-dark: #993556;
  --blush:  #FBEAF0;
  --blush-mid: #F4D0DC;
  --gold:   #FAC775;
  --white:  #ffffff;
  --text:   #3a2030;
  --text-light: #7a5565;
  --radius: 16px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Helpers ────────────────────────────────────────────── */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

/* ── Top Nav ────────────────────────────────────────────── */
.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 52px;
  background: rgba(251, 234, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--blush-mid);
}

.topnav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--rose-dark);
  letter-spacing: .04em;
}

.topnav-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topnav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  transition: transform .2s, opacity .2s;
  opacity: .75;
}

.topnav-icon:hover { transform: translateY(-2px); opacity: 1; }

.topnav-icon svg { width: 18px; height: 18px; }

.topnav-icon.telegram  { color: #229ED9; }
.topnav-icon.instagram { color: #C13584; }
.topnav-icon.twitter   { color: #000000; }
.topnav-icon.pinterest { color: #E60023; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--blush) 0%, var(--blush-mid) 60%, #f0c8d8 100%);
  text-align: center;
  padding: 80px 24px 100px;
  overflow: hidden;
}

.hero-shimmer {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(250,199,117,.25) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(212,83,126,.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.logo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  box-shadow: 0 8px 32px rgba(212,83,126,.25);
  border: 4px solid var(--white);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 600;
  color: var(--rose-dark);
  letter-spacing: .04em;
  margin-bottom: 6px;
}

.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-style: italic;
  color: var(--rose);
  letter-spacing: .08em;
  margin-bottom: 20px;
}

.sub {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 36px;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }

.btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(212,83,126,.35);
}

.btn-outline {
  border: 2px solid var(--rose);
  color: var(--rose);
}

/* ── About / What We Do ─────────────────────────────────── */
.about {
  background: var(--white);
}

.about h2,
.cta-section h2,
.about-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--rose-dark);
  margin-bottom: 16px;
}

.about > .container > p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 680px;
  margin-bottom: 52px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.pillar {
  background: var(--blush);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
}

.pillar-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 14px;
}

.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--rose-dark);
  margin-bottom: 8px;
}

.pillar p {
  font-size: .9rem;
  color: var(--text-light);
}

/* ── About Strip ────────────────────────────────────────── */
.about-strip {
  background: var(--white);
}

.about-strip-inner {
  display: flex;
  align-items: center;
  gap: 52px;
}

.about-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 8px 28px rgba(212,83,126,.2);
  border: 4px solid var(--blush-mid);
}

.about-strip-inner h2 { margin-bottom: 14px; }

.about-strip-inner p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.about-strip-inner .btn { margin-top: 8px; }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--rose-dark);
  color: rgba(255,255,255,.85);
  text-align: center;
  padding: 36px 24px;
  font-size: .88rem;
}

.footer a {
  color: var(--gold);
  text-decoration: underline;
}

.disclaimer {
  margin-top: 10px;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Mobile ─────────────────────────────────────────────── */
@media (max-width: 640px) {
  .about-strip-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-strip-inner .btn {
    display: block;
    text-align: center;
  }
}
