:root {
  --white: #ffffff;
  --bg: #faf8f5;
  --bg-soft: #f3efe9;
  --bg-blush: #f9f0ee;
  --ink: #1c1917;
  --ink-soft: #44403c;
  --muted: #5c5854;
  --rose: #c9a0a4;
  --rose-deep: #a67b7f;
  --rose-light: #f0dedf;
  --gold: #c4a882;
  --shadow: 0 4px 24px rgba(28, 25, 23, 0.06);
  --shadow-lg: 0 20px 60px rgba(28, 25, 23, 0.1);
  --radius: 20px;
  --radius-sm: 12px;
  --pad: clamp(20px, 5vw, 80px);
  --header-h: 60px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

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

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

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

.container {
  width: min(1140px, 100%);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8b6367;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(166, 123, 127, 0.12);
  transition: box-shadow 0.25s;
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header .container {
  height: 100%;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav a,
.nav__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.nav a:hover,
.nav__link:hover {
  color: var(--ink);
  background: var(--bg-soft);
}

.nav__link--active {
  color: var(--ink);
  background: var(--rose-light);
  border-color: rgba(166, 123, 127, 0.2);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  padding: calc(var(--header-h) + 40px) var(--pad) 80px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 90%;
  background: radial-gradient(ellipse, var(--rose-light) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__text { position: relative; z-index: 1; }

.hero__text .label { margin-bottom: 24px; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  color: var(--rose-deep);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 400px;
  line-height: 1.7;
}

.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__frame {
  position: relative;
  border-radius: 200px 200px 20px 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 78vh;
  box-shadow: var(--shadow-lg);
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  display: block;
  width: 100%;
  transition: transform 0.25s, box-shadow 0.25s;
}

.hero__frame:hover {
  transform: scale(1.01);
  box-shadow: var(--shadow-lg);
}

.hero__frame:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 4px;
}

.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.hero__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--rose-deep);
}

.hero__badge span {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Section base ── */
.section {
  padding: clamp(72px, 10vw, 120px) 0;
}

.section--soft { background: var(--bg-soft); }
.section--after-intro { padding-top: 0; }
.section--blush { background: var(--bg-blush); }

.section__head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  color: var(--ink);
  margin-top: 12px;
}

/* ── Titles grid ── */
.titles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.title-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(166, 123, 127, 0.12);
  transition: transform 0.3s, box-shadow 0.3s;
}

.title-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.title-card__num {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--rose-deep);
  line-height: 1;
  margin-bottom: 14px;
}

.title-card h3 {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.8vw, 1.125rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.55;
}

/* ── Media ── */
.media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.media__phone {
  background: var(--white);
  border-radius: 28px;
  padding: 16px;
  box-shadow: var(--shadow-lg);
  max-width: 340px;
  margin: 0 auto;
  border: none;
  cursor: pointer;
  display: block;
  width: 100%;
  transition: transform 0.25s;
}

.media__phone:hover { transform: scale(1.02); }

.media__phone:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 4px;
}

.media__phone img {
  border-radius: 16px;
  width: 100%;
}

.media__stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.stat {
  padding-left: 24px;
  border-left: 3px solid var(--rose);
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}

.stat__label {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* ── Gallery ── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery__item {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  transition: transform 0.5s ease;
}

.gallery__item:hover img,
.celeb__photo:hover img { transform: scale(1.04); }

.lb-item { cursor: pointer; }

.gallery__item:nth-child(1) { grid-row: span 2; }
.gallery__item:nth-child(1) img { aspect-ratio: auto; height: 100%; min-height: 400px; }

/* ── Celebrities ── */
.celebs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.celeb {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.celeb img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.celebs--2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: none;
}

.celeb__photo {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  overflow: hidden;
}

.celeb__photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.celeb__photo:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: -2px;
}

.celeb figcaption {
  padding: 14px 12px;
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 2.5vw, 1rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  border-top: 1px solid var(--bg-soft);
  text-align: center;
}

/* ── Page intro (services) ── */
.page-intro {
  padding-top: calc(var(--header-h) + 36px);
  padding-bottom: 16px;
  background: linear-gradient(180deg, var(--bg-blush) 0%, var(--bg) 100%);
}

