:root {
  --black: #050404;
  --black-soft: #0b0a08;
  --black-card: #11100d;
  --gold: #d6a84b;
  --gold-light: #f3d28a;
  --gold-deep: #9c6f21;
  --cream: #fff4dc;
  --muted: #d7c8a8;
  --blush: #d7a494;
  --line: rgba(214, 168, 75, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  --radius: 28px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #17100b 0%, var(--black) 34%, #020202 100%);
  color: var(--cream);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

.page-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.16;
  z-index: -1;
}

.page-glow-one {
  background: var(--gold);
  top: 10%;
  right: -120px;
}

.page-glow-two {
  background: var(--blush);
  bottom: 5%;
  left: -140px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 48px);
  transition: 0.35s ease;
}

.site-header.scrolled {
  background: rgba(4, 4, 4, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  padding-block: 10px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(214, 168, 75, 0.5);
  object-fit: cover;
}

.brand-name {
  font-family: "Cinzel", serif;
  color: var(--gold-light);
  font-size: clamp(1rem, 2vw, 1.42rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
}

.brand-name small {
  font-size: 0.48em;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 32px);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.site-nav a {
  position: relative;
  transition: color 0.3s ease;
}

.site-nav a:not(.nav-order)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-light);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.nav-order {
  border: 1px solid rgba(214, 168, 75, 0.42);
  padding: 12px 17px;
  border-radius: 999px;
  background: rgba(214, 168, 75, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(214, 168, 75, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold-light);
  margin: 4px auto;
  transition: 0.3s ease;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 120px 0 56px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.84) 42%, rgba(0,0,0,0.45) 100%), url("assets/preview-design.jpg");
  background-size: cover;
  background-position: center top;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 35%, rgba(214, 168, 75, 0.24), transparent 28%), linear-gradient(180deg, rgba(0,0,0,0.25), var(--black));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--gold-light);
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-logo {
  width: min(100%, 520px);
  margin: 18px 0 10px;
  border-radius: 24px;
  border: 1px solid rgba(214, 168, 75, 0.2);
  box-shadow: var(--shadow);
}

.hero h1,
.section-heading h2,
.center-heading h2,
.strip-content h2,
.coming-card h2,
.vip-copy h2,
.contact-panel h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.1rem, 9vw, 7.8rem);
  color: var(--cream);
  margin-bottom: 18px;
  max-width: 900px;
}

.hero-line {
  font-family: "Cinzel", serif;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(0.74rem, 1.4vw, 0.93rem);
  line-height: 1.9;
}

.hero-line span {
  color: var(--blush);
  margin-inline: 8px;
}

.hero-copy {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.8;
  margin: 18px 0 30px;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.btn:hover,
.btn:focus-visible,
.contact-button:hover,
.contact-button:focus-visible {
  transform: translateY(-3px);
}

.btn-gold {
  color: #130d05;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  box-shadow: 0 16px 40px rgba(214, 168, 75, 0.25);
}

.btn-outline {
  border: 1px solid rgba(243, 210, 138, 0.44);
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.18);
}

.btn-full {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.hero-showcase {
  position: relative;
  display: grid;
  place-items: center;
}

.showcase-card {
  border-radius: 46px;
  overflow: hidden;
  border: 1px solid rgba(214, 168, 75, 0.38);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  background: var(--black-card);
}

.showcase-main {
  width: min(100%, 430px);
  aspect-ratio: 3 / 4;
}

.showcase-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  right: 3%;
  bottom: 8%;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--gold-light);
  background: rgba(5, 4, 4, 0.88);
  border: 1px solid rgba(214, 168, 75, 0.55);
  box-shadow: 0 0 0 8px rgba(214, 168, 75, 0.07), var(--shadow);
  animation: gentleFloat 4s ease-in-out infinite;
}

.floating-badge span {
  color: var(--cream);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 1px solid rgba(214, 168, 75, 0.5);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.scroll-cue span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-light);
  animation: scrollPulse 1.4s infinite;
}

.section {
  padding: clamp(74px, 9vw, 130px) 0;
}

.intro {
  background: linear-gradient(180deg, var(--black), #090807);
}

.intro-grid,
.vip-grid,
.contact-grid,
.strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.section-heading h2,
.center-heading h2,
.strip-content h2,
.coming-card h2,
.vip-copy h2,
.contact-panel h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  margin: 14px 0 20px;
  color: var(--cream);
}

.section-heading p,
.center-heading p,
.strip-content p,
.coming-card p,
.vip-copy p,
.contact-panel p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 1rem;
}

.script-text {
  font-family: "Great Vibes", cursive;
  color: var(--gold-light) !important;
  font-size: 2rem !important;
  margin: 16px 0;
}

.text-link {
  display: inline-flex;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 8px;
  margin-top: 16px;
}

.intro-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--black-card);
  box-shadow: var(--shadow);
}

.intro-card img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
}

