:root {
  --black: #060504;
  --ink: #15100c;
  --gold: #d7a64b;
  --gold-light: #f6d98d;
  --cream: #fff8ea;
  --blush: #f5b5c8;
  --ice: #bfefff;
  --ice-soft: rgba(191, 239, 255, 0.52);
  --rose: #b45572;
  --white: #ffffff;
  --muted: #d9ccbb;
  --line: rgba(246, 217, 141, 0.34);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  --scroll-shift: 0px;
  margin: 0;
  color: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  background: #060504 url("assets/bgJag.jpg") center top / cover fixed no-repeat;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 5, 4, 0.66), rgba(6, 5, 4, 0.34) 46%, rgba(6, 5, 4, 0.62)),
    linear-gradient(rgba(6, 5, 4, 0.2), rgba(6, 5, 4, 0.58)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 16px);
  content: "";
}

body::after {
  position: fixed;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 248, 234, 0.72) 0 1px, transparent 2px),
    radial-gradient(circle at 46% 14%, rgba(246, 217, 141, 0.7) 0 1px, transparent 2px),
    radial-gradient(circle at 76% 36%, rgba(255, 255, 255, 0.55) 0 1px, transparent 2px),
    radial-gradient(circle at 28% 72%, rgba(246, 217, 141, 0.5) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 78%, rgba(255, 248, 234, 0.62) 0 1px, transparent 2px),
    linear-gradient(135deg, transparent 35%, rgba(191, 239, 255, 0.16) 47%, rgba(255, 255, 255, 0.28) 50%, transparent 56%),
    linear-gradient(115deg, transparent 28%, rgba(255, 248, 234, 0.16) 46%, rgba(246, 217, 141, 0.3) 50%, transparent 58%);
  background-size: 150px 150px, 210px 210px, 180px 180px, 230px 230px, 190px 190px, 120% 100%, 150% 100%;
  background-position:
    0 calc(var(--scroll-shift) * -0.35),
    40px calc(var(--scroll-shift) * -0.55),
    90px calc(var(--scroll-shift) * -0.42),
    20px calc(var(--scroll-shift) * -0.62),
    130px calc(var(--scroll-shift) * -0.5),
    calc(130% - var(--scroll-shift) * 0.18) 0,
    calc(-120% + var(--scroll-shift) * 0.28) 0;
  mix-blend-mode: screen;
  opacity: 0.74;
  transform: translate3d(0, calc(var(--scroll-shift) * -0.03), 0);
  animation: glitterDrift 9s linear infinite, shineSweep 6.5s ease-in-out infinite;
  content: "";
}

@keyframes glitterDrift {
  0% {
    filter: brightness(0.85);
  }

  50% {
    filter: brightness(1.35);
  }

  100% {
    filter: brightness(0.85);
  }
}

@keyframes shineSweep {
  0%,
  18% {
    background-position:
      0 calc(var(--scroll-shift) * -0.35),
      40px calc(var(--scroll-shift) * -0.55),
      90px calc(var(--scroll-shift) * -0.42),
      20px calc(var(--scroll-shift) * -0.62),
      130px calc(var(--scroll-shift) * -0.5),
      130% 0,
      -120% 0;
  }

  68%,
  100% {
    background-position:
      0 calc(var(--scroll-shift) * -0.35),
      40px calc(var(--scroll-shift) * -0.55),
      90px calc(var(--scroll-shift) * -0.42),
      20px calc(var(--scroll-shift) * -0.62),
      130px calc(var(--scroll-shift) * -0.5),
      -40% 0,
      170% 0;
  }
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(246, 217, 141, 0.22);
  background: rgba(6, 5, 4, 0.91);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.88;
  padding-right: 14px;
  text-transform: uppercase;
}

.brand span {
  color: var(--ice);
  font-family: Parisienne, cursive;
  font-size: 30px;
  text-shadow: 0 0 14px rgba(191, 239, 255, 0.7), 0 0 28px rgba(246, 217, 141, 0.28);
  text-transform: none;
}

.brand strong {
  position: relative;
  font-family: Bebas Neue, Impact, sans-serif;
  font-size: 34px;
  letter-spacing: 0;
}

.brand strong::after,
h1::after {
  width: 0.22em;
  height: 0.22em;
  margin-left: 0.08em;
  border: 1px solid rgba(191, 239, 255, 0.8);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(191, 239, 255, 0.42));
  box-shadow: 0 0 14px rgba(191, 239, 255, 0.62);
  transform: rotate(45deg) translateY(-0.08em);
  content: "";
}

.brand strong::after {
  position: absolute;
  top: 0.08em;
  right: -0.26em;
  display: block;
  margin-left: 0;
}

h1::after {
  display: inline-block;
}

.nav-links,
.social-links,
.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.nav-links {
  justify-content: center;
}

