/* ---------- Base / Variables ---------- */
:root {
  --blush: #fdf1f0;
  --cream: #fffaf8;
  --pink: #f7b8c4;
  --pink-soft: #fbdde3;
  --pink-dark: #e88fa3;
  --rose-text: #6b323f;
  --charcoal: #4a3f41;
  --muted: #8a7678;
  --white: #ffffff;
  --shadow: 0 12px 32px rgba(191, 116, 138, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --serif: 'Playfair Display', serif;
  --script: 'Petit Formal Script', cursive;
  --sans: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--rose-text);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 999;
}
.skip-link:focus { left: 0; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pink-dark);
  margin: 0 0 8px;
}

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--rose-text);
  margin: 0 0 20px;
}
.section-title.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary {
  background: var(--pink-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); background: #de7d92; }
.btn-outline {
  background: transparent;
  border-color: var(--pink-dark);
  color: var(--rose-text);
}
.btn-outline:hover { background: var(--pink-soft); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 248, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(232, 143, 163, 0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rose-text);
}
.logo span { color: var(--pink-dark); font-weight: 500; font-style: italic; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 500;
}
.main-nav a:hover { color: var(--pink-dark); }
.nav-cta {
  background: var(--pink-dark);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 999px;
}
.nav-cta:hover { background: #de7d92; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--rose-text);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
  text-align: center;
  background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%);
}
.hero-inner { position: relative; z-index: 2; }
.hero-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 5px solid var(--white);
  box-shadow: var(--shadow);
  margin: 0 auto 18px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: var(--rose-text);
  margin: 6px 0 4px;
}
.hero-tagline {
  font-family: var(--script);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--pink-dark);
  margin: 0 0 16px;
}
.hero-sub {
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 1rem;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.social-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--rose-text);
}
.social-row a:hover { color: var(--pink-dark); }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: 1;
  opacity: 0.6;
}
.blob-1 {
  width: 260px; height: 260px;
  background: var(--pink-soft);
  top: -80px; left: -80px;
}
.blob-2 {
  width: 320px; height: 320px;
  background: var(--pink-soft);
  bottom: -140px; right: -100px;
}

/* ---------- Stats ---------- */
.stats { padding: 70px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 28px 16px;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pink-dark);
}
.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.stats-footnote {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 18px;
}

/* ---------- About ---------- */
.about { padding: 70px 0; background: var(--blush); }
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.tag {
  background: var(--white);
  color: var(--rose-text);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(191, 116, 138, 0.1);
}

/* ---------- Platforms ---------- */
.platforms { padding: 70px 0; }
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.platform-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 26px 24px;
}
.platform-card h3 {
  font-family: var(--serif);
  color: var(--rose-text);
  margin: 0 0 12px;
  font-size: 1.1rem;
}
.platform-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pink-dark);
  background: var(--pink-soft);
  padding: 3px 10px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}
.platform-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}
.platform-card li { margin-bottom: 4px; }
.platform-note {
  margin-top: 30px;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: italic;
}

/* ---------- Services ---------- */
.services { padding: 70px 0; background: var(--blush); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.service-card h3 {
  font-family: var(--serif);
  color: var(--rose-text);
  margin: 0 0 10px;
  font-size: 1.15rem;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- Portfolio ---------- */
.portfolio { padding: 70px 0; }
.portfolio-sub {
  text-align: center;
  color: var(--muted);
  margin-top: -10px;
  margin-bottom: 34px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.portfolio-card {
  margin: 0;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
}
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-card figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(255, 250, 248, 0.92);
  color: var(--rose-text);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}

/* ---------- Video Works ---------- */
.video-works { padding: 70px 0; background: var(--blush); }
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  background: #000;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.video-thumb:hover img { opacity: 1; }
.video-thumb iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(232, 143, 163, 0.92);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  padding-left: 4px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
.video-caption {
  margin: 0;
  padding: 14px 18px;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--rose-text);
  font-size: 0.95rem;
}

/* ---------- Brands ---------- */
.brands { padding: 70px 0; text-align: center; }
.brand-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}
.brand-row span {
  background: var(--white);
  border: 1px solid var(--pink-soft);
  color: var(--rose-text);
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.95rem;
}
.brands-footnote {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ---------- Rates ---------- */
.rates { padding: 70px 0; background: var(--blush); }
.rates-sub { text-align: center; color: var(--muted); margin-top: -10px; margin-bottom: 40px; }
.rate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.rate-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 30px 24px;
  text-align: center;
}
.rate-card.featured { border: 2px solid var(--pink-dark); }
.rate-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink-dark);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: 999px;
}
.rate-card h3 {
  font-family: var(--serif);
  color: var(--rose-text);
  margin: 6px 0 10px;
  font-size: 1.15rem;
}
.rate-desc { color: var(--muted); font-size: 0.88rem; min-height: 42px; }
.rate-price {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pink-dark);
  margin: 12px 0 0;
}

.addons {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px 40px;
}
.addons h3 {
  font-family: var(--serif);
  color: var(--rose-text);
  margin-top: 0;
}
.addons ul { list-style: none; padding: 0; margin: 0; }
.addons li {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--pink-soft);
  font-size: 0.9rem;
  align-items: center;
}
.addons li:last-of-type { border-bottom: none; }
.addons li span:first-child { font-weight: 600; color: var(--rose-text); }
.addons li span:nth-child(2) { color: var(--muted); }
.addons li span:last-child { font-weight: 700; color: var(--pink-dark); text-align: right; white-space: nowrap; }
.rates-footnote {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.82rem;
}

/* ---------- Contact ---------- */
.contact { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.contact-copy p { color: var(--muted); }
.contact-links {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.contact-links li { margin-bottom: 10px; }
.contact-links a {
  font-weight: 600;
  color: var(--rose-text);
}
.contact-links a:hover { color: var(--pink-dark); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px;
}
.form-row { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-row label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rose-text);
}
.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--pink-soft);
  background: var(--blush);
  color: var(--charcoal);
  resize: vertical;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--pink-dark);
}
.form-status {
  margin: 14px 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.2em;
}
.form-status.success { color: #4a8c5f; }
.form-status.error { color: #c0435a; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--rose-text);
  color: var(--white);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.site-footer .logo { color: var(--white); }
.site-footer .logo span { color: var(--pink-soft); }
.footer-inner p { margin: 0; font-size: 0.85rem; opacity: 0.85; }
.footer-socials { display: flex; gap: 20px; font-size: 0.85rem; }
.footer-socials a:hover { color: var(--pink-soft); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-grid,
  .services-grid,
  .rate-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid,
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 280px; margin: 0 auto; }
  .addons li { grid-template-columns: 1fr; gap: 2px; }
  .addons li span:last-child { text-align: left; }
}

@media (max-width: 640px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 16px;
    box-shadow: var(--shadow);
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .stats-grid,
  .platform-grid,
  .services-grid,
  .rate-grid { grid-template-columns: 1fr; }
  .portfolio-grid,
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}
