:root {
  --canvas: #170511;
  --canvas-2: #2b071d;
  --paper: #fff4f9;
  --paper-2: #ffe0ef;
  --ink: #2a071b;
  --muted: #a97990;
  --pink: #ff4fa3;
  --pink-2: #e11d76;
  --cream: #ffe7b8;
  --line: rgba(255, 255, 255, 0.14);
  --line-pink: rgba(255, 79, 163, 0.24);
  --shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--paper);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 79, 163, 0.28), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(255, 231, 184, 0.12), transparent 23rem),
    linear-gradient(140deg, #170511 0%, #2b071d 48%, #13040e 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 12px;
  opacity: 0.42;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0.04), transparent 18%, transparent 82%, rgba(255,255,255,0.04));
}

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

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.07em;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.spotlight {
  position: fixed;
  z-index: -1;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(48px);
  opacity: 0.36;
  animation: pulse 8s ease-in-out infinite alternate;
}

.spotlight-a {
  top: 5rem;
  left: -8rem;
  background: #ff4fa3;
}

.spotlight-b {
  right: -8rem;
  bottom: 14rem;
  background: #ffe7b8;
  opacity: 0.14;
  animation-delay: -4s;
}

.shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  width: 100%;
  margin: 0;
  padding: 20px max(18px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: rgba(23,5,17,0.86);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.logo span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--canvas);
  background: linear-gradient(135deg, var(--cream), #ff8abd 58%, var(--pink));
  font-weight: 900;
  letter-spacing: -0.06em;
}

.logo strong {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.nav a {
  position: relative;
  padding: 8px 0;
  border-radius: 0;
  color: #d9b6c9;
  font-size: 0.9rem;
  font-weight: 800;
  transition: 0.25s ease;
}

.nav a:hover {
  color: var(--paper);
  background: transparent;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-action,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  color: var(--canvas);
  background: linear-gradient(135deg, var(--cream), #ff83bd 62%, var(--pink));
  box-shadow: 0 18px 48px rgba(255, 79, 163, 0.28);
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-action:hover,
.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(255, 79, 163, 0.38);
}

.menu-button {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.82fr);
  gap: clamp(56px, 8vw, 120px);
  align-items: stretch;
  padding: 104px 0 52px;
}

.hero-left {
  min-height: 620px;
  padding: 42px 0 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--pink), var(--cream));
}

h1 {
  max-width: 650px;
  font-size: clamp(3.6rem, 7.1vw, 7rem);
  line-height: 0.82;
  overflow-wrap: normal;
}

.lead {
  max-width: 650px;
  margin-top: 34px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 34px;
}

.text-link {
  color: var(--paper);
  font-weight: 900;
}

.text-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 7px;
  background: var(--pink);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.text-link:hover::after {
  transform: scaleX(0.5);
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 620px;
}

.concierge-card {
  position: relative;
  width: 100%;
  min-height: 520px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.025)),
    linear-gradient(90deg, transparent 0 48%, rgba(255, 79, 163, 0.18) 48% 52%, transparent 52% 100%);
  box-shadow: 0 44px 130px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  animation: none;
}

.concierge-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  pointer-events: none;
}

.concierge-card::after {
  content: "";
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 118px;
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, var(--cream), transparent);
  box-shadow: none;
}

.card-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.card-title {
  position: relative;
  z-index: 1;
  max-width: 390px;
  margin-top: 112px;
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.editorial-lines {
  position: absolute;
  top: 126px;
  right: 42px;
  display: grid;
  gap: 12px;
  width: 120px;
}

.editorial-lines span {
  display: block;
  height: 1px;
  background: rgba(255, 231, 184, 0.38);
}

.brief-list {
  position: absolute;
  z-index: 2;
  left: 42px;
  right: 42px;
  bottom: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brief-list span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 800;
}

.paper-note {
  position: absolute;
  right: 0;
  top: -34px;
  max-width: none;
  padding: 0;
  border-radius: 0;
  color: var(--cream);
  background: transparent;
  box-shadow: none;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: none;
}

/* Refined hero preview: keeps content readable and prevents tag overlap. */
.hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.82fr);
  gap: clamp(56px, 8vw, 120px);
}

