/* ---------- Design tokens ---------- */
:root {
  --black: #000;
  --white: #fff;
  --light-grey: #f4f4f4;
  --neon-yellow: #fae378;
  --neon-purple: #b45ffa;
  --neon-blue: #5262fa;
  --hot-pink: #fe82c3;
  --neon-teal: #52faf1;

  --page-pad: 5vw;
  --shadow-offset: 0.4rem;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Varela Round", system-ui, sans-serif;
  font-weight: 400;
  color: var(--black);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: transparent;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3 { margin: 0; line-height: 1.1; }
p { margin: 0; }
ul { margin: 0; padding-left: 1.25em; }

@media (min-width: 992px) {
  body { cursor: none; }
  body a, body button, body input, body textarea, body select { cursor: none; }
}

/* ---------- Body color themes ---------- */
.body.purple { background-color: var(--neon-purple); }
.body.pink   { background-color: var(--hot-pink); }

/* ---------- Fixed full-viewport color layer per section ---------- */
.section-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
  pointer-events: none;
}
.section-bg.is-active { opacity: 1; }
.section-bg.purple { background-color: var(--neon-purple); }
.section-bg.blue   { background-color: var(--neon-blue); }
.section-bg.pink   { background-color: var(--hot-pink); }
.section-bg.teal   { background-color: var(--neon-teal); }
.section-bg.yellow { background-color: var(--neon-yellow); }

.page-wrapper { position: relative; z-index: 1; }

/* ---------- Custom cursor ---------- */
.cursor-wrapper {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  display: none;
}
@media (min-width: 992px) {
  .cursor-wrapper { display: block; }
}
.cursor-arrow {
  width: 30px;
  height: 30px;
  background: url("../assets/cursor.svg") no-repeat center / contain;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(-100px, -100px, 0);
  will-change: transform;
}