.nav-links a,
.social-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.social-links a:hover {
  color: var(--gold-light);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.header-cta {
  min-height: 42px;
  padding: 0 18px;
  color: var(--black);
  background: var(--gold);
  font-size: 13px;
}

.button {
  padding: 0 22px;
  cursor: pointer;
}

.button.primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.button.secondary,
.button.cashapp {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  min-height: calc(100vh - 86px);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  padding: clamp(44px, 7vw, 90px) clamp(18px, 5vw, 76px) 46px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-family: Bebas Neue, Impact, sans-serif;
  font-size: clamp(76px, 12vw, 164px);
  font-weight: 400;
  line-height: 0.82;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-family: Cormorant Garamond, Georgia, serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
}

h3 {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 18px;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.hero-text {
  max-width: 560px;
  font-size: clamp(17px, 2vw, 22px);
}

.script {
  display: block;
  color: var(--gold);
  font-family: Parisienne, cursive;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 0.9;
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  transform: rotate(-1.2deg);
}

.hero-card,
.work-grid img,
.about-image img {
  height: 100%;
  min-height: 240px;
  border: 1px solid rgba(246, 217, 141, 0.44);
  border-radius: 7px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-card.tall {
  grid-row: span 2;
}

.service-band,
.booking-strip,
.split-section,
.work-section,
.about-layout,
.values-row,
.contact-layout,
.social-panel,
.booking-layout,
.policy-row {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.service-band,
.booking-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px;
  border-block: 1px solid var(--line);
}

.service-list {
  display: flex;
  max-width: 660px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.service-list span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  color: var(--black);
  background: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.split-section,
.about-layout,
.contact-layout,
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(58px, 8vw, 110px) 0;
}

.policy-grid,
.values-row,
.policy-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.policy-grid article,
.values-row article,
.policy-row article,
.contact-card,
.contact-form,
.booking-form,
.booking-summary,
.social-panel {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(10, 7, 5, 0.74);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.policy-grid article,
.values-row article,
.policy-row article {
  padding: 22px;
}

.work-section {
  padding: 36px 0 88px;
}

.section-heading {
  margin-bottom: 26px;
  text-align: center;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.work-grid figure {
  margin: 0;
}

.work-grid img {
  aspect-ratio: 3 / 4;
}

.booking-strip {
  margin-bottom: 70px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(246, 217, 141, 0.22);
  background: rgba(6, 5, 4, 0.96);
}

.site-footer strong {
  color: var(--gold-light);
}

.site-footer p {
  margin-bottom: 0;
  font-size: 14px;
}

.page-hero {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 110px) 0 36px;
  text-align: center;
}

.page-hero.compact {
  padding-bottom: 0;
}

.page-hero h1 {
  font-size: clamp(58px, 9vw, 124px);
}

.about-image {
  min-height: 540px;
}

.about-copy,
.contact-card,
.contact-form,
.booking-form,
.booking-summary,
.social-panel {
  padding: clamp(24px, 4vw, 42px);
}

.values-row,
.policy-row {
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 90px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-list a {
  color: var(--gold-light);
  font-weight: 800;
}

form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 9px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(246, 217, 141, 0.34);
  border-radius: 4px;
  padding: 14px 15px;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.42);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.booking-summary {
  align-self: start;
  position: sticky;
  top: 110px;
}

.summary-box,
.booking-result {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.26);
}

.summary-box {
  display: grid;
  gap: 8px;
}

.summary-box span {
  color: var(--gold-light);
  font-size: 26px;
  font-weight: 900;
}

.booking-result:empty {
  display: none;
}

.booking-result .button {
  margin-top: 8px;
}

.social-panel {
  margin-bottom: 80px;
  text-align: center;
}

.social-links.large {
  justify-content: center;
  margin-top: 18px;
}

.social-links.large a {
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

@media (max-width: 900px) {
  body {
    background-attachment: scroll;
    background-position: center top;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .hero,
  .split-section,
  .about-layout,
  .contact-layout,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .service-band,
  .booking-strip,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-list {
    justify-content: flex-start;
  }

  .policy-grid,
  .values-row,
  .policy-row,
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .booking-summary {
    position: static;
  }
}

@media (max-width: 620px) {
  body::before {
    background:
      linear-gradient(rgba(6, 5, 4, 0.3), rgba(6, 5, 4, 0.62)),
      linear-gradient(90deg, rgba(6, 5, 4, 0.72), rgba(6, 5, 4, 0.24) 52%, rgba(6, 5, 4, 0.66));
  }

  body::after {
    inset: -12%;
    background-size: 125px 125px, 175px 175px, 150px 150px, 185px 185px, 155px 155px, 130% 100%, 170% 100%;
    opacity: 0.64;
  }

  .site-header {
    gap: 14px;
  }

  .header-cta {
    padding: 0 14px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .hero-gallery,
  .policy-grid,
  .values-row,
  .policy-row,
  .work-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-card.tall {
    grid-row: auto;
  }

  .service-band,
  .booking-strip,
  .contact-card,
  .contact-form,
  .booking-form,
  .booking-summary,
  .social-panel {
    padding: 24px;
  }

  h1 {
    font-size: 68px;
  }

  .page-hero h1 {
    font-size: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body::after {
    animation: none;
    transform: none;
  }
}
