:root {
  --black: #050205;
  --night: #120610;
  --plum: #2a0d22;
  --wine: #741956;
  --magenta: #e044af;
  --champagne: #fff1d7;
  --gold: #e7b957;
  --rose: #ffc8e4;
  --ivory: #fff8ef;
  --muted: #cab8c4;
  --line: rgba(255, 241, 215, .18);
  --glass: rgba(255, 248, 239, .1);
  --shadow: 0 30px 96px rgba(0, 0, 0, .52);
  --radius: 8px;
  --script: "Great Vibes", cursive;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ivory);
  background:
    linear-gradient(126deg, rgba(224, 68, 175, .12), transparent 31%),
    linear-gradient(72deg, transparent 0 58%, rgba(231, 185, 87, .08) 58% 59%, transparent 59%),
    linear-gradient(180deg, var(--black), var(--night) 48%, #0d050b);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .35;
  background-image:
    linear-gradient(90deg, rgba(248, 234, 209, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(248, 234, 209, .025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .32;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(255, 241, 215, .12) 42.2%, transparent 43%),
    linear-gradient(135deg, transparent 0 67%, rgba(224, 68, 175, .1) 67.2%, transparent 68%);
}

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

a { color: inherit; }

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  color: var(--black);
  background: var(--gold);
  clip: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(5, 2, 5, .7);
  border-bottom: 1px solid rgba(255, 241, 215, .15);
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 4, 7, .9);
  box-shadow: 0 10px 36px rgba(0, 0, 0, .34);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: auto;
  height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(231, 185, 87, .34)) drop-shadow(0 0 28px rgba(224, 68, 175, .18));
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 32px);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.site-nav a,
.site-footer a,
.text-link {
  text-decoration: none;
}

.site-nav a {
  position: relative;
  color: rgba(255, 248, 239, .74);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .24s ease;
}

.site-nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--champagne);
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.header-cta,
.btn.primary {
  color: #1b0b14;
  background: linear-gradient(135deg, #fff8e8, var(--gold) 58%, #f29bd2);
  box-shadow: 0 10px 32px rgba(231, 185, 87, .3), inset 0 1px rgba(255, 255, 255, .75);
}

.btn.ghost {
  color: var(--champagne);
  background: rgba(255, 248, 239, .1);
  border-color: rgba(255, 241, 215, .5);
  box-shadow: inset 0 0 24px rgba(255, 241, 215, .06);
}

.btn.light {
  color: var(--champagne);
  background: rgba(255, 248, 239, .08);
  border-color: rgba(248, 234, 209, .2);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(217, 168, 79, .32);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 248, 239, .08);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--champagne);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 118px clamp(18px, 6vw, 76px) 54px;
  overflow: hidden;
  background: var(--black);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(231, 185, 87, .24), transparent 24%),
    linear-gradient(270deg, rgba(224, 68, 175, .22), transparent 38%),
    linear-gradient(18deg, transparent 0 66%, rgba(255, 241, 215, .12) 66.2%, transparent 67%);
  mix-blend-mode: screen;
}

.hero::after {
  content: "Femme Fatale";
  position: absolute;
  right: -4vw;
  bottom: 7vh;
  z-index: 1;
  color: rgba(255, 241, 215, .07);
  font-family: var(--script);
  font-size: clamp(7rem, 17vw, 19rem);
  font-weight: 400;
  line-height: .72;
  pointer-events: none;
}

.hero picture,
.hero picture img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
  object-position: 60% center;
  filter: saturate(1.02) contrast(1.08);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 2, 5, .96), rgba(24, 8, 22, .78) 43%, rgba(5, 2, 5, .23)),
    linear-gradient(0deg, rgba(5, 2, 5, .77), rgba(5, 2, 5, .02) 54%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  color: var(--ivory);
}

.hero-content::before {
  content: "";
  display: block;
  width: 124px;
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--gold), var(--rose), transparent);
  box-shadow: 0 0 22px rgba(231, 185, 87, .38);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .22em;
}

.hero .eyebrow {
  margin-bottom: clamp(28px, 3vw, 44px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--script);
  font-weight: 400;
}

h1 {
  max-width: 850px;
  margin-bottom: 20px;
  color: var(--champagne);
  font-size: clamp(4.6rem, 9.5vw, 9.8rem);
  line-height: .84;
  letter-spacing: 0;
  text-shadow: 0 18px 60px rgba(0, 0, 0, .62), 0 0 24px rgba(231, 185, 87, .18);
}

h2 {
  margin-bottom: 18px;
  color: var(--ivory);
  font-size: clamp(3.2rem, 6vw, 6.6rem);
  line-height: .82;
  text-shadow: 0 12px 42px rgba(0, 0, 0, .38);
}

h3 {
  margin-bottom: 12px;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 1.86rem;
  line-height: 1;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 248, 239, .82);
  font-size: clamp(1.11rem, 2vw, 1.42rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(18px, 4vw, 56px);
  z-index: 2;
  display: grid;
  gap: 5px;
  min-width: 280px;
  padding: 20px;
  color: var(--ivory);
  background:
    linear-gradient(145deg, rgba(255, 241, 215, .14), rgba(224, 68, 175, .08)),
    rgba(18, 6, 16, .56);
  border: 1px solid rgba(255, 241, 215, .28);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 0 26px rgba(255, 241, 215, .04);
  backdrop-filter: blur(16px);
}