/* ---------- Page transition overlay (simple fade) ---------- */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: var(--neon-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.page-transition.is-revealed { opacity: 0; }
.page-transition img {
  width: min(500px, 70vw);
  height: auto;
  transition: transform 0.6s var(--ease-out);
}
.page-transition.is-revealed img { transform: scale(0.92); opacity: 0; }

/* ---------- Drifting decorative background symbols ---------- */
.section-decor {
  position: absolute;
  width: clamp(18rem, 32vw, 32rem);
  height: auto;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  will-change: transform;
}
.section-decor img { width: 100%; height: auto; display: block; }
.section-decor.tl { top: -4rem;   left:  -3rem;  animation: drift-a 28s ease-in-out infinite; }
.section-decor.br { bottom: -4rem; right: -3rem; animation: drift-b 32s ease-in-out infinite; }
.section-decor.tr { top: 4rem;    right: 2rem;   animation: drift-c 26s ease-in-out infinite; }
.section-decor.bl { bottom: 4rem; left:  2rem;   animation: drift-a 30s ease-in-out infinite reverse; }
@keyframes drift-a {
  0%,100% { transform: rotate(0deg)   translate(0, 0); }
  25%     { transform: rotate(10deg)  translate(1.5rem, -1rem); }
  50%     { transform: rotate(-6deg)  translate(-1rem, 1.5rem); }
  75%     { transform: rotate(14deg)  translate(0.8rem, -0.5rem); }
}
@keyframes drift-b {
  0%,100% { transform: rotate(0deg)   translate(0, 0); }
  33%     { transform: rotate(-12deg) translate(-1.2rem, 1rem); }
  66%     { transform: rotate(8deg)   translate(1.4rem, -1.2rem); }
}
@keyframes drift-c {
  0%,100% { transform: rotate(5deg)   translate(0, 0) scale(1); }
  50%     { transform: rotate(-8deg)  translate(0.8rem, 0.8rem) scale(1.05); }
}
.section { overflow: hidden; }

/* ---------- Layout helpers ---------- */
.page-padding { padding-left: var(--page-pad); padding-right: var(--page-pad); }
.container { max-width: 80rem; margin: 0 auto; }
.section { position: relative; }
.section-inner { padding: 6rem 0; position: relative; z-index: 1; }
.center-text { text-align: center; }

/* ---------- Highlight heading (yellow pill behind text) ---------- */
.highlight-heading {
  display: inline-block;
  background-color: var(--neon-yellow);
  padding: 0.1em 0.6em;
  white-space: nowrap;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
}
.highlight-heading.small { font-size: clamp(1.5rem, 3vw, 2.25rem); }
.highlight {
  background-color: var(--neon-yellow);
  padding: 0.05em 0.3em;
}

/* ---------- Yellow button ---------- */
.button {
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1rem;
  z-index: 1;
  transition: transform 0.3s var(--ease-out);
}
.button:hover { transform: translateY(-3px); }
.button:active { transform: translateY(1px); }
.button-face {
  position: relative;
  z-index: 2;
  background-color: var(--neon-yellow);
  color: var(--black);
  outline: 3px solid var(--black);
  padding: 0.55rem 1rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}
.button-shadow {
  position: absolute;
  inset: 0;
  background-color: var(--black);
  transform: translate(calc(var(--shadow-offset) * -1), calc(var(--shadow-offset) * -1));
  z-index: 1;
}
.button.large .button-face {
  font-size: 1.6rem;
  padding: 0.75rem 1.5rem;
  --shadow-offset: 0.5rem;
}
.button.huge .button-face {
  font-size: 2.1rem;
  padding: 1rem 2.25rem;
  --shadow-offset: 0.6rem;
}

/* ---------- Photo frame (yellow color-pop offset square) ---------- */
.photo-frame {
  position: relative;
  display: inline-block;
}
.photo-frame__image {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: var(--neon-yellow);
}
.photo-frame__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-frame__pop {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: var(--neon-yellow);
  outline: 8px solid var(--black);
  outline-offset: -1px;
  transform: translate(1.25rem, 1.25rem);
}

/* ---------- Navigation ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.navbar__brand img { width: 110px; height: auto; }
.navbar__links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar__link {
  padding: 0.5rem 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1rem;
  transition: transform 0.3s var(--ease-out), background-color 0.5s var(--ease-out), color 0.2s;
}
.navbar__link:hover {
  background-color: var(--black);
  color: var(--neon-yellow);
  transform: translateY(-2px);
}
.navbar__link.is-current { color: var(--black); }
.navbar__cta { margin-left: 0.5rem; }
.navbar__toggle { display: none; }

@media (max-width: 991px) {
  .navbar__links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 1rem; gap: 0; }
  .navbar.is-open .navbar__links { display: flex; }
  .navbar__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
  }
  .navbar__toggle span { display: block; width: 24px; height: 2px; background: var(--black); }
  .navbar__cta { margin: 0; }
}

/* ---------- Hero ---------- */
.hero { min-height: 100vh; display: flex; align-items: center; }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__content > * + * { margin-top: 1.25rem; }
.hero__lead { font-size: 1.1rem; max-width: 36ch; }
.hero__photo { justify-self: end; max-width: 28rem; width: 100%; }

@media (max-width: 768px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__photo { justify-self: center; }
}

/* ---------- About / list-with-arrows ---------- */
.layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.layout-grid.reverse > :first-child { order: 2; }
@media (max-width: 768px) {
  .layout-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .layout-grid.reverse > :first-child { order: 0; }
}
.about-list { display: grid; gap: 0.9rem; margin-top: 1.5rem; }
.about-list__item {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.75rem;
  align-items: center;
  font-size: 1.1rem;
}
.about-list__item img { width: 1.5rem; height: auto; }

/* Decorative star-of-life background blob */
.icon-blob {
  position: absolute;
  z-index: 0;
  width: clamp(20rem, 40vw, 36rem);
  opacity: 0.1;
  pointer-events: none;
}
.icon-blob.top-right { top: -5rem; right: -3rem; }
.icon-blob.center { top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* ---------- Services cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  position: relative;
  background-color: var(--white);
  padding: 2.5rem 1.75rem;
  outline: 3px solid var(--black);
  text-align: center;
  transition: transform 0.3s var(--ease-out);
  cursor: pointer;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--black);
  transform: translate(0.5rem, 0.5rem);
  z-index: -1;
}
.service-card:hover { transform: translate(-4px, -4px); }
.service-card__icon svg {
  width: 80px;
  height: auto;
  margin: 0 auto 1.5rem;
}
.service-card__music-note {
  width: 24px;
  margin: 0 auto 0.5rem;
}
.service-card h3 {
  display: inline-block;
  background-color: var(--neon-yellow);
  padding: 0.05em 0.5em;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.service-card p { font-size: 1.05rem; }

/* ---------- Reviews / quote ---------- */
.review-quote {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.review-attribution {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.reviews-venue {
  margin-top: 1.5rem;
  text-align: center;
}

/* ---------- Packages / Pricing options ---------- */
.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
@media (max-width: 768px) { .options-grid { grid-template-columns: 1fr; } }
.option-card {
  position: relative;
  background-color: var(--white);
  padding: 2.5rem 2rem;
  outline: 3px solid var(--black);
}
.option-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--black);
  transform: translate(0.5rem, 0.5rem);
  z-index: -1;
}
.option-card h3 {
  background-color: var(--neon-yellow);
  display: inline-block;
  padding: 0.05em 0.5em;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.option-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  display: grid;
  gap: 0.6rem;
}
.option-card ul li::before { content: "● "; margin-right: 0.25rem; }
.option-card__price {
  font-size: 2rem;
  font-weight: 700;
  background-color: var(--neon-yellow);
  display: inline-block;
  padding: 0.05em 0.5em;
}

/* ---------- Inclusions list (wedding) ---------- */
.inclusions {
  background-color: var(--white);
  outline: 3px solid var(--black);
  padding: 3rem 2rem;
  position: relative;
  margin-top: 3rem;
}
.inclusions::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--black);
  transform: translate(0.6rem, 0.6rem);
  z-index: -1;
}
.inclusions__price {
  display: inline-block;
  background-color: var(--neon-yellow);
  padding: 0.1em 0.6em;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.inclusions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) { .inclusions__grid { grid-template-columns: 1fr; } }
