:root {
  --ink: #0b0b0f;
  --paper: #f2f5ee;
  --yellow: #fece07;
  --blue: #147db7;
  --green: #5dbb46;
  --white: #fffdf7;
  --muted: #a8a8ad;
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 1rem;
  padding: .75rem 1rem;
  background: var(--yellow);
  transform: translateY(-120%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 5.5rem;
  padding: 1.25rem clamp(1rem, 4vw, 4.5rem);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
}
.brand-logo { display: block; width: auto; height: 4rem; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.brand-name {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: .04em;
}
nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.5rem); }
nav a {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
}
nav a:hover { color: var(--yellow); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 3.55rem;
  padding: .85rem 1.35rem;
  border: 2px solid var(--yellow);
  border-radius: 0;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .045em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--green); }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}
.button-small { min-height: 2.9rem; padding: .6rem 1rem; font-size: .8rem; }
.button-dark { width: 100%; border-color: var(--ink); background: var(--ink); color: var(--white); }
.button-dark:hover { box-shadow: 5px 5px 0 var(--blue); }
.button-whatsapp { border-color: var(--green); background: var(--green); color: var(--ink); }
.button-whatsapp:hover { box-shadow: 5px 5px 0 var(--blue); }
.text-link {
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: .35rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.text-link.light { color: var(--white); }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 9rem clamp(1rem, 4vw, 4.5rem) 2.2rem;
  background: var(--blue);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(21rem, 1.1fr);
  grid-template-rows: 1fr auto;
  gap: 2rem clamp(2rem, 5vw, 6rem);
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 28rem;
  height: 28rem;
  top: -14rem;
  right: 28%;
  border: 5rem solid rgba(93, 187, 70, .34);
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -8%;
  bottom: 2.4rem;
  width: 68%;
  height: 2.1rem;
  border-top: 1.4rem solid var(--yellow);
  background: var(--green);
  transform: rotate(-7deg);
  transform-origin: right center;
}
.hero-copy, .hero-media, .hero-proof { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 1.4rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.eyebrow span { width: 2.4rem; height: 3px; background: currentColor; }
.eyebrow.dark { color: var(--ink); }
h1, h2, h3 { margin: 0; font-family: var(--display); line-height: .88; text-transform: uppercase; }
h1 { font-size: clamp(4.5rem, 8.6vw, 9.4rem); font-weight: 900; letter-spacing: -.045em; }
h1 em, h2 em { color: var(--yellow); font-style: italic; }
.hero-intro { max-width: 38rem; margin: 1.7rem 0; color: #d6d6da; font-size: clamp(1rem, 1.5vw, 1.2rem); }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero-media {
  display: block;
  min-height: min(62vh, 44rem);
  border: 1px solid rgba(255,255,255,.18);
  overflow: hidden;
  isolation: isolate;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1rem solid transparent;
  border-top-color: var(--yellow);
  border-right-width: 0;
  pointer-events: none;
}
.hero-media img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; transition: transform .6s ease; }
.hero-media:hover img { transform: scale(1.035); }
.media-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.78)); }
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 5.7rem;
  height: 5.7rem;
  padding-left: .35rem;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 1.7rem;
  transform: translate(-50%, -50%);
}
.media-caption { position: absolute; left: 1.25rem; bottom: 1.25rem; font-size: .78rem; font-weight: 800; letter-spacing: .1em; }
.media-caption b { margin-left: .75rem; color: var(--yellow); }
.carnival-stamp {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 6rem;
  height: 6rem;
  padding-top: .85rem;
  border: 2px solid var(--white);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: .95;
  text-align: center;
  transform: rotate(8deg);
}
.carnival-stamp small { color: var(--yellow); font-size: .62rem; }
.hero-proof { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #34343b; }
.hero-proof div { padding: 1.2rem 1rem 0; border-right: 1px solid #34343b; }
.hero-proof div:first-child { padding-left: 0; }
.hero-proof div:last-child { border-right: 0; }
.hero-proof strong { display: block; font-family: var(--display); font-size: clamp(1.9rem, 3vw, 3rem); line-height: 1; }
.hero-proof span { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }

.marquee { overflow: hidden; border-block: 2px solid var(--ink); background: var(--yellow); }
.marquee div { width: max-content; padding: .6rem 0; font-family: var(--display); font-size: 1.5rem; font-weight: 800; white-space: nowrap; animation: crawl 28s linear infinite; }
.marquee span, .marquee i { margin-right: 1.5rem; }
.marquee i { color: var(--green); font-style: normal; }
@keyframes crawl { to { transform: translateX(-50%); } }

.agency-proof { padding: 2.5rem clamp(1rem, 6vw, 7rem); background: var(--white); border-bottom: 2px solid var(--ink); }
.agency-proof > p { margin: 0 0 1.2rem; color: #66646f; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-align: center; }
.agency-proof > div { display: grid; grid-template-columns: repeat(2, 1fr); max-width: 76rem; margin: 0 auto; border: 1px solid #aaa8a3; }
.agency-proof a { display: grid; gap: .15rem; padding: 1.2rem 1.4rem; text-decoration: none; }
.agency-proof a + a { border-left: 1px solid #aaa8a3; }
.agency-proof a:hover { background: var(--yellow); }
.agency-proof span { color: var(--blue); font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.agency-proof strong { font-family: var(--display); font-size: 2rem; line-height: 1; text-transform: uppercase; }
.agency-proof small { color: #55555e; }

.section { padding: clamp(5rem, 9vw, 9rem) clamp(1rem, 6vw, 7rem); }
.section-dark { padding: clamp(5rem, 9vw, 9rem) clamp(1rem, 6vw, 7rem); background: var(--ink); color: var(--white); }
.section-blue { padding: clamp(5rem, 9vw, 9rem) clamp(1rem, 6vw, 7rem); background: var(--blue); color: var(--white); }
.section-heading h2, .watch h2, .lineups h2, .faq h2, .enquire h2 { font-size: clamp(4.1rem, 8vw, 8.8rem); letter-spacing: -.04em; }
.section-heading h2 em, .lineups h2 em, .enquire h2 em { color: var(--green); }
.experience { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(18rem, .85fr); gap: 3rem 8vw; }
.experience-copy { align-self: end; max-width: 38rem; }
.experience-copy .lead { font-size: clamp(1.25rem, 2vw, 1.65rem); font-weight: 600; line-height: 1.45; }
.experience-copy p:last-child { color: #55555e; }
.booking-brief { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 1rem; border-block: 2px solid var(--ink); }
.booking-brief p { display: grid; grid-template-columns: auto 1fr; column-gap: .8rem; margin: 0; padding: 1.25rem 1.25rem 1.25rem 0; border-right: 1px solid #aaa8a3; }
.booking-brief p + p { padding-left: 1.25rem; }
.booking-brief p:last-child { border-right: 0; }
.booking-brief span { grid-row: 1 / span 2; color: var(--blue); font-family: var(--display); font-size: 1.3rem; font-weight: 800; }
.booking-brief strong { font-size: .9rem; text-transform: uppercase; letter-spacing: .04em; }
.booking-brief small { grid-column: 2; color: #55555e; line-height: 1.45; }
.moments { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 2rem; border-top: 2px solid var(--ink); }
.moment { position: relative; padding: 2rem 2rem 1rem 0; border-right: 1px solid #aaa8a3; }
.moment + .moment { padding-left: 2rem; }
.moment:last-child { border-right: 0; }
.moment-number { display: inline-block; margin-bottom: 4rem; color: var(--blue); font-family: var(--display); font-size: 1.1rem; font-weight: 800; }
.moment h3 { font-size: clamp(2.5rem, 4vw, 4rem); }
.moment p { max-width: 25rem; color: #55555e; }

.watch { display: grid; grid-template-columns: .55fr 1.45fr; gap: 3rem 6vw; align-items: end; }
.watch-heading h2 em, .faq h2 em { color: var(--blue); }
.video-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; }
.video-card-featured { grid-column: 1 / -1; }
.video-frame { position: relative; aspect-ratio: 16 / 9; border: 1px solid #35353b; box-shadow: 12px 12px 0 var(--yellow); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card:not(.video-card-featured) .video-frame { box-shadow: 8px 8px 0 var(--green); }
.video-meta { padding-top: 1.3rem; }
.video-meta span { color: var(--yellow); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.video-meta h3 { margin-top: .35rem; font-size: clamp(1.65rem, 3vw, 2.8rem); line-height: 1; }
.watch-note { grid-column: 2; display: flex; align-items: center; justify-content: space-between; gap: 2rem; color: #c7c7cc; }

.lineups { background: var(--paper); }
.lineups-intro { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1rem 4rem; align-items: end; margin-bottom: 3rem; }
.lineups-intro .eyebrow { grid-column: 1 / -1; }
.lineups-intro p:last-child { max-width: 28rem; color: #55555e; }
.price-list { border-top: 2px solid var(--ink); }
.price-row { display: grid; grid-template-columns: 5rem 1fr auto 3rem; gap: 1.5rem; align-items: center; min-height: 10rem; border-bottom: 1px solid #aaa8a3; }
.price-row.featured { margin-inline: -1rem; padding-inline: 1rem; background: var(--yellow); border-color: var(--ink); }
.price-index { color: var(--blue); font-family: var(--display); font-size: 1.7rem; font-weight: 800; }
.price-row h3 { font-size: clamp(2.6rem, 5vw, 5rem); }
.price-row p { margin: .35rem 0 0; color: #55555e; }
.popular { display: inline-block; padding: .2rem .45rem; background: var(--ink); color: var(--white); font-size: .65rem; font-weight: 800; letter-spacing: .08em; }
.price-detail { display: grid; grid-template-columns: auto auto; gap: .1rem 1rem; align-items: baseline; text-align: right; }
.price-detail span { display: block; color: #55555e; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.price-detail strong { font-family: var(--display); font-size: 1.8rem; }
.price-row > a { font-size: 2rem; font-weight: 800; text-decoration: none; }
.set-options { display: flex; justify-content: space-between; gap: 2rem; margin-top: 2rem; color: #55555e; }

.reviews { display: grid; grid-template-columns: .6fr 1.4fr; gap: 4rem 8vw; }
.review-score { position: sticky; top: 2rem; align-self: start; }
.stars { display: block; color: var(--yellow); font-size: 1.2rem; letter-spacing: .16em; }
.review-score > strong { display: block; margin: .4rem 0; font-family: var(--display); font-size: clamp(7rem, 13vw, 12rem); line-height: .9; }
.review-score p { max-width: 23rem; color: #e1edff; }
.review-score a { font-weight: 800; text-underline-offset: .3rem; }
.review-links { display: flex; flex-direction: column; gap: .4rem; align-items: flex-start; }
.quotes blockquote { margin: 0; padding: 2rem 0 3rem; border-top: 1px solid rgba(255,255,255,.5); }
.quotes blockquote p { margin: 0 0 1.5rem; font-family: var(--display); font-size: clamp(2rem, 4vw, 4.4rem); font-weight: 700; line-height: 1.05; text-transform: uppercase; }
.quotes footer { color: #d7e7ff; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }

.repertoire { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem 6vw; align-items: center; }
.song-cloud { display: flex; flex-wrap: wrap; gap: .7rem; align-content: center; }
.song-cloud span { padding: .75rem 1rem; border: 2px solid var(--ink); font-weight: 700; transform: rotate(-1deg); }
.song-cloud span:nth-child(3n) { background: var(--yellow); transform: rotate(1.5deg); }
.song-cloud span:nth-child(4n) { background: var(--green); color: var(--ink); }

.faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: 3rem 7vw; }
.accordion { border-top: 1px solid #414148; }
details { border-bottom: 1px solid #414148; }
summary { display: flex; justify-content: space-between; gap: 2rem; padding: 1.55rem 0; font-size: 1.05rem; font-weight: 700; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--yellow); font-size: 1.5rem; transition: transform .2s ease; }
details[open] summary span { transform: rotate(45deg); }
details p { max-width: 42rem; margin: -.4rem 0 1.7rem; color: #b9b9bf; }

.enquire { padding: clamp(5rem, 9vw, 9rem) clamp(1rem, 6vw, 7rem); background: var(--yellow); display: grid; grid-template-columns: .75fr 1.25fr; gap: 4rem 8vw; }
.enquire-intro > p:not(.eyebrow) { max-width: 32rem; }
.direct-contact { display: flex; flex-direction: column; gap: .4rem; margin-top: 2rem; font-weight: 800; }
.enquiry-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; padding: clamp(1.4rem, 4vw, 3rem); background: var(--white); box-shadow: 16px 16px 0 var(--green); }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field.full, .full { grid-column: 1 / -1; }
label { font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
input, select, textarea { width: 100%; border: 1px solid #a7a59f; border-radius: 0; background: #fff; color: var(--ink); padding: .85rem .9rem; }
textarea { resize: vertical; }
.form-note { margin: 0; color: #66646f; font-size: .75rem; text-align: center; }
.form-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.site-footer { padding: 3rem clamp(1rem, 4vw, 4.5rem); background: var(--blue); color: var(--white); display: grid; grid-template-columns: 1fr 1fr auto; gap: 2rem; align-items: end; }
.site-footer p { margin: 0; color: var(--muted); }
.footer-brand .brand-logo { height: 5rem; }
.site-footer > div { display: flex; gap: 1.5rem; }
.site-footer > div a { font-weight: 700; }
.site-footer small { grid-column: 1 / -1; padding-top: 2rem; border-top: 1px solid #34343b; color: #777780; }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { min-height: 55vw; }
  .hero-proof { grid-template-columns: repeat(2, 1fr); }
  .hero-proof div:nth-child(2) { border-right: 0; }
  .experience, .watch, .reviews, .repertoire, .faq, .enquire { grid-template-columns: 1fr; }
  .booking-brief { grid-template-columns: repeat(2, 1fr); }
  .booking-brief p:nth-child(2) { border-right: 0; }
  .booking-brief p:nth-child(n+3) { border-top: 1px solid #aaa8a3; }
  .moments { grid-template-columns: 1fr; }
  .moment, .moment + .moment { padding: 1.5rem 0; border-right: 0; border-bottom: 1px solid #aaa8a3; }
  .moment-number { margin-bottom: 1.5rem; }
  .video-gallery, .watch-note { grid-column: 1; }
  .lineups-intro { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 3.5rem 1fr 2.5rem; padding-block: 1.5rem; }
  .price-detail { grid-column: 2; justify-content: start; text-align: left; }
  .price-row > a { grid-column: 3; grid-row: 1 / span 2; }
  .review-score { position: static; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer > div { justify-self: end; }
}

@media (max-width: 620px) {
  body { padding-bottom: 4.1rem; }
  .site-header { min-height: 4.7rem; padding: 1rem; }
  .site-header > .button { display: none; }
  .brand-logo { height: 3rem; }
  .hero { padding: 7.2rem 1rem 2rem; gap: 2.7rem; }
  h1 { font-size: clamp(4.2rem, 21vw, 6.4rem); }
  .hero-media { min-height: 72vw; }
  .carnival-stamp { width: 5rem; height: 5rem; font-size: .9rem; }
  .hero-proof div { padding: 1rem .7rem 0; }
  .hero-proof div:nth-child(odd) { padding-left: 0; }
  .section, .section-dark, .section-blue, .enquire { padding: 4.5rem 1rem; }
  .section-heading h2, .watch h2, .lineups h2, .faq h2, .enquire h2 { font-size: clamp(3.7rem, 19vw, 5.8rem); }
  .watch { gap: 2rem; }
  .video-gallery { grid-template-columns: 1fr; }
  .video-frame { box-shadow: 8px 8px 0 var(--yellow); }
  .watch-note, .set-options { align-items: flex-start; flex-direction: column; }
  .agency-proof > div { grid-template-columns: 1fr; }
  .agency-proof a + a { border-left: 0; border-top: 1px solid #aaa8a3; }
  .booking-brief { grid-template-columns: 1fr; }
  .booking-brief p, .booking-brief p + p { padding: 1.1rem 0; border-right: 0; border-top: 1px solid #aaa8a3; }
  .booking-brief p:first-child { border-top: 0; }
  .price-row { grid-template-columns: 2.7rem 1fr 2rem; gap: .8rem; }
  .price-row h3 { font-size: 2.9rem; }
  .price-row p { font-size: .85rem; }
  .price-row.featured { margin-inline: -.45rem; padding-inline: .45rem; }
  .review-score > strong { font-size: 8rem; }
  .quotes blockquote p { font-size: 2.45rem; }
  .enquiry-form { grid-template-columns: 1fr; padding: 1.25rem; box-shadow: 8px 8px 0 var(--green); }
  .field, .field.full, .full { grid-column: 1; }
  .form-actions { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; padding: 3rem 1rem; }
  .site-footer > div { justify-self: start; }
  .mobile-cta { position: fixed; z-index: 50; left: 0; bottom: 0; display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 4.1rem; padding: .8rem 1rem; background: var(--yellow); color: var(--ink); font-weight: 900; text-decoration: none; text-transform: uppercase; letter-spacing: .04em; box-shadow: 0 -5px 20px rgba(0,0,0,.2); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Booking-focused refinements: keep the original logo, colours and typefaces. */
[hidden] { display: none !important; }
:root { --text-green: #277128; }
html { scroll-padding-top: 1.5rem; }
h1 { font-size: clamp(4rem,7.5vw,8rem); line-height: .96; }
h2 { line-height: .98 !important; }
h3 { line-height: 1.05; }
.hero-intro, .hero-proof span, .site-footer p, .site-footer small { color: #fff; }
.hero-price { margin: 1.1rem 0 0; font-size: .94rem; }
.hero-price a { text-underline-offset: .25rem; }
.hero-proof { border-color: rgba(255,255,255,.45); }
.hero-proof div { border-color: rgba(255,255,255,.45); }
.hero-proof span { font-size: .875rem; }
.eyebrow, nav a, .button-small, label, .form-note, .video-meta span, .price-detail span, .agency-proof > p, .agency-proof span, .quotes footer { font-size: .875rem; }
.section-heading h2 em, .lineups h2 em, .enquire h2 em { color: var(--text-green); }
.hero-media img { object-fit: cover; }
.agency-proof > p.agency-note { margin: 1rem auto 0; max-width: 65rem; text-transform: none; font-weight: 500; letter-spacing: 0; }
.moment .text-link { font-size: .875rem; display: inline-block; padding: .5rem 0; }
.watch { align-items: start; }
.watch-heading { position: sticky; top: 2rem; }
.video-frame { overflow: hidden; }
.video-load { display: block; width: 100%; height: 100%; color: var(--white); position: absolute; inset: 0; background: #222; }
.video-load img { width: 100%; height: 100%; object-fit: cover; }
.video-load .play-button { width: 3.7rem; height: 3.7rem; font-size: 1.2rem; }
.video-load-label { position: absolute; left: .7rem; bottom: .6rem; padding: .2rem .55rem; background: var(--ink); font-size: .875rem; }
.video-description { color: #ddd; margin-bottom: .4rem; }
.video-link { font-size: .9rem; text-underline-offset: .25rem; }
.video-privacy { grid-column: 2; font-size: .875rem; color: #ccc; margin: 0; }
.watch-note { margin-top: 0; }
.price-row > a { display: grid; place-items: center; min-width: 44px; min-height: 44px; }
.review-date { display: block; font-size: .875rem; margin-top: .7rem; }
.quotes footer a { text-transform: none; letter-spacing: 0; }
.reveal { opacity: 1; transform: none; }
.marquee div { animation: none; }
.form-intro, .form-guide { margin: 0; }
.form-intro span { display: block; font-size: .875rem; color: #55555e; }
label span { font-weight: 500; text-transform: none; letter-spacing: 0; }
.field small { font-size: .875rem; color: #55555e; }
.optional-details { border-block: 1px solid #aaa8a3; }
.optional-details summary { font-size: .9rem; padding: .9rem 0; }
.optional-details summary span { color: var(--ink); }
.optional-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; padding-bottom: 1.2rem; }
.form-guide { font-size: .9rem; color: #444; }
.form-actions { grid-template-columns: 1fr; }
.form-note { text-align: left; }
.form-note a { text-underline-offset: .2rem; }
.text-button { border: none; background: none; color: inherit; text-decoration: underline; padding: .6rem 0; font: inherit; cursor: pointer; text-align: left; }
button:focus-visible { outline: 3px solid var(--text-green); outline-offset: 3px; }
button:disabled { opacity: .6; cursor: wait; }
.handoff-fallback textarea { margin-top: .6rem; font-size: .95rem; }
.handoff-fallback p { font-size: .9rem; }
.site-footer { grid-template-columns: 1fr 1fr; }
.site-footer > div { grid-column: 1/-1; justify-self: start; flex-wrap: wrap; gap: .5rem 1.5rem; align-items: center; }
.site-footer > div a { padding: .4rem 0; }
.cookie-panel { position: fixed; z-index: 100; left: 1rem; bottom: 1rem; background: var(--white); color: var(--ink); border: 2px solid var(--ink); padding: 1.2rem; max-width: 35rem; box-shadow: 4px 4px 0 var(--green); font-size: 1rem; }
.cookie-panel p { margin-top: 0; }
.cookie-panel > div { display: flex; gap: .75rem; flex-wrap: wrap; }
.cookie-panel button { background: var(--ink); color: white; border: 1px solid var(--ink); padding: .75rem; cursor: pointer; font: inherit; }
.cookie-panel > a { display: inline-block; padding-top: .6rem; }
.service-page .site-header { background: var(--blue); position: relative; }
.service-main { max-width: 76rem; margin: auto; padding: 3rem clamp(1rem,5vw,4rem) 5rem; }
.breadcrumb { font-size: .9rem; margin-bottom: 2rem; }
.service-main h1 { font-size: clamp(3.4rem,7vw,6.7rem); max-width: 60rem; margin-bottom: 1.5rem; }
.service-main h1 em { color: #0b6698; }
.service-main h2 { font-size: clamp(2.3rem,4vw,3.8rem); margin-top: 2rem; margin-bottom: 1rem; }
.service-main p, .service-main li { max-width: 49rem; }
.service-main .lead { font-size: 1.2rem; }
.service-main .hero-actions { margin: 1.5rem 0 2rem; }
.service-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.service-note { padding: 1.5rem; border-left: .45rem solid var(--green); background: #fff; margin: 2rem 0; }
.service-main .video-frame { max-width: 54rem; margin: 2rem 0; }
.service-main .video-description { color: #444; }
.service-main .related-links { display: flex; flex-wrap: wrap; gap: 1rem 2rem; padding-top: 2rem; border-top: 2px solid var(--ink); }
.price-table-wrap { max-width: 49rem; overflow-x: auto; margin: 1.5rem 0; }
.wedding-price-table { width: 100%; border-collapse: collapse; font-size: 1rem; background: #fff; }
.wedding-price-table caption { text-align: left; font-weight: 700; padding-bottom: .75rem; }
.wedding-price-table th, .wedding-price-table td { padding: .85rem .65rem; border-bottom: 1px solid #ccd1d4; text-align: left; }
.wedding-price-table thead { background: var(--blue); color: #fff; }
.wedding-review { margin: 0; }
.wedding-review p { font-size: 1.2rem; }
.wedding-review footer { font-size: .94rem; }
.wedding-faq { max-width: 55rem; margin: 2.5rem 0; }
.wedding-faq summary { font-size: 1rem; line-height: 1.4; gap: 1rem; }
.wedding-faq summary span { flex-shrink: 0; color: #0b6698; }
.wedding-faq details p { color: var(--ink); }
.site-header nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: .35rem; }
@media (max-width:960px) {
 .site-header { position: relative; background: var(--blue); flex-wrap: wrap; gap: .7rem 1rem; }
 .site-header nav { display: flex; order: 3; flex-basis: 100%; justify-content: space-between; flex-wrap: wrap; gap: .4rem .85rem; }
 .hero { padding-top: 3rem; }
 .watch-heading { position: static; }
 .video-privacy { grid-column: 1; }
}
@media (max-width:620px) {
 .site-header > .button { display: inline-flex; font-size: .875rem; padding: .5rem .7rem; }
 .site-header nav a { font-size: .875rem; padding: .25rem 0; }
 .hero { padding-top: 2rem; gap: 2rem; }
 h1 { font-size: clamp(3.2rem,15.8vw,5rem); }
 .hero-intro { margin: 1rem 0; }
 .hero-actions { gap: 1rem; }
 .hero-actions .button { width: 100%; }
 .hero-media { min-height: 56vw; }
 .media-caption { font-size: .75rem; max-width: 65%; }
 .media-caption b { display: block; margin-left: 0; }
 .optional-grid, .service-columns { grid-template-columns: 1fr; }
 .service-columns { gap: 0; }
 .form-active .mobile-cta { display: none; }
 .mobile-cta { padding-bottom: calc(.8rem + env(safe-area-inset-bottom)); }
 body { padding-bottom: calc(4.1rem + env(safe-area-inset-bottom)); }
 .cookie-panel { bottom: 5rem; right: 1rem; max-height: 65vh; overflow: auto; }
 .service-page .service-main { padding-top: 1.5rem; }
 .service-main h1 { font-size: clamp(3rem,12vw,4.6rem); }
}
/* Readable text contrast while preserving the brand swatches. */
.site-header, .hero, .section-blue, .site-footer, nav a, .hero .eyebrow, .quotes footer, .review-score p { color: #fff; }
.hero .eyebrow span { background: var(--yellow); }
.agency-proof span, .moment-number { color: #0b6698; }
.popular { font-size: .875rem; }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline-color: var(--text-green); }
.hero a:focus-visible, .site-header a:focus-visible, .section-dark a:focus-visible, .section-blue a:focus-visible, .site-footer a:focus-visible { outline-color: var(--yellow); }