.page-intro .section__head {
  margin-bottom: 0;
}

.page-intro h2 em {
  font-style: italic;
  color: var(--rose-deep);
}

/* ── CTA banner ── */
.cta-banner {
  padding: clamp(48px, 8vw, 72px) 0 clamp(56px, 10vw, 88px);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-blush) 100%);
}

.cta-card {
  text-align: center;
  background: var(--white);
  border: 2px solid var(--rose);
  border-radius: var(--radius);
  padding: clamp(36px, 8vw, 56px) clamp(24px, 5vw, 48px);
  box-shadow: 0 16px 56px rgba(166, 123, 127, 0.22);
  max-width: 620px;
  margin: 0 auto;
}

.cta-card .label {
  margin-bottom: 14px;
}

.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 6.5vw, 3rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.12;
  margin-bottom: 28px;
}

.btn--cta {
  display: inline-flex;
  width: 100%;
  max-width: 420px;
  padding: 20px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  background: var(--rose-deep);
  color: var(--white);
  border-radius: 100px;
  box-shadow: 0 10px 32px rgba(166, 123, 127, 0.45);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn--cta:hover {
  background: #8f6569;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(166, 123, 127, 0.5);
}

.cta-banner__sub {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3.8vw, 1.45rem);
  font-style: italic;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ── Formats ── */
.formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.format-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 1px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}

.format-card:hover {
  border-color: var(--rose-light);
  transform: translateY(-4px);
}

.format-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-deep);
  background: var(--rose-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.format-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.format-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ── Packages ── */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pkg {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pkg--featured {
  border: 2px solid var(--rose);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.pkg--featured::before {
  content: 'Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose-deep);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
}

.pkg__tier {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 8px;
}

.pkg h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.pkg__price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 24px;
}

.pkg__price small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}

.pkg__price--muted {
  font-size: 1.1rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 24px;
}

.pkg ul {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}

.pkg li {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pkg li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn--primary {
  background: var(--ink);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--rose-deep);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn--outline:hover {
  background: var(--ink);
  color: var(--white);
}

.btn--full { width: 100%; }

/* ── WhatsApp ── */
.contact {
  text-align: center;
  padding: clamp(64px, 8vw, 100px) var(--pad);
  background: var(--white);
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #25D366;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 20px 48px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.wa-btn svg { width: 24px; height: 24px; fill: currentColor; }

.contact__note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

/* ── Footer ── */
.footer {
  text-align: center;
  padding: 32px var(--pad);
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--bg-soft);
}

/* ── Lightbox ── */
body.lb-open { overflow: hidden; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

.lightbox[hidden] { display: none; }

.lightbox__img {
  max-width: min(96vw, 780px);
  max-height: 92vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  border: none;
  background: var(--white);
  color: var(--ink);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s;
}

.lightbox__close:hover,
.lightbox__nav:hover { background: var(--rose-light); }

.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__text { animation: fadeUp 0.8s ease both; }
.hero__visual { animation: fadeUp 0.8s 0.15s ease both; }

/* ── Responsive ── */
@media (max-width: 960px) {
  :root {
    --header-h: 56px;
    --pad: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--header-h) + 28px);
    padding-bottom: 48px;
    min-height: auto;
    gap: 28px;
  }

  .hero__sub { margin: 0 auto; }
  .hero__title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero__frame {
    max-width: min(320px, 88vw);
    margin: 0 auto;
    border-radius: 160px 160px 20px 20px;
    max-height: none;
  }

  .titles { grid-template-columns: 1fr; }
  .media { grid-template-columns: 1fr; gap: 32px; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery__item:nth-child(1) { grid-row: span 1; }
  .gallery__item:nth-child(1) img { min-height: auto; aspect-ratio: 3/4; }
  .formats, .packages { grid-template-columns: 1fr; }
  .celebs--2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .page-intro { padding-top: calc(var(--header-h) + 24px); }
  .section { padding: 56px 0; }
  .cta-banner { padding: 40px 0 48px; }
  .cta-card { padding: 32px 20px; }

  .nav__link {
    font-size: 10px;
    padding: 7px 11px;
  }

  .logo { font-size: 1.1rem; }
}

@media (max-width: 560px) {
  .hero__frame { max-width: 280px; }
}