.hero-panel strong {
  color: var(--gold);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.hero-panel a {
  color: var(--champagne);
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
}

.hero-panel span {
  color: rgba(255, 248, 239, .78);
}

.section {
  padding: clamp(76px, 10vw, 140px) clamp(18px, 5vw, 72px);
}

.intro,
.services,
.updates {
  max-width: 1320px;
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
}

.intro p,
.feature-band p,
.section-heading .note {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.intro-stats div {
  min-height: 165px;
  padding: 24px;
  background:
    linear-gradient(160deg, rgba(255, 241, 215, .14), rgba(224, 68, 175, .055)),
    var(--plum);
}

.intro-stats strong {
  display: block;
  margin-bottom: 20px;
  color: var(--champagne);
  font-family: var(--script);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: .9;
  text-shadow: 0 0 18px rgba(231, 185, 87, .18);
}

.intro-stats span {
  color: var(--muted);
  font-size: .92rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.update-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255, 241, 215, .14), rgba(224, 68, 175, .055)),
    var(--plum);
  box-shadow: 0 18px 58px rgba(0, 0, 0, .28), inset 0 1px rgba(255, 255, 255, .08);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.service-card::before,
.update-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--magenta), var(--rose), var(--gold), var(--champagne));
  transform: scaleX(.28);
  transform-origin: left;
  transition: transform .24s ease;
}

.service-card::after,
.update-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 47%, rgba(255, 255, 255, .12) 48%, transparent 52%);
  opacity: .22;
}

.service-card:hover,
.update-card:hover {
  transform: translateY(-6px);
  border-color: rgba(231, 185, 87, .52);
  box-shadow: 0 22px 76px rgba(0, 0, 0, .38), 0 0 36px rgba(231, 185, 87, .16);
}

.service-card:hover::before,
.update-card:hover::before {
  transform: scaleX(1);
}

.service-card {
  min-height: 318px;
  padding: 28px;
}

.service-card.accent {
  background:
    linear-gradient(135deg, rgba(224, 68, 175, .58), rgba(231, 185, 87, .2)),
    #1a0915;
}

.service-card span {
  display: inline-block;
  margin-bottom: 58px;
  color: var(--champagne);
  font-family: var(--script);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: .72;
  text-shadow: 0 0 16px rgba(231, 185, 87, .24);
}

.service-card p {
  color: var(--muted);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--champagne);
  background: rgba(255, 248, 239, .1);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: inset 0 0 22px rgba(255, 241, 215, .045);
}

.social-links a:hover {
  color: #1b0b14;
  background: linear-gradient(135deg, var(--champagne), var(--gold));
  border-color: transparent;
}

.updates {
  padding-top: 0;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.update-card {
  min-height: 320px;
  padding: 28px;
}

.update-card.highlight {
  background:
    linear-gradient(135deg, rgba(224, 68, 175, .72), rgba(231, 185, 87, .24)),
    #1a0915;
}

.update-date {
  margin-bottom: 42px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .2em;
}

.update-card p:not(.update-date) {
  color: var(--muted);
}

.update-card.highlight .update-date,
.update-card.highlight p {
  color: rgba(255, 248, 239, .84);
}

.voucher-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(180px, .92fr) minmax(0, 1.08fr);
  gap: 20px;
  align-items: stretch;
}

.voucher-card picture {
  min-height: 270px;
  overflow: hidden;
  border: 1px solid rgba(255, 241, 215, .16);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

.voucher-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 6vw, 90px);
  align-items: center;
  padding: clamp(64px, 8vw, 120px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(231, 185, 87, .18), transparent 42%),
    linear-gradient(135deg, transparent 0 57%, rgba(224, 68, 175, .14) 57.2%, transparent 58%),
    linear-gradient(180deg, #160b14, #0b060a);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-band::before {
  content: "Beauty";
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  bottom: -32px;
  color: rgba(255, 241, 215, .055);
  font-family: var(--script);
  font-size: clamp(7rem, 18vw, 18rem);
  line-height: .7;
  pointer-events: none;
}

.feature-band > div {
  max-width: 620px;
  justify-self: end;
}

.feature-band picture {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(255, 241, 215, .24);
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 36px rgba(231, 185, 87, .12);
}

.feature-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.contact {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  margin: clamp(20px, 4vw, 56px);
  padding: clamp(34px, 6vw, 76px);
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(224, 68, 175, .42), rgba(231, 185, 87, .18)),
    var(--black);
  border: 1px solid rgba(255, 241, 215, .24);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 0 42px rgba(255, 241, 215, .04);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--magenta), var(--rose), var(--gold), var(--champagne));
}

.contact p:not(.section-kicker) {
  color: rgba(255, 248, 239, .78);
  font-size: 1.15rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1100px) {
  .service-grid,
  .updates-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .voucher-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.open {
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: rgba(7, 4, 7, .96);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.open a {
    padding: 14px;
  }

  .hero {
    align-items: end;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 26px;
    width: min(100%, 380px);
  }

  .intro-grid,
  .feature-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .feature-band > div {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .brand img {
    height: 54px;
  }

  .hero {
    min-height: 780px;
    padding: 104px 18px 26px;
  }

  .hero picture img {
    object-position: 62% center;
  }

  h1 {
    font-size: clamp(3.7rem, 18vw, 5.2rem);
    line-height: .9;
  }

  h2 {
    font-size: clamp(3.3rem, 16vw, 4.8rem);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .section-heading {
    display: block;
  }

  .intro-stats,
  .service-grid,
  .updates-grid {
    grid-template-columns: 1fr;
  }

  .intro-stats div,
  .service-card {
    min-height: 230px;
  }

  .service-card span {
    margin-bottom: 32px;
  }

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

  .contact {
    margin: 18px;
    padding: 28px 20px;
  }

  .site-footer {
    display: grid;
  }
}