.inclusions__col h3 {
  background-color: var(--neon-yellow);
  display: inline-block;
  padding: 0.05em 0.4em;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.inclusions__col ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  font-size: 1rem;
}
.inclusions__col ul li::before { content: "● "; margin-right: 0.25rem; }

/* ---------- CTA / packages block ---------- */
.cta-block {
  text-align: center;
  padding: 4rem 1rem;
}
.cta-block__heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 2.5rem;
}
.cta-block__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}
.cta-block__arrow {
  width: clamp(60px, 8vw, 100px);
  height: auto;
}
.cta-block__arrow.flip { transform: scaleX(-1); }

/* ---------- Client logo strip ---------- */
.client-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 2rem 0;
  margin-top: 2rem;
}
.client-strip img {
  max-height: 50px;
  width: auto;
  opacity: 0.9;
}

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form { display: grid; gap: 1rem; }
.contact-form label { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.04em; }
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  background-color: var(--neon-yellow);
  border: 3px solid var(--black);
  color: var(--black);
  outline: none;
  width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(0,0,0,0.5); }
.contact-form textarea { min-height: 6rem; resize: vertical; }
.contact-form button {
  margin-top: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background-color: var(--neon-yellow);
  border: 3px solid var(--black);
  padding: 0.85rem 1.5rem;
  color: var(--black);
  cursor: pointer;
  transition: transform 0.3s var(--ease-out);
}
.contact-form button:hover { transform: translateY(-3px); }
.contact-form button:disabled { opacity: 0.6; cursor: default; transform: none; }
.form-status {
  margin-top: 0.75rem;
  font-weight: bold;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 3px solid var(--black);
  background-color: var(--neon-yellow);
  color: var(--black);
}
.form-status.is-error { background-color: var(--hot-pink); color: #fff; }
.contact-info p { font-size: 1.1rem; line-height: 1.6; }
.contact-info a { font-weight: bold; text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  z-index: 2;
  padding: 2rem var(--page-pad);
  background-color: var(--black);
  color: var(--white);
  font-size: 0.875rem;
  text-align: center;
}
.site-footer a { text-decoration: underline; }
.site-footer__keywords { opacity: 0.7; margin-bottom: 0.5rem; }