.hero-right::before,
.hero-right::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-right::before {
  width: min(34vw, 430px);
  height: min(34vw, 430px);
  right: 8px;
  top: 78px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 244, 249, 0.66), transparent 16%), radial-gradient(circle at 58% 56%, rgba(255, 79, 163, 0.48), rgba(255, 79, 163, 0.08) 54%, transparent 70%);
  opacity: 0.78;
}

.hero-right::after {
  width: 72%;
  height: 1px;
  right: 0;
  bottom: 138px;
  background: linear-gradient(90deg, transparent, rgba(255, 231, 184, 0.7), transparent);
}

.concierge-card {
  z-index: 1;
  min-height: 560px;
  padding: 92px 54px 54px 64px;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.concierge-card::before {
  left: 20px;
  top: 60px;
  width: calc(100% - 40px);
  height: 74%;
  inset: auto;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 79, 163, 0.22);
}

.concierge-card::after {
  left: 20px;
  top: 60px;
  right: auto;
  bottom: auto;
  width: 1px;
  height: 74%;
  background: rgba(255, 255, 255, 0.16);
}

.card-label {
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid var(--cream);
  background: transparent;
}

.card-title {
  max-width: 410px;
  margin-top: 68px;
  font-size: clamp(2.35rem, 3.55vw, 4.25rem);
  line-height: 0.88;
  letter-spacing: -0.085em;
}

.editorial-lines {
  display: none;
}

.card-copy {
  position: relative;
  z-index: 2;
  max-width: 390px;
  margin-top: 24px;
  color: #d9b6c9;
  font-size: 0.98rem;
}

.brief-list {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  gap: 8px;
  max-width: 400px;
  margin-top: 34px;
}

.brief-list span {
  padding: 9px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(23, 5, 17, 0.34);
  font-size: 0.78rem;
  line-height: 1;
}

.paper-note {
  right: 8px;
  top: 52px;
}

.signal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.signal div {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line-pink);
  background: transparent;
}

.signal strong {
  display: block;
  margin-bottom: 18px;
  color: var(--pink);
  font-size: 0.84rem;
}

.signal span {
  color: var(--paper);
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.services,
.method,
.packages,
.testimonials,
.faq,
.closing {
  padding-top: 116px;
}

.section-heading {
  max-width: 770px;
}

h2 {
  max-width: 820px;
  font-size: clamp(2.5rem, 5.6vw, 5.8rem);
  line-height: 0.88;
}

.service-board {
  margin-top: 42px;
  border-top: 1px solid var(--line-pink);
}

.service-row {
  display: grid;
  grid-template-columns: 90px minmax(180px, 0.7fr) minmax(260px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-pink);
  transition: 0.25s ease;
}

.service-row:hover {
  padding-left: 20px;
  background: linear-gradient(90deg, rgba(255, 79, 163, 0.11), transparent);
}

.service-row span {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 900;
}

.service-row h3 {
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 0.96;
}

.service-row p {
  max-width: 520px;
}

.method {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.method-copy p:last-child {
  max-width: 530px;
  margin-top: 24px;
}

.method-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 54px;
}

.method-steps::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(var(--cream), var(--pink), transparent);
}

.method-steps div {
  position: relative;
  min-height: 0;
  padding: 18px 0 28px;
  border-bottom: 1px solid rgba(255, 79, 163, 0.2);
}

.method-steps div::before {
  content: "";
  position: absolute;
  left: -42px;
  top: 22px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 34px rgba(255, 231, 184, 0.54);
}

.method-steps b {
  display: block;
  margin-bottom: 10px;
  color: var(--cream);
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.method-steps span {
  color: #dec0d1;
  line-height: 1.7;
}

.package-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 42px;
}

.package-card {
  display: grid;
  grid-template-columns: 150px 260px 1fr;
  align-items: center;
  gap: 28px;
  min-height: 0;
  padding: 22px 28px;
  border: 1px solid rgba(255, 79, 163, 0.22);
  border-radius: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025));
  box-shadow: none;
}

.package-card small {
  display: inline-flex;
  margin-bottom: 0;
  color: var(--cream);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-card h3 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 0.94;
}

.signature {
  color: var(--canvas);
  background: linear-gradient(90deg, var(--cream), #ff91c6 48%, var(--pink));
  transform: none;
  border-color: transparent;
}

.signature p {
  color: rgba(23, 5, 17, 0.72);
}

.signature small {
  color: var(--canvas);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 42px;
}

.testimonial-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 42px;
  border-top: 1px solid var(--line-pink);
  border-bottom: 1px solid var(--line-pink);
  background: var(--line-pink);
}

