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

:root {
  --pink:       #e91e8c;
  --pink2:      #ff6ec4;
  --pink-dark:  #b5156b;
  --pink-light: #fce4f3;
  --black:      #12001a;
  --gray:       #6b5270;
  color-scheme: light;
}

html, body {
  height: 100%;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: var(--black);
  background: #fff;
}

/* ══════════════════════════════
   PAGE LAYOUT — full screen, no scroll
══════════════════════════════ */
.page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
header {
  flex-shrink: 0;
  z-index: 200;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(233,30,140,0.12);
  padding: 10px 48px;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area { display: flex; align-items: center; gap: 12px; }
.logo      { height: 46px; width: auto; }
.logo-sm   { height: 32px; width: auto; }

.tagline {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  border: 1.5px solid rgba(233,30,140,0.25);
  border-radius: 20px;
  padding: 4px 12px;
}

nav { display: flex; align-items: center; gap: 24px; }

.nav-link {
  text-decoration: none;
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
}
.nav-link.active { color: var(--pink); }

.btn-nav {
  text-decoration: none;
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  color: #fff;
  border-radius: 30px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 4px 16px rgba(233,30,140,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(233,30,140,0.45); }

/* ══════════════════════════════
   HERO  — fills remaining space
══════════════════════════════ */
.hero-wrap {
  flex: 1;
  position: relative;
  background: linear-gradient(145deg, #fff 0%, #fce4f3 50%, #ffd6ef 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-wrap::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,110,196,0.22), transparent 70%);
  top: -120px; right: -120px;
  pointer-events: none;
}
.hero-wrap::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,30,140,0.12), transparent 70%);
  bottom: -80px; left: -60px;
  pointer-events: none;
}

.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 56px;
  display: flex;
  align-items: stretch;
  gap: 48px;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.hero-left {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.8vh;
  padding: 1.5vh 0;
}

h1 {
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -3px;
  color: var(--black);
}

h1 span {
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.65;
}

.quote-box {
  border-left: 4px solid var(--pink);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  border-radius: 0 14px 14px 0;
  padding: 18px 22px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 480px;
  box-shadow: 0 2px 16px rgba(233,30,140,0.07);
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  padding: 15px 36px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(233,30,140,0.40);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(233,30,140,0.50); }

.email-chip {
  font-size: 13px;
  color: var(--gray);
  background: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(233,30,140,0.2);
  border-radius: 50px;
  padding: 10px 18px;
}
.email-chip a { color: var(--pink); text-decoration: none; font-weight: 700; }

.phone-row { display: flex; align-items: center; gap: 10px; }
.fire { font-size: 22px; }

.phone-link {
  text-decoration: none;
  color: var(--pink);
  font-size: 14px;
  line-height: 1.4;
}
.phone-link strong { display: block; font-weight: 800; font-size: 19px; }

/* HERO RIGHT */
.hero-right {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-bg {
  position: absolute;
  width: 88%;
  padding-bottom: 88%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffb3e0, #e91e8c 60%, #9c0f5f);
  opacity: 0.15;
}

.circle-ring {
  position: absolute;
  width: 76%;
  padding-bottom: 76%;
  border-radius: 50%;
  border: 2px dashed rgba(233,30,140,0.22);
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-img {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 680px;
  filter: drop-shadow(0 16px 42px rgba(233,30,140,0.30));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  flex-shrink: 0;
  background: #0c0014;
  color: #ccc;
  padding: 14px 48px;
  border-top: 1px solid rgba(233,30,140,0.2);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.footer-links { display: flex; gap: 28px; }
.footer-links a {
  color: rgba(255,110,196,0.8);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 11px; color: #555; }

/* ══════════════════════════════════════════
   TABLET LANDSCAPE  769–1024px
   Keep two-column layout, enable scroll,
   let vh/vw handle all sizing automatically.
══════════════════════════════════════════ */
@media (max-width: 1024px) and (min-width: 769px) {
  html, body { overflow: auto; }
  .page { height: auto; }
  .tagline { display: none; }
  .hero-wrap { min-height: 88svh; }
  .hero { height: auto; }
}

/* ══════════════════════════════════════════
   TABLET PORTRAIT + MOBILE  ≤768px
   Switch to stacked column layout, scroll.
   Sponge goes above the text.
   Sizes still driven by vw on portrait screens.
══════════════════════════════════════════ */
@media (max-width: 768px) {
  html, body { overflow: auto; }
  .page { height: auto; }

  /* Header — hide tagline, keep logo+nav */
  .tagline { display: none; }

  /* Hero — stack sponge on top, text below */
  .hero-wrap { min-height: auto; }
  .hero {
    flex-direction: column-reverse;
    align-items: center;
    height: auto;
    padding: 4vw;
    gap: 4vw;
  }

  .hero-left {
    width: 100%;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    gap: 3vw;
    padding: 0;
  }

  .quote-box   { text-align: left; max-width: 100%; }
  .cta-row     { justify-content: center; flex-direction: column; width: 100%; margin-top: 1.2vw; }
  .btn-primary { width: 100%; text-align: center; }
  .email-chip  { width: 100%; text-align: center; }
  .phone-row   { justify-content: center; }

  /* Sponge — use vw on portrait so it fills width nicely */
  .hero-right { width: 100%; justify-content: center; }
  .circle-bg  { width: 58vw; height: 58vw; }
  .circle-ring { display: none; }
  .hero-img   {
    max-height: none;
    width: 55vw;
    max-width: 320px;
    animation: none;
  }

  /* Text — switch from vh to vw since portrait */
  h1              { font-size: 11vw; letter-spacing: -0.3vw; }
  .hero-subtitle  { font-size: 3.5vw; }
  .quote-box      { font-size: 3vw; padding: 2.5vw 3vw; }
  .btn-primary    { font-size: 3.5vw; padding: 3vw 5vw; }
  .email-chip     { font-size: 3vw; padding: 2.5vw 4vw; }
  .phone-link     { font-size: 3vw; }
  .phone-link strong { font-size: 3.8vw; }
  .fire           { font-size: 5vw; }

  /* Footer — stack vertically */
  .footer-inner { flex-direction: column; gap: 1.5vw; text-align: center; }
  .footer-logo  { justify-content: center; }
  .footer-links { gap: 4vw; }
}