.intro-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.72));
}

.intro-card-text {
  position: absolute;
  left: 26px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.intro-card-text strong {
  font-family: "Cinzel", serif;
  color: var(--gold-light);
  font-size: 1.4rem;
}

.intro-card-text span {
  color: var(--cream);
}

.services {
  background: #090807;
  position: relative;
}

.center-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 44px;
}

.center-heading .eyebrow {
  justify-content: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.service-card {
  min-height: 310px;
  padding: clamp(24px, 3vw, 34px);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.service-card:last-child {
  border-right: 0;
}

.service-card:hover {
  background: rgba(214, 168, 75, 0.07);
  transform: translateY(-4px);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(214, 168, 75, 0.35);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--gold-light);
  background: rgba(214, 168, 75, 0.05);
}

.service-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.94rem;
}

.feature-strip {
  padding: clamp(42px, 6vw, 76px) 0;
  background: linear-gradient(90deg, rgba(214, 168, 75, 0.06), rgba(255, 255, 255, 0.015));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strip-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.strip-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.occasion-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.occasion-list span {
  border: 1px solid rgba(214, 168, 75, 0.34);
  color: var(--gold-light);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.82rem;
}

.coming-soon {
  background: #080706;
}

.coming-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 6vw, 60px);
  background: linear-gradient(120deg, rgba(214, 168, 75, 0.08), rgba(255,255,255,0.02)), url("assets/brand-board.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 34px;
}

.coming-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.coming-card > * {
  position: relative;
  z-index: 1;
}

.coming-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: center;
}

.coming-list span {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(214, 168, 75, 0.22);
  border-radius: 18px;
  padding: 15px 16px;
}

.vip {
  background: linear-gradient(180deg, #080706, #0d0908);
}

.vip-form {
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.vip-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 16px;
}

.vip-form span {
  color: var(--gold-light);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.vip-form input {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(214, 168, 75, 0.28);
  background: rgba(0, 0, 0, 0.38);
  color: var(--cream);
  padding: 0 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.vip-form input::placeholder {
  color: rgba(255, 244, 220, 0.45);
}

.vip-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(214, 168, 75, 0.08);
}

.form-note {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
  margin-top: 14px;
}

.contact {
  background: var(--black);
}

.contact-grid {
  align-items: stretch;
}

.contact-panel,
.contact-details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  padding: clamp(28px, 5vw, 50px);
  box-shadow: var(--shadow);
}

.contact-button {
  display: inline-flex;
  min-height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 0 20px;
  border: 1px solid rgba(214, 168, 75, 0.35);
  color: var(--gold-light);
  background: rgba(214, 168, 75, 0.07);
  font-weight: 700;
  transition: 0.28s ease;
}

.contact-buttons {
  margin-top: 28px;
}

.contact-details {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.detail-item {
  padding: 26px 30px;
  border-bottom: 1px solid var(--line);
}

.detail-item:last-child {
  border-bottom: 0;
}

.detail-item span {
  display: block;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  margin-bottom: 8px;
}

.detail-item strong {
  color: var(--cream);
  line-height: 1.7;
}

.detail-item a:hover {
  color: var(--gold-light);
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: #030303;
  text-align: center;
}

.footer-inner {
  display: grid;
  place-items: center;
  gap: 12px;
}

.footer-inner img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(214, 168, 75, 0.44);
}

.footer-inner p {
  font-family: "Cinzel", serif;
  color: var(--gold-light);
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

.footer-inner small {
  color: rgba(255, 244, 220, 0.55);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: white;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  z-index: 999;
  transition: transform 0.25s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-4px) scale(1.04);
}

.floating-whatsapp svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.28s; }

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes scrollPulse {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(18px); opacity: 0; }
}

@media (max-width: 1020px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1002;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    min-height: 100vh;
    background: rgba(5, 4, 4, 0.97);
    backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s ease;
    font-size: 1rem;
  }

  .site-nav.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .hero-inner,
  .intro-grid,
  .vip-grid,
  .contact-grid,
  .strip-grid,
  .coming-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 108px;
  }

  .hero-showcase {
    max-width: 560px;
    margin-inline: auto;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(2) {
    border-right: 0;
  }

  .service-card:nth-child(1),
  .service-card:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--max-width));
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-name {
    font-size: 0.94rem;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 14vw, 4.3rem);
  }

  .hero-logo {
    border-radius: 18px;
  }

  .hero-actions,
  .contact-buttons {
    flex-direction: column;
  }

  .btn,
  .contact-button {
    width: 100%;
  }

  .floating-badge {
    width: 118px;
    height: 118px;
    font-size: 0.65rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 245px;
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .coming-list {
    grid-template-columns: 1fr;
  }

  .intro-card img,
  .strip-image img {
    min-height: auto;
    height: 340px;
  }

  .footer-inner p {
    letter-spacing: 0.12em;
    line-height: 1.8;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}