.testimonial-item {
  padding: 28px;
  background: rgba(23, 5, 17, 0.72);
}

.testimonial-item span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--canvas);
  background: linear-gradient(135deg, var(--cream), var(--pink));
  font-weight: 900;
}

.testimonial-item h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
  letter-spacing: -0.05em;
}

.testimonial-item small {
  display: block;
  margin-bottom: 24px;
  color: var(--cream);
  font-weight: 800;
  line-height: 1.5;
}

.proof-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--cream);
  font-weight: 900;
  border-bottom: 1px solid var(--cream);
}

.faq-grid details {
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 79, 163, 0.22);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-grid summary {
  cursor: pointer;
  color: var(--paper);
  list-style: none;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::before {
  content: "+";
  display: inline-flex;
  width: 28px;
  color: var(--cream);
}

.faq-grid details[open] summary::before {
  content: "-";
}

.faq-grid p {
  margin-top: 16px;
}

.closing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  align-items: end;
  margin-top: 18px;
  padding: 54px 0 64px;
  text-align: left;
  border-top: 1px solid rgba(255, 79, 163, 0.28);
  border-bottom: 1px solid rgba(255, 79, 163, 0.18);
  border-radius: 0;
  background: transparent;
}

.closing h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 5.6vw, 6.4rem);
  line-height: 0.86;
}

.closing .kicker {
  margin-bottom: 24px;
}

.closing-side {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.closing-side p {
  color: #d9b6c9;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 0 44px;
}

.footer p,
.footer a {
  color: #bd8fa8;
  font-size: 0.92rem;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.18s;
}

.delay-3 {
  transition-delay: 0.26s;
}

@keyframes pulse {
  to {
    transform: translate3d(22px, -18px, 0) scale(1.08);
  }
}

@media (max-width: 940px) {
  .topbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
    border-radius: 24px;
  }

  .menu-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    color: var(--paper);
    background: rgba(255, 255, 255, 0.07);
    font: inherit;
    font-weight: 900;
  }

  .nav,
  .nav-action {
    display: none;
  }

  .nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    padding: 10px 0 2px;
  }

  .hero,
  .method {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-left,
  .hero-right {
    min-height: auto;
  }

  .concierge-card {
    min-height: 430px;
    padding: 68px 44px 44px;
  }

  .paper-note {
    display: none;
  }

  .signal,
  .testimonial-board,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .signal {
    display: grid;
  }

  .package-card {
    grid-template-columns: 1fr;
  }

  .signature {
    transform: none;
  }

  .closing {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (min-width: 941px) and (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 0.82fr) minmax(390px, 0.78fr);
    gap: 54px;
  }

  h1 {
    max-width: 540px;
    font-size: clamp(3.4rem, 6.6vw, 5.9rem);
  }

  .lead {
    max-width: 520px;
  }

  .concierge-card {
    padding-left: 44px;
    padding-right: 34px;
  }

  .card-title {
    font-size: clamp(2.1rem, 3.6vw, 3.35rem);
  }
}

@media (max-width: 640px) {
  .shell,
  .topbar {
    width: min(100% - 24px, 1160px);
  }

  h1 {
    font-size: clamp(3.3rem, 16vw, 5.6rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 4rem);
  }

  .hero {
    padding-top: 54px;
  }

  .hero-actions,
  .primary-button {
    width: 100%;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .method-steps {
    grid-template-columns: 1fr;
  }

  .services,
  .method,
  .packages,
  .testimonials,
  .faq,
  .closing {
    padding-top: 78px;
  }

  .package-card,
  .closing {
    border-radius: 26px;
    padding: 24px;
  }

  .closing {
    border-radius: 0;
    padding: 42px 0 48px;
  }

  .concierge-card {
    padding: 28px;
    border-radius: 0;
  }

  .concierge-card::before,
  .concierge-card::after,
  .hero-right::before,
  .hero-right::after {
    display: none;
  }

  .card-title {
    margin-top: 64px;
    font-size: clamp(2rem, 10.5vw, 3.2rem);
  }

  .brief-list {
    position: static;
    margin-top: 28px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
