*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --pink: #e91e8c;
  --pink-light: #fce4f3;
  --pink-mid: #f8c8e8;
  --dark: #1a1a2e;
  --text: #2d2d2d;
  --muted: #777;
  --white: #fff;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(233,30,140,0.10);
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 64px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(233,30,140,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-brand .nav-logo { display: inline-flex; margin-bottom: 12px; }
.nav-logo-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--pink); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; }
.nav-logo-text { line-height: 1.2; }
.nav-logo-text strong { display: block; color: var(--pink); font-size: 15px; font-weight: 600; }
.nav-logo-text span { font-size: 11px; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 14px; font-weight: 500; position: relative; padding-bottom: 4px; }
.nav-links a.active, .nav-links a:hover { color: var(--pink); }
.nav-links a.active::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--pink); border-radius: 2px; }
.nav-cta { display: flex; align-items: center; gap: 8px; background: var(--pink); color: #fff; text-decoration: none; padding: 10px 20px; border-radius: 50px; font-size: 14px; font-weight: 500; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

.about-hero {
  background: linear-gradient(135deg, #fff5fb 0%, #fff 60%);
  padding: 80px 5%; text-align: center;
}
.hero-badge {
  display: inline-block; background: rgba(233,30,140,0.08); color: var(--pink);
  border: 1px solid rgba(233,30,140,0.2); border-radius: 50px;
  padding: 6px 16px; font-size: 13px; font-weight: 500; margin-bottom: 20px;
}
.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--dark); line-height: 1.2; margin-bottom: 16px;
}
.about-hero h1 span { color: var(--pink); font-style: italic; }
.about-hero p { color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 620px; margin: 0 auto; }

.story {
  padding: 80px 5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.story-label { font-size: 12px; font-weight: 600; color: var(--pink); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.story h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--dark); margin-bottom: 20px; }
.story p { color: var(--muted); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.story p strong { color: var(--text); font-weight: 600; }
.story p a { color: var(--pink); text-decoration: none; font-weight: 500; }
.story-img { border-radius: 24px; overflow: hidden; aspect-ratio: 4/3; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }

.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--pink-light); padding: 48px 5%; gap: 24px; text-align: center;
}
.stat-item strong { display: block; font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--pink); margin-bottom: 4px; }
.stat-item span { font-size: 13px; color: var(--muted); }

.owners-section {
  padding: 80px 5%;
}
.owners-header { text-align: center; margin-bottom: 48px; }
.owner-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.owner-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid #f0e0ea;
  box-shadow: var(--shadow);
}
.owner-img { background: var(--pink-light); min-height: 360px; overflow: hidden; }
.owner-img img { width: 100%; height: 100%; object-fit: cover; }
.owner-copy { padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.owner-role { font-size: 12px; font-weight: 700; color: var(--pink); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.owner-card h3 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--dark); margin: 0; }
.owner-copy p { color: var(--muted); font-size: 15px; line-height: 1.8; }

.pg-types { padding: 80px 5%; background: #fef5fb; text-align: center; }
.section-label { font-size: 12px; font-weight: 600; color: var(--pink); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--dark); line-height: 1.2; margin-bottom: 14px; }
.section-sub { color: var(--muted); font-size: 15px; line-height: 1.7; max-width: 600px; margin: 0 auto 48px; }
.types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.type-card { background: #fff; border-radius: var(--radius); padding: 32px 24px; text-align: left; border: 1px solid #f0e0ea; transition: transform 0.2s, box-shadow 0.2s; }
.type-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.type-icon { width: 44px; height: 44px; background: var(--pink-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--pink); margin-bottom: 18px; }
.type-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.type-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

.why-us { padding: 80px 5%; }
.why-us-header { text-align: center; margin-bottom: 48px; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.why-card { text-align: center; padding: 28px 20px; border-radius: var(--radius); border: 1px solid #f0e0ea; transition: box-shadow 0.2s; }
.why-card:hover { box-shadow: var(--shadow); }
.why-icon { width: 52px; height: 52px; background: var(--pink-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--pink); margin: 0 auto 14px; }
.why-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.why-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

.cta { margin: 60px 5%; background: linear-gradient(135deg, var(--pink-light), #fff); border-radius: 24px; padding: 64px 48px; text-align: center; border: 1px solid #f0e0ea; }
.cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--dark); margin-bottom: 12px; }
.cta p { color: var(--muted); font-size: 15px; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--pink); color: #fff; padding: 14px 28px; border-radius: 50px; text-decoration: none; font-size: 15px; font-weight: 500; transition: transform 0.2s, box-shadow 0.2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(233,30,140,0.3); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--text); padding: 14px 28px; border-radius: 50px; text-decoration: none; font-size: 15px; font-weight: 500; border: 1.5px solid #ddd; transition: border-color 0.2s, color 0.2s; }
.btn-outline:hover { border-color: var(--pink); color: var(--pink); }

footer { background: var(--pink-light); padding: 56px 5% 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-top: 12px; }
.footer-col h5 { font-size: 14px; font-weight: 600; margin-bottom: 14px; color: var(--dark); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { text-decoration: none; color: var(--muted); font-size: 13px; display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--pink); }
  .footer-note { font-size: 11px; color: #aaa; }
  .footer-bottom { border-top: 1px solid rgba(233,30,140,0.12); padding-top: 24px; text-align: center; font-size: 12px; color: var(--muted); }

.floating-call-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(233, 30, 140, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 99;
}

.floating-call-btn:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 12px 32px rgba(233, 30, 140, 0.4);
}

.floating-call-btn svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

@media (max-width: 600px) {
  .floating-call-btn {
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
  }

  .floating-call-btn svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 900px) {
  .story { grid-template-columns: 1fr; }
  .story-img { order: -1; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .owner-grid { grid-template-columns: 1fr; }
  .owner-card { grid-template-columns: 1fr; }
  .owner-img { min-height: 300px; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  nav { padding: 0 4%; }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: #fff; flex-direction: column; gap: 0; border-bottom: 1px solid #f0e0ea; padding: 8px 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; border-bottom: 1px solid #f0e0ea; }
  .nav-links a.active::after { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .about-hero { padding: 48px 4%; }
  .story { padding: 48px 4%; gap: 32px; }
  .stats-strip { grid-template-columns: 1fr; padding: 40px 4%; }
  .owner-grid { grid-template-columns: 1fr; }
  .owner-card { grid-template-columns: 1fr; }
  .owner-img { min-height: 260px; }
  .pg-types, .why-us { padding: 56px 4%; }
  .types-grid, .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta { margin: 40px 4%; padding: 40px 24px; }
  .cta-btns { flex-direction: column; align-items: center; }
}
