:root {
  --bg: #080808;
  --bg-soft: #121212;
  --text: #f5f0ee;
  --muted: #ccb7b7;
  --rose: #f2c7d1;
  --rose-strong: #e8a8b8;
  --gold: #d2b48c;
  --card: #171717;
  --border: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: radial-gradient(circle at 10% 10%, #1a1a1a 0%, var(--bg) 45%);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.hero {
  min-height: 90vh;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(
      130deg,
      rgba(232, 168, 184, 0.16),
      rgba(210, 180, 140, 0.06)
    ),
    var(--bg);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.brand {
  color: var(--rose);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand img {
  width: 126px;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-fallback {
  font-size: 2rem;
  font-family: "Parisienne", cursive;
}

.brand-fallback span {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.2rem;
  color: var(--gold);
  margin-left: 0.4rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--rose);
}

.menu-btn {
  display: none;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  border-radius: 10px;
  padding: 0.35rem 0.6rem;
}

.hero-content {
  padding: 5rem 0 7rem;
}

.hero-stats {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 0.7rem;
  max-width: 760px;
}

.hero-stats li {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem;
  display: grid;
}

.hero-stats strong {
  font-size: 1.35rem;
  color: var(--rose);
  font-family: "Cormorant Garamond", serif;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.8rem;
}

.eyebrow {
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  max-width: 16ch;
  margin: 0.6rem 0 1.2rem;
}

.script {
  font-family: "Parisienne", cursive;
  color: var(--rose);
  font-weight: 400;
}

.lead {
  color: var(--muted);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(45deg, var(--rose), var(--rose-strong));
  color: #2c0f18;
}

.btn-outline {
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: #fff;
}

.section {
  padding: 5rem 0;
}

.section-title h2 {
  margin-top: 0.45rem;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem;
}

.card h3 {
  margin-top: 0;
  font-size: 1.5rem;
}

.card p {
  color: var(--muted);
}

.gallery {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.gallery-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.tile {
  min-height: 130px;
  background: linear-gradient(130deg, #261c1f 0%, #2d2620 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--rose);
  text-align: center;
  padding: 1rem;
}

.tile:hover {
  filter: brightness(1.12);
}

.pricing {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.plan {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  padding: 1.2rem;
  position: relative;
}

.plan-name {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.16rem;
  margin-bottom: 0.3rem;
}

.plan h3 {
  margin: 0;
  font-size: 1.8rem;
}

.price {
  color: var(--rose);
  font-size: 1.55rem;
  margin: 0.6rem 0 0.8rem;
  font-family: "Cormorant Garamond", serif;
}

.plan ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.featured {
  border-color: rgba(242, 199, 209, 0.45);
  box-shadow: 0 14px 30px rgba(242, 199, 209, 0.1);
}

.badge {
  position: absolute;
  top: -11px;
  right: 14px;
  margin: 0;
  font-size: 0.68rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: var(--rose);
  color: #2c0f18;
}

.about {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.2rem;
}

.about p {
  color: var(--muted);
}

blockquote {
  margin: 0;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 16px;
  padding: 1.5rem;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--rose);
}

.timeline-wrap {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.02));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.timeline {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

.timeline article {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  background: var(--card);
}

.timeline span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--rose);
  color: #2c0f18;
  font-weight: 700;
  font-size: 0.9rem;
}

.timeline h3 {
  margin: 0.8rem 0 0.3rem;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.testimonials {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.testimonials article {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
}

.testimonials p {
  color: var(--muted);
}

.testimonials h4 {
  margin-bottom: 0;
  color: var(--rose);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 2.2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1rem;
}

.footer h3,
.footer h4 {
  margin: 0 0 0.35rem;
}

.footer p {
  margin: 0.25rem 0;
  color: var(--muted);
}

.footer a {
  color: var(--rose);
  text-decoration: none;
}

.contact-box {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.02);
}

.social-actions {
  margin-top: 0.8rem;
}

#contact-form {
  display: grid;
  gap: 0.55rem;
}

#contact-form input,
#contact-form select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #101010;
  color: var(--text);
  font-family: inherit;
}

.full {
  text-align: center;
}

.form-note {
  min-height: 1.2em;
  margin: 0;
  font-size: 0.82rem;
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.map-wrap {
  margin-top: 1rem;
}

.map-wrap h4 {
  margin: 0 0 0.5rem;
}

.map-wrap iframe {
  width: 100%;
  height: 260px;
  border: 1px solid var(--border);
  border-radius: 14px;
}

@media (max-width: 840px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    right: 4%;
    top: 68px;
    background: #141414;
    border: 1px solid var(--border);
    border-radius: 12px;
    display: none;
    flex-direction: column;
    width: min(240px, 88vw);
    padding: 0.7rem;
  }

  .nav-links.show {
    display: flex;
  }

  .about,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}
