:root {
  --bg: #130b10;
  --surface: rgba(255, 244, 249, 0.9);
  --surface-alt: rgba(255, 228, 239, 0.86);
  --text: #f9e7ef;
  --muted: #f0d1dd;
  --brand: #e684ad;
  --brand-dark: #f9d5e5;
  --border: rgba(255, 196, 220, 0.38);
  --shadow: 0 14px 36px rgba(8, 2, 5, 0.42);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 138, 182, 0.2), transparent 36%),
    radial-gradient(circle at 100% 90%, rgba(236, 124, 168, 0.16), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1080px, 92%);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(19, 11, 16, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd8e8;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 1rem;
}

.site-nav a {
  color: #f6dbe6;
  text-decoration: none;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--brand-dark);
}

.lang-switcher {
  display: flex;
  gap: 0.4rem;
}

.lang-switcher button {
  border: 1px solid var(--border);
  background: rgba(255, 214, 231, 0.16);
  color: #f6dbe6;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-weight: 600;
  cursor: pointer;
}

.lang-switcher button.active {
  border-color: #ffd6e7;
  color: #fff2f8;
  background: rgba(255, 214, 231, 0.24);
}

.hero {
  position: relative;
  padding: 5.5rem 0 4.25rem;
}

.hero-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1.3fr 1fr;
}

.pending-note {
  margin: 0 0 0.5rem;
  color: rgba(238, 221, 230, 0.46);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
}

.eyebrow {
  margin: 0 0 0.3rem;
  color: #ffbbd5;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.2;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero-text {
  margin-top: 0.8rem;
  color: #f4d8e3;
  max-width: 46ch;
  font-size: 1.05rem;
}

.hero-subnote {
  margin-top: 0.25rem;
  color: rgba(244, 216, 227, 0.78);
  font-size: 0.92rem;
}

.hero-cta {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.pitch-points {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pitch-points li {
  border: 1px solid rgba(255, 199, 223, 0.35);
  background: rgba(255, 214, 231, 0.1);
  color: #f7dce8;
  border-radius: 999px;
  font-size: 0.78rem;
  padding: 0.2rem 0.58rem;
}

.btn {
  display: inline-block;
  padding: 0.72rem 1.05rem;
  border-radius: 0.7rem;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #ff92c0, #de628f);
  color: #fff6fa;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffa3ca, #ce4e80);
}

.btn-secondary {
  background: rgba(255, 214, 231, 0.14);
  color: #ffe5ef;
  border-color: rgba(255, 205, 226, 0.5);
}

.hero-card,
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.2rem;
  color: #33121f;
}

.hero-card h2 {
  margin: 0;
}

.hero-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

.section {
  position: relative;
  padding: 4.2rem 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(88%, 1040px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 191, 218, 0.4), transparent);
}

.section-alt {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: #33121f;
}

.section-intro {
  margin-top: 0;
  color: inherit;
  opacity: 0.88;
}

.gallery-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid img {
  cursor: zoom-in;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.gallery-grid img:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

.gallery-grid .gallery-featured {
  grid-column: span 2;
  grid-row: span 2;
  height: 100%;
  min-height: 510px;
}

.parallax-band {
  min-height: 48vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.parallax-logo {
  background-image:
    linear-gradient(rgba(30, 14, 22, 0.18), rgba(30, 14, 22, 0.18)),
    url("./assets/parallax-top-logo.png");
  background-position: center 45%;
}

.parallax-roses {
  background-image:
    linear-gradient(rgba(15, 5, 10, 0.5), rgba(15, 5, 10, 0.5)),
    url("./assets/parallax-luxury.jpg");
}

.cards {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reviews-grid .card {
  background: rgba(255, 244, 249, 0.94);
}

.card {
  padding: 1.1rem;
  color: #33121f;
}

.card h3 {
  margin-top: 0;
}

.card p {
  color: #5c2941;
}

.card a {
  color: #872f55;
  font-weight: 600;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.social-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  border-radius: 3px;
}

.copy-handle {
  margin-left: 0.45rem;
  border: 1px solid rgba(161, 73, 111, 0.25);
  border-radius: 999px;
  padding: 0.16rem 0.5rem;
  background: rgba(255, 240, 247, 0.7);
  color: #7e2d50;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.copy-handle:hover {
  background: rgba(255, 231, 242, 0.96);
}

.order-flow {
  margin-top: -0.2rem;
  margin-bottom: 1rem;
  color: #f0d1dd;
  opacity: 0.92;
}

.order-steps {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: #f0d1dd;
}

.order-steps li {
  margin-bottom: 0.2rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(12, 4, 8, 0.88);
  z-index: 1000;
  padding: 1rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 85vh;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 193, 222, 0.4);
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(255, 214, 231, 0.28);
  color: #ffe6f0;
  background: rgba(35, 15, 24, 0.75);
  border-radius: 999px;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 1.3rem;
  right: 1.2rem;
  width: 2.2rem;
  height: 2.2rem;
  font-size: 1.3rem;
}

.lightbox-nav {
  width: 2.45rem;
  height: 2.45rem;
  font-size: 1.4rem;
}

.lightbox-prev {
  margin-right: 1rem;
}

.lightbox-next {
  margin-left: 1rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(12, 7, 10, 0.88);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  color: #efcad9;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 900px) {
  .hero-grid,
  .cards,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .pitch-points {
    gap: 0.35rem;
  }

  .site-nav {
    display: none;
  }

  .parallax-band {
    background-attachment: scroll;
    min-height: 34vh;
  }

  .gallery-grid .gallery-featured {
    grid-column: auto;
    grid-row: auto;
    min-height: 250px;
  }

  .lightbox-prev,
  .lightbox-next {
    display: none;
  }

  .mobile-sticky-cta {
    position: fixed;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0.9rem;
    z-index: 999;
    background: linear-gradient(135deg, #ff92c0, #de628f);
    color: #fff8fb;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(18, 4, 10, 0.5);
  }
}
