:root {
  --ivory: #fffaf4;
  --pearl: #f8f1e8;
  --champagne: #ead8bf;
  --blush: #e9beb2;
  --nude: #d8b99d;
  --taupe: #8a7563;
  --soft-gold: #b88737;
  --deep-gold: #9d702c;
  --ink: #2d2722;
  --muted: #76695d;
  --line: rgba(151, 116, 78, 0.22);
  --shadow: 0 18px 50px rgba(92, 62, 36, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 86px;
  padding: 14px clamp(20px, 5vw, 78px);
  background: rgba(255, 250, 244, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  gap: 0;
  color: var(--deep-gold);
  line-height: 1;
}

.brand span {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: 0;
}

.brand small {
  margin-top: 5px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-align: center;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
  color: #382f28;
  font-size: 13px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--soft-gold);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid var(--soft-gold);
  border-radius: 6px;
  color: var(--deep-gold);
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, #bd8835, #a8742c);
  color: #fffaf4;
  box-shadow: 0 12px 28px rgba(163, 112, 45, 0.22);
}

.btn-secondary {
  background: rgba(255, 250, 244, 0.78);
}

.btn-small,
.btn-card {
  min-height: 40px;
  padding-inline: 22px;
  background: #fffaf6;
}

.btn:hover,
.header-cta:hover,
.btn:focus-visible,
.header-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(113, 79, 45, 0.18);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf5;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--deep-gold);
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(46px, 7vw, 86px) 0;
}

.section-band {
  width: 100%;
  padding-inline: clamp(20px, 5vw, 78px);
}

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

.eyebrow {
  margin: 0 0 8px;
  color: var(--deep-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(46px, 5.25vw, 74px);
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(38px, 4.7vw, 58px);
}

h3 {
  margin-bottom: 8px;
  font-size: 29px;
}

.hero {
  position: relative;
  display: grid;
  align-items: stretch;
  min-height: calc(100vh - 86px);
  padding-top: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 15%, rgba(233, 190, 178, 0.35), transparent 30%),
    linear-gradient(105deg, #fffaf5 0%, #f7ebdf 43%, #efd7c3 100%);
}

.hero-copy {
  z-index: 2;
  align-self: center;
  max-width: 620px;
  padding: clamp(48px, 8vw, 116px) 0 clamp(82px, 9vw, 130px);
}

.hero-subtitle {
  max-width: 460px;
  margin-bottom: 30px;
  color: #4b4038;
  font-size: clamp(18px, 2vw, 22px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button-row.centered {
  justify-content: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 68%;
  background: linear-gradient(90deg, var(--ivory) 0%, rgba(255, 250, 244, 0.94) 37%, rgba(255, 250, 244, 0.46) 70%, transparent 100%);
  content: "";
}

.hero-media picture,
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center right;
}

.trust-row {
  position: absolute;
  right: clamp(20px, 5vw, 78px);
  bottom: 24px;
  left: clamp(20px, 5vw, 78px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 12px;
}

.trust-row div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 18px;
  border: 1px solid rgba(184, 135, 55, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.82);
  color: #3b3029;
  box-shadow: 0 12px 36px rgba(71, 48, 30, 0.08);
  backdrop-filter: blur(14px);
}

.mini-icon,
.line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-gold);
  flex: 0 0 auto;
  font-size: 29px;
  line-height: 1;
}

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

.option-card,
.package-card,
.event-card,
.testimonial-grid article,
.process-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 247, 0.88);
  box-shadow: 0 14px 42px rgba(92, 62, 36, 0.08);
}

.option-card {
  min-height: 214px;
  padding: 30px;
  text-align: center;
}

.clickable-card {
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.clickable-card:hover,
.clickable-card:focus-within {
  border-color: rgba(184, 135, 55, 0.48);
  box-shadow: 0 20px 54px rgba(92, 62, 36, 0.13);
  transform: translateY(-3px);
}

.option-card p {
  max-width: 290px;
  margin: 0 auto 20px;
  color: var(--muted);
}

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

.package-card {
  overflow: hidden;
}

.scene-image,
.event-image,
.gallery-item span,
.cta-bg {
  background-image: url("assets/melody-gallery-sheet.webp");
  background-repeat: no-repeat;
}

.portfolio-scene {
  background-image: url("assets/melody-portfolio-sheet.webp");
  background-repeat: no-repeat;
  background-size: 400% 300%;
}

.scene-image {
  min-height: 0;
  aspect-ratio: 1.45 / 1;
  background-size: 400% 200%;
}

.package-body {
  padding: 24px 24px 26px;
  text-align: center;
}

.price {
  margin-bottom: 10px;
  color: var(--deep-gold);
  font-size: 15px;
  font-weight: 800;
}

.package-description {
  min-height: 74px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.package-card ul {
  min-height: 124px;
  margin: 0 0 20px;
  padding-left: 18px;
  text-align: left;
  color: #4f433a;
  font-size: 15px;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.event-card {
  display: grid;
  gap: 14px;
  overflow: hidden;
  padding-bottom: 16px;
  color: var(--ink);
  text-align: center;
}

.event-image {
  display: block;
  aspect-ratio: 1.65 / 1;
  background-size: 400% 200%;
}

.event-card strong {
  padding: 0 14px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.08;
}

.design-builder {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(28px, 5vw, 66px);
  padding-top: clamp(46px, 7vw, 80px);
  padding-bottom: clamp(46px, 7vw, 80px);
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.96) 0%, rgba(255, 250, 244, 0.75) 45%, rgba(255, 245, 235, 0.98) 100%),
    radial-gradient(circle at 18% 70%, rgba(233, 190, 178, 0.32), transparent 32%);
}

.design-intro {
  align-self: center;
}

.design-intro p:not(.eyebrow):not(.script-note) {
  max-width: 330px;
  color: var(--muted);
}

.script-note {
  margin: 30px 0 0;
  color: #b18453;
  font-family: var(--serif);
  font-size: clamp(27px, 4vw, 42px);
  font-style: italic;
}

.builder-panel {
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 247, 0.92);
  box-shadow: var(--shadow);
}

.step-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.step-track li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.step-track li::before {
  position: absolute;
  top: 12px;
  right: calc(50% + 18px);
  left: calc(-50% + 18px);
  height: 1px;
  background: var(--line);
  content: "";
}

.step-track li:first-child::before {
  display: none;
}

.step-track span {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffaf6;
  color: var(--taupe);
}

.step-track .is-active span {
  border-color: var(--soft-gold);
  background: var(--soft-gold);
  color: #fffaf4;
}

.builder-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 22px;
  align-items: stretch;
}

.builder-content h3 {
  margin-bottom: 14px;
  font-size: 25px;
}

.builder-cta {
  width: fit-content;
  margin-top: 18px;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 10px;
}

.addon-grid label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf6;
  color: #4f4238;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.addon-grid input {
  accent-color: var(--soft-gold);
}

.addon-grid label.is-selected {
  border-color: var(--soft-gold);
  background: #fff3e3;
}

.upload-box {
  display: grid;
  place-items: center;
  min-height: 182px;
  padding: 22px;
  border: 1px dashed rgba(184, 135, 55, 0.58);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.78);
  color: var(--muted);
  text-align: center;
  cursor: pointer;
}

.upload-box input {
  display: none;
}

.upload-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--deep-gold);
  font-size: 25px;
}

.upload-box strong {
  color: var(--ink);
}

.upload-box small {
  max-width: 170px;
}

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

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-btn {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.filter-btn.is-active,
.filter-btn:hover,
.filter-btn:focus-visible {
  border-color: var(--soft-gold);
  background: var(--soft-gold);
  color: #fffaf4;
}

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

.gallery-item {
  position: relative;
  min-height: 0;
  aspect-ratio: 1.22 / 1;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(71, 48, 30, 0.1);
  cursor: pointer;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item span {
  display: block;
  width: 100%;
  height: 100%;
  background-size: 400% 200%;
  transition: transform 320ms ease;
}

.gallery-item:hover span {
  transform: scale(1.04);
}

.gallery-item:focus-visible {
  outline: 3px solid rgba(184, 135, 55, 0.44);
  outline-offset: 4px;
}

.gallery-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 14px 14px;
  background: linear-gradient(180deg, transparent, rgba(43, 34, 27, 0.72));
  color: #fffaf4;
  font-size: 13px;
  font-weight: 800;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 44px);
  background: rgba(28, 22, 18, 0.86);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-stage {
  width: min(1040px, 100%);
  margin: 0;
  color: #fffaf4;
  text-align: center;
}

.lightbox-image {
  width: min(100%, 980px);
  max-height: min(72vh, 680px);
  aspect-ratio: 4 / 3;
  margin: 0 auto;
  border: 1px solid rgba(255, 250, 244, 0.26);
  border-radius: 8px;
  background-color: #241c17;
  background-size: 400% 300%;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.lightbox-stage figcaption {
  margin-top: 16px;
  color: #fff6eb;
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.08;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 244, 0.38);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.12);
  color: #fffaf4;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.lightbox-close:hover,
.lightbox-arrow:hover,
.lightbox-close:focus-visible,
.lightbox-arrow:focus-visible {
  background: rgba(184, 135, 55, 0.72);
  transform: translateY(-1px);
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  font-size: 34px;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  width: 48px;
  height: 48px;
  font-size: 42px;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: clamp(12px, 3vw, 32px);
}

.lightbox-next {
  right: clamp(12px, 3vw, 32px);
}

.process {
  padding-top: clamp(46px, 7vw, 72px);
  padding-bottom: clamp(46px, 7vw, 72px);
  border-block: 1px solid var(--line);
  background: #fff7ef;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: min(1060px, 100%);
  margin: 0 auto;
}

.process-grid article {
  position: relative;
  min-height: 178px;
  padding: 28px 24px;
  text-align: center;
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: var(--soft-gold);
  color: #fffaf4;
  font-weight: 800;
}

.process-grid p,
.testimonial-grid p,
.why-panel p {
  color: var(--muted);
}

.process-note {
  width: min(760px, 100%);
  margin: 26px auto 0;
  padding: 16px 20px;
  border: 1px solid rgba(184, 135, 55, 0.24);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.72);
  color: #5b4c40;
  font-weight: 700;
  text-align: center;
}

.proof {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: clamp(28px, 5vw, 54px);
  align-items: start;
}

.seo-services {
  border-top: 1px solid var(--line);
}

.seo-services .section-heading p:last-child {
  width: min(760px, 100%);
  margin-inline: auto;
  color: var(--muted);
  font-size: 17px;
}

.service-keyword-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-keyword-grid article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 252, 247, 0.96), rgba(255, 246, 238, 0.86));
  box-shadow: 0 14px 36px rgba(92, 62, 36, 0.07);
}

.service-keyword-grid h3 {
  font-size: 25px;
  line-height: 1.08;
}

.service-keyword-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.why-panel {
  padding-top: 12px;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  color: #4a3d34;
  font-weight: 700;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--soft-gold);
  content: "✓";
}

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

.testimonial-grid article {
  min-height: 212px;
  padding: 24px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-copy {
  position: sticky;
  top: 116px;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.contact-card {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(184, 135, 55, 0.28);
  border-radius: 8px;
  background: linear-gradient(145deg, #fffaf4, #fff1e8);
  box-shadow: 0 14px 36px rgba(92, 62, 36, 0.08);
}

.contact-card a {
  color: var(--deep-gold);
  font-weight: 900;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 247, 0.92);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
}

.quote-form span {
  color: #4f4238;
  font-size: 13px;
  font-weight: 900;
}

.quote-form em {
  color: var(--deep-gold);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(151, 116, 78, 0.26);
  border-radius: 6px;
  background: #fffaf6;
  color: var(--ink);
  outline: none;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--soft-gold);
  box-shadow: 0 0 0 4px rgba(184, 135, 55, 0.12);
}

.quote-form .field-error {
  border-color: #b85c45;
  box-shadow: 0 0 0 4px rgba(184, 92, 69, 0.1);
}

.form-wide,
.form-actions {
  grid-column: 1 / -1;
}

.upload-field input {
  padding: 14px;
  border-style: dashed;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.form-status {
  display: none;
  margin: 2px 0 0;
  padding: 13px 15px;
  border-radius: 6px;
  background: rgba(184, 135, 55, 0.1);
  color: #5c4630;
  font-size: 14px;
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  background: rgba(184, 92, 69, 0.1);
  color: #83432f;
}

.form-status a {
  color: var(--deep-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.stars {
  margin-bottom: 12px;
  color: var(--soft-gold);
}

.cta-section {
  position: relative;
  display: grid;
  min-height: 360px;
  overflow: hidden;
  place-items: center;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: 400% 200%;
  filter: saturate(0.9);
}

.cta-bg::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.88), rgba(255, 250, 244, 0.72)),
    radial-gradient(circle at center, rgba(255, 250, 244, 0.16), rgba(255, 250, 244, 0.82));
  content: "";
}

.cta-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  padding: 44px 20px;
}

.cta-content p:not(.eyebrow) {
  color: #4f4238;
  font-size: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, 1fr);
  gap: 42px;
  padding: 48px clamp(20px, 5vw, 78px) 34px;
  border-top: 1px solid var(--line);
  background: #fff8f1;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--muted);
  font-size: 14px;
}

.site-footer h3 {
  color: var(--ink);
  font-size: 24px;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-brand p {
  max-width: 350px;
  margin: 20px 0;
}

.contact-list {
  margin-top: 20px;
}

.footer-note p {
  margin-top: 28px;
  color: var(--deep-gold);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  background: #25d366;
  color: white;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 38px rgba(36, 118, 73, 0.28);
  place-items: center;
}

.scene-1 {
  background-position: 0% 0%;
}

.scene-2 {
  background-position: 33.333% 0%;
}

.scene-3 {
  background-position: 66.666% 0%;
}

.scene-4 {
  background-position: 100% 0%;
}

.scene-5 {
  background-position: 0% 100%;
}

.scene-6 {
  background-position: 33.333% 100%;
}

.scene-7 {
  background-position: 66.666% 100%;
}

.scene-8 {
  background-position: 100% 100%;
}

.pscene-1 {
  background-position: 0% 0%;
}

.pscene-2 {
  background-position: 33.333% 0%;
}

.pscene-3 {
  background-position: 66.666% 0%;
}

.pscene-4 {
  background-position: 100% 0%;
}

.pscene-5 {
  background-position: 0% 50%;
}

.pscene-6 {
  background-position: 33.333% 50%;
}

.pscene-7 {
  background-position: 66.666% 50%;
}

.pscene-8 {
  background-position: 100% 50%;
}

.pscene-9 {
  background-position: 0% 100%;
}

.pscene-10 {
  background-position: 33.333% 100%;
}

.pscene-11 {
  background-position: 66.666% 100%;
}

.pscene-12 {
  background-position: 100% 100%;
}

.scene-image.portfolio-scene,
.event-image.portfolio-scene,
.gallery-item span.portfolio-scene,
.cta-bg.portfolio-scene {
  background-size: 400% 300%;
}

.quote-form.is-submitted {
  border-color: rgba(184, 135, 55, 0.48);
}

.world-cup-page {
  background: #fffaf4;
}

.world-cup-page .site-header {
  background: rgba(9, 12, 11, 0.88);
  border-bottom-color: rgba(184, 135, 55, 0.28);
}

.world-cup-page .brand span,
.world-cup-page .site-nav,
.world-cup-page .site-nav a {
  color: #fffaf4;
}

.world-cup-page .brand small {
  color: rgba(255, 250, 244, 0.82);
}

.world-cup-page .menu-toggle {
  background: rgba(255, 250, 244, 0.1);
}

.world-cup-page .menu-toggle span:not(.sr-only) {
  background: #f4c36b;
}

.wc-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 0.85fr);
  align-items: center;
  min-height: calc(100vh - 86px);
  overflow: hidden;
  border-bottom: 1px solid rgba(184, 135, 55, 0.22);
  background: #080b0a;
  color: #fffaf4;
}

.wc-hero-bg {
  position: absolute;
  inset: 0;
  background-size: 400% 300%;
  filter: saturate(1.02) contrast(1.05);
  opacity: 0.78;
}

.wc-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 16%, rgba(244, 190, 91, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(5, 7, 6, 0.98) 0%, rgba(5, 7, 6, 0.82) 43%, rgba(5, 7, 6, 0.36) 72%, rgba(5, 7, 6, 0.58) 100%);
  content: "";
}

.wc-hero-copy,
.wc-hero-install {
  position: relative;
  z-index: 2;
}

.wc-hero-copy {
  max-width: 690px;
  padding: clamp(58px, 8vw, 118px) 0 clamp(112px, 11vw, 154px);
}

.wc-hero-copy h1 {
  margin-bottom: 18px;
  color: #fffaf4;
  text-wrap: balance;
}

.wc-hero-copy .hero-subtitle {
  color: rgba(255, 250, 244, 0.88);
}

.wc-dark-secondary {
  background: rgba(5, 7, 6, 0.48);
  color: #fffaf4;
}

.wc-location-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 22px 0 0;
  color: rgba(255, 250, 244, 0.88);
  font-weight: 600;
}

.wc-location-line span,
.wc-location-line strong {
  color: #f4c36b;
}

.wc-hero-install {
  justify-self: end;
  width: min(440px, 100%);
  min-height: 500px;
  margin-bottom: 42px;
}

.wc-balloon-arch {
  position: absolute;
  inset: 0;
  transform: rotate(-2deg);
}

.wc-balloon-arch span {
  position: absolute;
  display: block;
  width: clamp(54px, 5.2vw, 88px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--champagne);
  box-shadow:
    inset -14px -15px 24px rgba(0, 0, 0, 0.2),
    inset 10px 9px 16px rgba(255, 255, 255, 0.28),
    0 12px 26px rgba(0, 0, 0, 0.28);
}

.wc-balloon-arch span:nth-child(1) { top: 1%; left: 18%; background: #c71924; }
.wc-balloon-arch span:nth-child(2) { top: 3%; left: 33%; background: #fffaf4; }
.wc-balloon-arch span:nth-child(3) { top: 8%; left: 47%; background: #0b3f88; }
.wc-balloon-arch span:nth-child(4) { top: 17%; left: 58%; background: #0f6b3c; }
.wc-balloon-arch span:nth-child(5) { top: 30%; left: 65%; background: #d2a246; }
.wc-balloon-arch span:nth-child(6) { top: 45%; left: 66%; background: #10100f; }
.wc-balloon-arch span:nth-child(7) { top: 61%; left: 58%; background: #f0efe8; }
.wc-balloon-arch span:nth-child(8) { top: 73%; left: 45%; background: #0c4a95; }
.wc-balloon-arch span:nth-child(9) { top: 80%; left: 29%; background: #d9a34e; }
.wc-balloon-arch span:nth-child(10) { top: 78%; left: 12%; background: #0a7b49; }
.wc-balloon-arch span:nth-child(11) { top: 63%; left: 4%; background: #0c0d0c; }
.wc-balloon-arch span:nth-child(12) { top: 46%; left: 0%; background: #c91f2b; }
.wc-balloon-arch span:nth-child(13) { top: 29%; left: 3%; background: #fffaf4; }
.wc-balloon-arch span:nth-child(14) { top: 14%; left: 8%; background: #d0d4d3; }
.wc-balloon-arch span:nth-child(15) { top: 16%; left: 31%; width: clamp(40px, 4vw, 66px); background: #d4a14c; }
.wc-balloon-arch span:nth-child(16) { top: 34%; left: 52%; width: clamp(42px, 4.4vw, 70px); background: #f8f1e8; }
.wc-balloon-arch span:nth-child(17) { top: 58%; left: 42%; width: clamp(38px, 4vw, 62px); background: #1d1e1b; }
.wc-balloon-arch span:nth-child(18) { top: 69%; left: 24%; width: clamp(42px, 4.2vw, 68px); background: #0d7748; }

.wc-welcome-sign {
  position: absolute;
  right: 0;
  bottom: 18px;
  display: grid;
  align-content: center;
  justify-items: center;
  width: min(225px, 52%);
  min-height: 310px;
  padding: 26px 22px;
  border: 1px solid rgba(244, 195, 107, 0.45);
  background:
    linear-gradient(180deg, rgba(10, 12, 10, 0.88), rgba(6, 8, 7, 0.96)),
    radial-gradient(circle at center, rgba(184, 135, 55, 0.2), transparent 65%);
  color: #f4c36b;
  text-align: center;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42);
}

.wc-welcome-sign span,
.wc-welcome-sign small {
  font-family: var(--serif);
  text-transform: uppercase;
}

.wc-welcome-sign strong {
  margin: 9px 0 15px;
  color: #fffaf4;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  line-height: 0.95;
  text-transform: uppercase;
}

.wc-welcome-sign::after {
  width: 76px;
  height: 76px;
  margin-top: 20px;
  border: 8px solid #fffaf4;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, #10100f 0 16%, transparent 17%),
    conic-gradient(#10100f 0 10%, #fffaf4 10% 20%, #10100f 20% 30%, #fffaf4 30% 40%, #10100f 40% 50%, #fffaf4 50% 60%, #10100f 60% 70%, #fffaf4 70% 80%, #10100f 80% 90%, #fffaf4 90% 100%);
  box-shadow: 0 0 0 1px rgba(244, 195, 107, 0.22);
  content: "";
}

.wc-feature-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: min(1180px, calc(100% - 40px));
  margin: -58px auto 0;
  overflow: hidden;
  border: 1px solid rgba(184, 135, 55, 0.42);
  border-radius: 8px;
  background: rgba(8, 12, 11, 0.96);
  color: #fffaf4;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.wc-feature-strip div {
  display: flex;
  gap: 15px;
  align-items: center;
  min-height: 78px;
  padding: 18px clamp(16px, 2.4vw, 32px);
  border-right: 1px solid rgba(255, 250, 244, 0.1);
}

.wc-feature-strip div:last-child {
  border-right: 0;
}

.wc-feature-icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  color: #f4c36b;
  font-size: 28px;
  line-height: 1;
  place-items: center;
}

.wc-match-section {
  padding-top: clamp(38px, 6vw, 68px);
  text-align: center;
}

.wc-match-section .section-heading {
  margin-bottom: 18px;
}

.wc-match-section .section-heading p,
.wc-seo-copy p {
  color: var(--muted);
}

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

.wc-match-card {
  display: grid;
  gap: 14px;
  padding: 20px 16px 15px;
  border: 1px solid rgba(184, 135, 55, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(255, 248, 240, 0.9)),
    radial-gradient(circle at top, rgba(184, 135, 55, 0.1), transparent 55%);
  box-shadow: 0 14px 32px rgba(92, 62, 36, 0.08);
}

.wc-match-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.08;
}

.wc-match-card h3 span {
  display: block;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.wc-match-card p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.wc-flag-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 9px;
  align-items: center;
}

.wc-flag-row > span:not(.wc-flag) {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.wc-flag,
.mini-flag {
  display: inline-block;
  overflow: hidden;
  border: 1px solid rgba(45, 39, 34, 0.12);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.wc-flag {
  width: 64px;
  height: 40px;
}

.mini-flag {
  width: 25px;
  height: 16px;
  border-radius: 4px;
}

.flag-germany { background: linear-gradient(#050505 0 33.3%, #dd1e2f 33.3% 66.6%, #f3c734 66.6%); }
.flag-curacao { background: linear-gradient(#074a99 0 56%, #f3c734 56% 68%, #074a99 68%); }
.flag-portugal { background: linear-gradient(90deg, #07843f 0 42%, #dd1e2f 42%); }
.flag-congo { background: linear-gradient(145deg, #00a4df 0 39%, #f6d33c 39% 52%, #d61f32 52% 61%, #00a4df 61%); }
.flag-netherlands { background: linear-gradient(#bd1f2d 0 33.3%, #fffaf4 33.3% 66.6%, #1d5da8 66.6%); }
.flag-sweden { background: linear-gradient(90deg, transparent 0 31%, #f2c84b 31% 43%, transparent 43%), linear-gradient(#0b5a98 0 38%, #f2c84b 38% 54%, #0b5a98 54%); }
.flag-uzbekistan { background: linear-gradient(#18a7c9 0 30%, #d6212e 30% 35%, #fff 35% 62%, #d6212e 62% 67%, #2f9844 67%); }
.flag-cabo-verde { background: linear-gradient(#1a5aa7 0 44%, #fff 44% 52%, #d51f32 52% 61%, #fff 61% 69%, #1a5aa7 69%); }
.flag-saudi { background: #0b7b49; }
.flag-mexico { background: linear-gradient(90deg, #0b7b49 0 33.3%, #fff 33.3% 66.6%, #c71924 66.6%); }
.flag-south-africa { background: linear-gradient(135deg, #111 0 23%, #f4c430 23% 31%, #0a7b49 31% 50%, #fff 50% 58%, #c71924 58%); }
.flag-usa { background: repeating-linear-gradient(#c71924 0 4px, #fff 4px 8px); }
.flag-paraguay { background: linear-gradient(#c71924 0 33.3%, #fff 33.3% 66.6%, #1d5da8 66.6%); }
.flag-brazil { background: radial-gradient(circle at center, #193b87 0 18%, #f4c430 19% 38%, transparent 39%), #0b7b49; }
.flag-morocco { background: #c71924; }

.wc-vote-btn,
.wc-theme-btn {
  min-height: 38px;
  border: 1px solid rgba(184, 135, 55, 0.28);
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.wc-vote-btn {
  background: rgba(255, 250, 244, 0.86);
  color: var(--ink);
}

.wc-vote-btn span {
  color: var(--deep-gold);
}

.wc-theme-btn {
  background: #0a0d0c;
  color: #fffaf4;
}

.wc-vote-btn:hover,
.wc-theme-btn:hover,
.wc-vote-btn:focus-visible,
.wc-theme-btn:focus-visible {
  border-color: var(--soft-gold);
  box-shadow: 0 12px 26px rgba(92, 62, 36, 0.1);
  transform: translateY(-1px);
}

.wc-view-all {
  margin-top: 18px;
}

.wc-package-section {
  padding-top: 8px;
}

.wc-board {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.wc-leaderboard {
  padding: 24px;
  border: 1px solid rgba(184, 135, 55, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(9, 12, 11, 0.96), rgba(8, 10, 9, 0.99)),
    radial-gradient(circle at top right, rgba(184, 135, 55, 0.18), transparent 48%);
  color: #fffaf4;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.wc-leaderboard h2 {
  margin-bottom: 20px;
  color: #fffaf4;
  font-size: 28px;
}

.wc-leaderboard ol {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wc-leaderboard li {
  display: grid;
  grid-template-columns: 26px 25px 1fr auto;
  gap: 10px;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 250, 244, 0.08);
  font-weight: 800;
}

.wc-leaderboard .rank {
  color: #fffaf4;
  font-family: var(--serif);
  font-size: 26px;
}

.wc-leaderboard strong {
  min-width: 42px;
  padding: 2px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c99643, #f0c878);
  color: #10100f;
  font-size: 12px;
  text-align: center;
}

.wc-leaderboard p {
  margin: 18px 0 0;
  color: rgba(255, 250, 244, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.wc-packages {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 247, 0.76);
}

.wc-packages .section-heading {
  margin: 0;
  padding: 21px 20px 4px;
}

.wc-packages .section-heading h2 {
  font-size: 38px;
}

.wc-package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 20px;
}

.wc-package-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 15px;
  padding: 28px 24px 24px;
  border: 1px solid rgba(184, 135, 55, 0.25);
  border-radius: 8px;
  background: #fffaf6;
  box-shadow: 0 12px 32px rgba(92, 62, 36, 0.08);
}

.wc-package-card.is-popular {
  border-color: rgba(184, 135, 55, 0.7);
  box-shadow: 0 18px 44px rgba(184, 135, 55, 0.16);
}

.wc-popular-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  min-height: 28px;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(135deg, #bd8835, #d5a14b);
  color: #fffaf4;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  place-items: center;
  text-transform: uppercase;
}

.wc-package-card.is-popular h3 {
  margin-top: 16px;
}

.wc-package-card h3 {
  font-size: 30px;
}

.wc-package-price {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.wc-package-price strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}

.wc-package-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 8px;
  padding: 0;
  color: #4f433a;
  font-size: 14px;
  list-style: none;
}

.wc-package-card li {
  position: relative;
  padding-left: 24px;
}

.wc-package-card li::before {
  position: absolute;
  left: 0;
  color: var(--deep-gold);
  content: "\2713";
}

.wc-serve {
  padding-top: 2px;
  text-align: center;
}

.wc-serve .section-heading {
  margin-bottom: 14px;
}

.wc-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
}

.wc-pills span {
  min-width: 180px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.72);
  color: #4d4238;
  font-size: 14px;
  font-weight: 700;
}

.wc-quote-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(60px, 8vw, 88px);
  background:
    linear-gradient(90deg, rgba(5, 8, 7, 0.96), rgba(5, 8, 7, 0.88)),
    url("assets/melody-gallery-sheet.webp") center / cover;
  color: #fffaf4;
}

.wc-quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(24px, 5vw, 70px);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: center;
}

.wc-quote-form h2 {
  color: #fffaf4;
}

.wc-quote-form > p:not(.eyebrow) {
  color: rgba(255, 250, 244, 0.82);
}

.wc-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.wc-form-grid label {
  display: grid;
  gap: 6px;
}

.wc-form-grid span {
  color: rgba(255, 250, 244, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.wc-form-grid input,
.wc-form-grid select,
.wc-form-grid textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(244, 195, 107, 0.22);
  border-radius: 6px;
  background: rgba(255, 250, 244, 0.06);
  color: #fffaf4;
  outline: none;
  padding: 10px 12px;
}

.wc-form-grid input[type="file"] {
  padding-top: 9px;
}

.wc-form-grid select option {
  color: var(--ink);
}

.wc-form-grid textarea {
  resize: vertical;
}

.wc-form-grid input:focus,
.wc-form-grid select:focus,
.wc-form-grid textarea:focus {
  border-color: #f4c36b;
  box-shadow: 0 0 0 3px rgba(244, 195, 107, 0.12);
}

.wc-wide-field {
  grid-column: 1 / -1;
}

.wc-submit {
  width: min(320px, 100%);
  margin-top: 20px;
}

.wc-benefit-box {
  display: grid;
  gap: 20px;
  padding: 28px;
  border: 1px solid rgba(244, 195, 107, 0.45);
  border-radius: 8px;
  background: rgba(6, 9, 8, 0.68);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.wc-benefit-box div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  align-items: start;
}

.wc-benefit-box span {
  grid-row: span 2;
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(244, 195, 107, 0.5);
  border-radius: 999px;
  color: #f4c36b;
  font-size: 24px;
  place-items: center;
}

.wc-benefit-box strong {
  color: #f4c36b;
}

.wc-benefit-box p {
  margin: 0;
  color: rgba(255, 250, 244, 0.78);
  font-size: 14px;
}

.wc-bottom-ctas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.wc-bottom-ctas a {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 247, 0.94);
  box-shadow: 0 14px 32px rgba(92, 62, 36, 0.08);
}

.wc-bottom-ctas span {
  grid-row: span 2;
  display: grid;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #fff3e1;
  color: var(--deep-gold);
  font-size: 30px;
  place-items: center;
}

.wc-bottom-ctas strong {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.05;
}

.wc-bottom-ctas small {
  color: var(--muted);
  font-weight: 600;
}

.wc-seo-copy {
  padding-top: 10px;
  padding-bottom: 48px;
}

.wc-seo-copy p {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

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

  .site-nav {
    position: fixed;
    inset: 86px 20px auto;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffaf4;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-bottom: 120px;
  }

  .hero-media {
    min-height: 100%;
  }

  .hero-media::before {
    display: block;
    width: 78%;
    background: linear-gradient(90deg, var(--ivory) 0%, rgba(255, 250, 244, 0.94) 48%, rgba(255, 250, 244, 0.58) 78%, transparent 100%);
  }

  .trust-row {
    position: static;
    grid-template-columns: repeat(2, 1fr);
    margin: 18px 0 28px;
  }

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

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

  .proof,
  .design-builder,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

  .builder-content {
    grid-template-columns: 1fr;
  }

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

  .world-cup-page .site-nav {
    background: rgba(9, 12, 11, 0.98);
  }

  .wc-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .wc-hero-copy {
    padding-bottom: 44px;
  }

  .wc-hero-install {
    justify-self: center;
    width: min(520px, 100%);
    min-height: 430px;
    margin-bottom: 90px;
  }

  .wc-feature-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -46px;
  }

  .wc-match-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wc-board,
  .wc-quote-grid {
    grid-template-columns: 1fr;
  }

  .wc-package-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    overflow-x: auto;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 76px;
    padding-inline: 18px;
  }

  .brand span {
    font-size: 30px;
  }

  .brand small {
    font-size: 10px;
  }

  .site-nav {
    inset: 76px 14px auto;
  }

  .section-shell {
    width: min(100% - 28px, 1180px);
    padding-block: 46px;
  }

  .section-band {
    padding-inline: 14px;
  }

  h1 {
    font-size: clamp(45px, 15vw, 62px);
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 26px;
  }

  .hero-copy {
    padding-top: 54px;
    padding-bottom: 145px;
    max-width: min(342px, 100%);
  }

  .hero-copy h1 {
    max-width: 342px;
    font-size: clamp(38px, 10.8vw, 48px);
    line-height: 1.02;
  }

  .hero-media {
    min-height: 100%;
  }

  .button-row,
  .button-row.centered {
    align-items: stretch;
    flex-direction: column;
  }

  .trust-row,
  .option-grid,
  .package-grid,
  .event-grid,
  .gallery-grid,
  .process-grid,
  .testimonial-grid,
  .service-keyword-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .option-card {
    min-height: auto;
  }

  .gallery-heading {
    align-items: start;
    flex-direction: column;
  }

  .filter-row {
    justify-content: flex-start;
  }

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

  .step-track li::before {
    display: none;
  }

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

  .quote-form {
    grid-template-columns: 1fr;
    padding: 20px 20px 94px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lightbox {
    padding: 18px 12px 76px;
  }

  .lightbox-image {
    width: 100%;
    max-height: 64vh;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }

  .wc-hero {
    padding-inline: 18px;
  }

  .wc-hero::before {
    background:
      linear-gradient(180deg, rgba(5, 7, 6, 0.92) 0%, rgba(5, 7, 6, 0.72) 48%, rgba(5, 7, 6, 0.9) 100%),
      radial-gradient(circle at 72% 18%, rgba(244, 190, 91, 0.2), transparent 32%);
  }

  .wc-hero-copy {
    padding-top: 48px;
    padding-bottom: 26px;
  }

  .wc-hero-install {
    min-height: 320px;
    margin-bottom: 74px;
  }

  .wc-welcome-sign {
    width: 46%;
    min-height: 230px;
    padding: 20px 14px;
  }

  .wc-welcome-sign::after {
    width: 52px;
    height: 52px;
    border-width: 6px;
  }

  .wc-feature-strip,
  .wc-match-grid,
  .wc-package-grid,
  .wc-form-grid,
  .wc-bottom-ctas {
    grid-template-columns: 1fr;
  }

  .wc-feature-strip {
    width: min(100% - 28px, 1180px);
  }

  .wc-feature-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 244, 0.1);
  }

  .wc-feature-strip div:last-child {
    border-bottom: 0;
  }

  .wc-board {
    gap: 18px;
  }

  .wc-package-grid {
    overflow-x: visible;
  }

  .wc-package-card,
  .wc-leaderboard,
  .wc-benefit-box {
    padding: 22px;
  }

  .wc-pills span {
    min-width: 0;
    width: 100%;
  }

  .wc-bottom-ctas {
    position: sticky;
    bottom: 0;
    z-index: 25;
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 250, 244, 0.94);
    backdrop-filter: blur(14px);
  }

  .wc-bottom-ctas a {
    min-height: 76px;
    padding: 12px 14px;
  }

  .wc-bottom-ctas strong {
    font-size: 22px;
  }

  .world-cup-page .whatsapp-float {
    display: none;
  }
}

/* World Cup landing page visual correction pass */
.world-cup-page {
  --wc-cream: #fff8ed;
  --wc-card: #fffaf3;
  --wc-black: #070a09;
  --wc-gold: #d2a24c;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(210, 162, 76, 0.09), transparent 28%),
    linear-gradient(180deg, #fffaf4 0%, #fff6ec 100%);
}

.world-cup-page .section-shell {
  width: min(1480px, calc(100% - 64px));
}

.world-cup-page .btn,
.world-cup-page .header-cta {
  min-height: 58px;
  padding-inline: 31px;
  border-radius: 9px;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.world-cup-page .site-header {
  min-height: 88px;
  background: rgba(5, 7, 6, 0.82);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.world-cup-page .brand span {
  color: #f4c36b;
  font-size: clamp(34px, 3.4vw, 52px);
}

.world-cup-page .site-nav {
  gap: clamp(20px, 2.3vw, 42px);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wc-mockup-hero {
  isolation: isolate;
  grid-template-columns: minmax(520px, 0.84fr) minmax(620px, 1.05fr);
  min-height: 760px;
  padding-inline: clamp(54px, 6vw, 96px);
  background:
    radial-gradient(circle at 83% 17%, rgba(244, 195, 107, 0.34), transparent 24%),
    linear-gradient(90deg, #050707 0%, #080b0a 38%, #1a150d 100%);
}

.wc-mockup-hero .wc-hero-bg {
  left: 39%;
  background-image:
    linear-gradient(90deg, transparent 0%, rgba(10, 8, 5, 0.06) 100%),
    url("assets/melody-portfolio-sheet.webp");
  background-size: 400% 300%;
  background-position: 33.333% 100%;
  filter: saturate(1.24) contrast(1.08) brightness(0.9);
  opacity: 1;
  transform: scale(1.07);
  transform-origin: right center;
}

.wc-mockup-hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 5, 5, 0.99) 0%, rgba(3, 5, 5, 0.96) 33%, rgba(3, 5, 5, 0.66) 52%, rgba(3, 5, 5, 0.16) 78%, rgba(3, 5, 5, 0.32) 100%),
    radial-gradient(circle at 75% 26%, rgba(244, 195, 107, 0.2), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(9, 102, 66, 0.22), transparent 22%);
}

.wc-mockup-hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
  content: "";
}

.wc-hero-copy {
  max-width: 760px;
  padding-top: clamp(72px, 8vw, 132px);
  padding-bottom: clamp(132px, 11vw, 176px);
}

.wc-hero-copy .eyebrow {
  color: #f4c36b;
}

.wc-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(70px, 6.6vw, 112px);
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.44);
}

.wc-hero-copy h1::after {
  display: block;
  width: 190px;
  height: 1px;
  margin-top: 22px;
  background: linear-gradient(90deg, #d2a24c, transparent);
  content: "";
}

.wc-hero-copy .hero-subtitle {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 250, 244, 0.94);
  font-size: clamp(20px, 1.55vw, 27px);
  line-height: 1.45;
}

.wc-hero-copy .button-row {
  gap: 18px;
}

.wc-dark-secondary {
  border-color: rgba(210, 162, 76, 0.75);
  background: rgba(6, 8, 7, 0.62);
  color: #fffaf4;
  box-shadow: inset 0 0 0 1px rgba(255, 250, 244, 0.06);
}

.wc-location-line {
  margin-top: 26px;
  font-size: 16px;
}

.wc-location-line strong::before {
  color: rgba(255, 250, 244, 0.54);
  content: "\00B7  ";
}

.wc-hero-install {
  justify-self: end;
  width: min(720px, 100%);
  min-height: 660px;
  margin: 54px 0 92px;
  transform: translateX(12px);
}

.wc-balloon-arch span {
  width: clamp(82px, 6.2vw, 126px);
  box-shadow:
    inset -20px -22px 34px rgba(0, 0, 0, 0.23),
    inset 14px 12px 22px rgba(255, 255, 255, 0.34),
    0 20px 36px rgba(0, 0, 0, 0.34);
}

.wc-balloon-arch span:nth-child(1) { top: 0%; left: 14%; }
.wc-balloon-arch span:nth-child(2) { top: 1%; left: 29%; }
.wc-balloon-arch span:nth-child(3) { top: 4%; left: 44%; }
.wc-balloon-arch span:nth-child(4) { top: 12%; left: 58%; }
.wc-balloon-arch span:nth-child(5) { top: 25%; left: 68%; }
.wc-balloon-arch span:nth-child(6) { top: 39%; left: 72%; }
.wc-balloon-arch span:nth-child(7) { top: 55%; left: 68%; }
.wc-balloon-arch span:nth-child(8) { top: 70%; left: 57%; }
.wc-balloon-arch span:nth-child(9) { top: 78%; left: 42%; }
.wc-balloon-arch span:nth-child(10) { top: 80%; left: 27%; }
.wc-balloon-arch span:nth-child(11) { top: 70%; left: 12%; }
.wc-balloon-arch span:nth-child(12) { top: 55%; left: 3%; }
.wc-balloon-arch span:nth-child(13) { top: 38%; left: 0%; }
.wc-balloon-arch span:nth-child(14) { top: 20%; left: 3%; }
.wc-balloon-arch span:nth-child(15) { top: 12%; left: 27%; width: clamp(62px, 4.7vw, 94px); }
.wc-balloon-arch span:nth-child(16) { top: 28%; left: 52%; width: clamp(66px, 5vw, 98px); }
.wc-balloon-arch span:nth-child(17) { top: 52%; left: 51%; width: clamp(62px, 4.8vw, 92px); }
.wc-balloon-arch span:nth-child(18) { top: 66%; left: 31%; width: clamp(64px, 5vw, 96px); }

.wc-welcome-sign {
  right: 18px;
  bottom: 32px;
  width: min(285px, 42%);
  min-height: 405px;
  border-width: 2px;
  background:
    linear-gradient(180deg, rgba(11, 11, 8, 0.94), rgba(5, 7, 6, 0.98)),
    radial-gradient(circle at center, rgba(210, 162, 76, 0.24), transparent 68%);
}

.wc-welcome-sign span,
.wc-welcome-sign small {
  font-size: 18px;
  letter-spacing: 0.05em;
}

.wc-welcome-sign strong {
  font-size: clamp(42px, 3.5vw, 60px);
  line-height: 0.9;
}

.wc-welcome-sign::after {
  width: 94px;
  height: 94px;
  margin-top: 26px;
}

.wc-feature-strip {
  width: min(1400px, calc(100% - 86px));
  margin-top: -72px;
  border-radius: 14px;
  border-color: rgba(210, 162, 76, 0.52);
  background:
    linear-gradient(180deg, rgba(13, 16, 15, 0.98), rgba(5, 7, 6, 0.99)),
    radial-gradient(circle at top left, rgba(210, 162, 76, 0.17), transparent 42%);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.wc-feature-strip div {
  min-height: 98px;
  padding: 24px clamp(24px, 3vw, 46px);
}

.wc-feature-strip strong {
  color: #fffaf4;
  font-size: 17px;
  line-height: 1.35;
}

.wc-feature-icon {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  font-size: 36px;
}

.wc-match-section {
  padding-top: 38px;
  padding-bottom: 34px;
}

.wc-match-section .section-heading h2 {
  font-size: clamp(48px, 4.5vw, 72px);
}

.wc-match-section .section-heading p {
  font-size: 17px;
}

.wc-match-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.wc-match-card {
  min-height: 318px;
  padding: 24px 20px 18px;
  border-color: rgba(184, 135, 55, 0.34);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0%, rgba(210, 162, 76, 0.13), transparent 42%),
    linear-gradient(180deg, #fffdf8 0%, #fff7ed 100%);
  box-shadow: 0 22px 50px rgba(92, 62, 36, 0.14);
}

.wc-match-card h3 {
  min-height: 60px;
  font-size: 26px;
}

.wc-flag {
  width: min(92px, 100%);
  height: 56px;
  border-radius: 14px;
  justify-self: center;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    0 12px 22px rgba(69, 43, 18, 0.12);
}

.wc-vote-btn,
.wc-theme-btn {
  min-height: 45px;
  border-radius: 7px;
  font-size: 13px;
}

.wc-vote-btn {
  background: #fffaf4;
}

.wc-vote-btn.is-voted,
.wc-vote-btn:disabled {
  cursor: default;
  opacity: 0.7;
  transform: none;
}

.wc-theme-btn {
  background: linear-gradient(180deg, #121514, #050706);
  letter-spacing: 0.04em;
}

.wc-view-all {
  display: none;
}

.wc-package-section {
  width: 100%;
  max-width: none;
  padding: 42px max(32px, calc((100vw - 1480px) / 2)) 52px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0) 0%, #fff5e8 18%, #fff8ef 100%);
}

.wc-board {
  grid-template-columns: minmax(340px, 405px) minmax(0, 1fr);
  gap: 28px;
  width: min(1480px, 100%);
  margin-inline: auto;
}

.wc-leaderboard {
  padding: 32px 28px;
  border-radius: 14px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}

.wc-leaderboard h2 {
  font-size: 34px;
  text-transform: uppercase;
}

.wc-leaderboard li {
  grid-template-columns: 34px 31px 1fr auto;
  min-height: 36px;
  gap: 12px;
  font-size: 15px;
}

.mini-flag {
  width: 31px;
  height: 21px;
}

.wc-leaderboard strong {
  min-width: 50px;
  padding-block: 4px;
}

.wc-packages {
  border-radius: 14px;
  background: rgba(255, 252, 247, 0.82);
  box-shadow: inset 0 0 0 1px rgba(184, 135, 55, 0.1);
}

.wc-packages .section-heading h2 {
  font-size: 46px;
}

.wc-package-grid {
  gap: 22px;
  padding: 24px;
}

.wc-package-card {
  min-height: 430px;
  padding: 36px 30px 28px;
  border-radius: 13px;
  box-shadow: 0 22px 50px rgba(92, 62, 36, 0.12);
}

.wc-package-card h3 {
  font-size: 36px;
}

.wc-package-price strong {
  font-size: 64px;
}

.wc-popular-label {
  min-height: 36px;
  border-radius: 12px 12px 0 0;
  font-size: 12px;
}

.wc-package-card.is-popular h3 {
  margin-top: 20px;
}

.wc-package-card ul {
  gap: 12px;
  font-size: 15px;
}

.wc-serve {
  padding-top: 24px;
  padding-bottom: 42px;
}

.wc-pills span {
  min-width: 220px;
  padding: 13px 24px;
  background: rgba(255, 252, 247, 0.88);
  box-shadow: 0 10px 22px rgba(92, 62, 36, 0.06);
}

.wc-quote-section {
  padding-top: 72px;
  padding-bottom: 78px;
  background:
    linear-gradient(90deg, rgba(5, 8, 7, 0.94), rgba(5, 8, 7, 0.84)),
    radial-gradient(circle at 86% 24%, rgba(210, 162, 76, 0.22), transparent 28%),
    url("assets/melody-gallery-sheet.webp") center / cover;
}

.wc-quote-grid {
  width: min(1480px, 100%);
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 52px;
}

.wc-quote-form {
  padding: 30px;
  border: 1px solid rgba(244, 195, 107, 0.26);
  border-radius: 14px;
  background: rgba(6, 9, 8, 0.58);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.wc-quote-form h2 {
  font-size: clamp(44px, 4vw, 64px);
}

.wc-form-grid {
  gap: 14px;
}

.wc-form-grid span {
  color: rgba(255, 250, 244, 0.88);
  font-size: 13px;
}

.wc-form-grid input,
.wc-form-grid select,
.wc-form-grid textarea {
  min-height: 52px;
  border-color: rgba(244, 195, 107, 0.36);
  background: rgba(255, 250, 244, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.wc-submit {
  min-height: 60px;
  width: min(410px, 100%);
  margin-top: 24px;
}

.wc-benefit-box {
  padding: 34px;
  border-radius: 14px;
  background: rgba(6, 9, 8, 0.76);
}

.wc-benefit-box div {
  grid-template-columns: 54px 1fr;
}

.wc-benefit-box span {
  width: 54px;
  height: 54px;
  font-size: 30px;
}

.wc-benefit-box strong {
  font-size: 18px;
}

.wc-benefit-box p {
  font-size: 15px;
}

.wc-bottom-ctas {
  width: min(1040px, calc(100% - 64px));
  margin: -34px auto 0;
  padding: 0 0 20px;
}

.wc-bottom-ctas a {
  min-height: 106px;
  border-radius: 12px;
  background: #fffaf4;
  box-shadow: 0 20px 42px rgba(92, 62, 36, 0.16);
}

.wc-bottom-ctas span {
  background: #fff2df;
}

.wc-footer {
  grid-template-columns: minmax(250px, 1.3fr) repeat(3, minmax(150px, 1fr));
  gap: 34px;
  padding-top: 38px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(210, 162, 76, 0.22);
  background:
    radial-gradient(circle at 12% 12%, rgba(210, 162, 76, 0.12), transparent 24%),
    linear-gradient(180deg, #080b0a, #030504);
}

.wc-footer .brand span {
  color: #f4c36b;
}

.wc-footer .brand small,
.wc-footer h3 {
  color: #fffaf4;
}

.wc-footer p,
.wc-footer li,
.wc-footer a {
  color: rgba(255, 250, 244, 0.7);
}

.wc-footer .footer-note p {
  color: #d2a24c;
}

@media (max-width: 1180px) {
  .wc-mockup-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .wc-mockup-hero .wc-hero-bg {
    left: 0;
    opacity: 0.56;
  }

  .wc-hero-copy {
    padding-bottom: 32px;
  }

  .wc-hero-install {
    justify-self: center;
    width: min(680px, 100%);
    min-height: 540px;
    margin-top: 0;
  }

  .wc-match-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wc-board,
  .wc-quote-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .world-cup-page .section-shell {
    width: min(100% - 28px, 1180px);
  }

  .world-cup-page .btn,
  .world-cup-page .header-cta {
    width: 100%;
    min-height: 54px;
  }

  .wc-mockup-hero {
    padding-inline: 18px;
  }

  .wc-mockup-hero::before {
    background:
      linear-gradient(180deg, rgba(4, 6, 5, 0.96) 0%, rgba(4, 6, 5, 0.7) 48%, rgba(4, 6, 5, 0.92) 100%),
      radial-gradient(circle at 80% 28%, rgba(244, 195, 107, 0.18), transparent 32%);
  }

  .wc-hero-copy h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .wc-hero-copy .hero-subtitle {
    font-size: 18px;
    max-width: 340px;
  }

  .wc-hero-install {
    min-height: 355px;
    margin-bottom: 78px;
    transform: none;
  }

  .wc-balloon-arch span {
    width: clamp(54px, 16vw, 74px);
  }

  .wc-welcome-sign {
    right: 4px;
    width: min(190px, 46%);
    min-height: 245px;
    padding: 18px 12px;
  }

  .wc-welcome-sign span,
  .wc-welcome-sign small {
    font-size: 12px;
  }

  .wc-welcome-sign strong {
    font-size: 31px;
  }

  .wc-welcome-sign::after {
    width: 52px;
    height: 52px;
    border-width: 6px;
  }

  .wc-feature-strip {
    width: min(100% - 28px, 1180px);
    margin-top: -50px;
  }

  .wc-match-grid,
  .wc-package-grid,
  .wc-form-grid,
  .wc-bottom-ctas {
    grid-template-columns: 1fr;
  }

  .wc-match-card {
    min-height: auto;
  }

  .wc-package-section {
    padding-inline: 14px;
  }

  .wc-package-grid {
    overflow-x: visible;
  }

  .wc-quote-section {
    padding-inline: 14px;
  }

  .wc-quote-form {
    padding: 20px;
  }

  .wc-bottom-ctas {
    width: 100%;
    margin-top: 0;
    padding: 10px 14px;
  }

  .wc-footer {
    grid-template-columns: 1fr;
  }
}

.wc-balloon-arch span:nth-child(n+19) {
  width: clamp(44px, 3.8vw, 76px);
  z-index: 2;
}

.wc-balloon-arch span:nth-child(19) { top: 6%; left: 22%; background: #f8f1e8; }
.wc-balloon-arch span:nth-child(20) { top: 9%; left: 38%; background: #d2a24c; }
.wc-balloon-arch span:nth-child(21) { top: 17%; left: 49%; background: #f0efe8; }
.wc-balloon-arch span:nth-child(22) { top: 23%; left: 61%; background: #c71924; }
.wc-balloon-arch span:nth-child(23) { top: 34%; left: 60%; background: #0b3f88; }
.wc-balloon-arch span:nth-child(24) { top: 49%; left: 63%; background: #d0d4d3; }
.wc-balloon-arch span:nth-child(25) { top: 62%; left: 57%; background: #d2a24c; }
.wc-balloon-arch span:nth-child(26) { top: 72%; left: 48%; background: #10100f; }
.wc-balloon-arch span:nth-child(27) { top: 73%; left: 35%; background: #fffaf4; }
.wc-balloon-arch span:nth-child(28) { top: 70%; left: 21%; background: #0f6b3c; }
.wc-balloon-arch span:nth-child(29) { top: 58%; left: 12%; background: #c71924; }
.wc-balloon-arch span:nth-child(30) { top: 44%; left: 7%; background: #f8f1e8; }
.wc-balloon-arch span:nth-child(31) { top: 30%; left: 9%; background: #d2a24c; }
.wc-balloon-arch span:nth-child(32) { top: 17%; left: 15%; background: #0b3f88; }
.wc-balloon-arch span:nth-child(33) { top: 24%; left: 31%; background: #0f6b3c; }
.wc-balloon-arch span:nth-child(34) { top: 39%; left: 42%; background: #fffaf4; }
.wc-balloon-arch span:nth-child(35) { top: 55%; left: 39%; background: #d2a24c; }
.wc-balloon-arch span:nth-child(36) { top: 60%; left: 27%; background: #0b3f88; }

@media (max-width: 760px) {
  .world-cup-page {
    width: 100%;
  }

  .wc-mockup-hero,
  .wc-hero-copy,
  .wc-hero-copy .hero-subtitle,
  .wc-location-line {
    width: 100%;
    max-width: 100%;
  }

  .wc-hero-copy {
    padding-right: 0;
  }

  .wc-hero-install {
    width: 100%;
    max-width: 356px;
    justify-self: start;
    overflow: visible;
  }

  .wc-balloon-arch {
    left: -22px;
    right: auto;
    width: 330px;
  }

  .wc-balloon-arch span:nth-child(n+19) {
    width: clamp(34px, 10.5vw, 50px);
  }

  .wc-welcome-sign {
    right: -2px;
  }

  .wc-bottom-ctas {
    position: static;
    backdrop-filter: none;
  }

  .wc-hero-copy .hero-subtitle {
    max-width: 340px;
  }
}

/* World Cup final correction pass */
.wc-mockup-hero {
  grid-template-columns: minmax(560px, 0.78fr) minmax(700px, 1.08fr);
  min-height: 790px;
  background:
    radial-gradient(circle at 74% 34%, rgba(210, 162, 76, 0.22), transparent 30%),
    linear-gradient(105deg, #040605 0%, #0a0b08 55%, #1b140a 100%);
}

.wc-mockup-hero .wc-hero-bg {
  left: 0;
  right: 0;
  background-image:
    linear-gradient(90deg, rgba(3, 5, 5, 0.38) 0%, rgba(3, 5, 5, 0.08) 48%, rgba(3, 5, 5, 0) 100%),
    url("assets/melody-portfolio-sheet.webp");
  background-size: 400% 300%;
  background-position: 33.333% 100%;
  filter: saturate(1.18) contrast(1.04) brightness(0.9);
  opacity: 0.82;
  transform: scale(1.04);
}

.wc-mockup-hero::before {
  background:
    radial-gradient(ellipse at 24% 48%, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.62) 27%, rgba(0, 0, 0, 0.2) 54%, transparent 74%),
    linear-gradient(90deg, rgba(2, 4, 4, 0.94) 0%, rgba(2, 4, 4, 0.78) 28%, rgba(2, 4, 4, 0.4) 53%, rgba(2, 4, 4, 0.08) 76%, rgba(2, 4, 4, 0.24) 100%),
    radial-gradient(circle at 77% 25%, rgba(244, 195, 107, 0.2), transparent 31%);
}

.wc-hero-install {
  width: min(760px, 100%);
  margin-right: clamp(8px, 2vw, 34px);
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.34));
}

.wc-hero-install::before {
  position: absolute;
  inset: 11% 2% 7% 0;
  z-index: 0;
  border-radius: 45% 45% 38% 42%;
  background:
    radial-gradient(circle at 50% 60%, rgba(0, 0, 0, 0.36), transparent 58%),
    radial-gradient(circle at 55% 45%, rgba(244, 195, 107, 0.12), transparent 50%);
  filter: blur(8px);
  content: "";
}

.wc-hero-install::after {
  position: absolute;
  right: 10%;
  bottom: 4%;
  left: 6%;
  z-index: 0;
  height: 74px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.48), transparent 72%);
  content: "";
}

.wc-balloon-arch {
  z-index: 1;
}

.wc-balloon-arch span {
  background-image:
    radial-gradient(circle at 29% 22%, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.12) 22%, transparent 42%),
    radial-gradient(circle at 58% 70%, rgba(0, 0, 0, 0.24), transparent 55%);
  transform: translateZ(0);
}

.wc-balloon-arch span:nth-child(3n) {
  z-index: 3;
}

.wc-balloon-arch span:nth-child(4n) {
  z-index: 1;
  filter: saturate(0.96) brightness(0.94);
}

.wc-welcome-sign {
  z-index: 3;
  right: 24px;
  bottom: 40px;
  border-color: rgba(244, 195, 107, 0.64);
  background:
    linear-gradient(180deg, rgba(14, 12, 8, 0.96), rgba(5, 6, 5, 0.98)),
    radial-gradient(circle at 50% 12%, rgba(244, 195, 107, 0.18), transparent 48%);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.48),
    inset 0 0 0 1px rgba(255, 250, 244, 0.06);
}

.wc-match-section.section-shell {
  width: min(1660px, calc(100% - 48px));
}

.wc-match-grid {
  gap: 22px;
}

.wc-match-card {
  min-height: 348px;
  padding: 28px 23px 22px;
}

.wc-match-card h3 {
  min-height: 72px;
  font-size: 29px;
}

.wc-match-card h3 span {
  font-size: 14px;
}

.wc-match-card p {
  font-size: 15px;
}

.wc-flag {
  width: min(106px, 100%);
  height: 62px;
}

.wc-vote-btn,
.wc-theme-btn {
  min-height: 50px;
  font-size: 14px;
}

.wc-package-section {
  padding-inline: max(24px, calc((100vw - 1640px) / 2));
}

.wc-board {
  width: min(1640px, 100%);
  grid-template-columns: minmax(330px, 390px) minmax(0, 1fr);
  gap: 32px;
}

.wc-package-grid {
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 26px;
}

.wc-package-card {
  min-height: 408px;
  padding: 34px 34px 30px;
}

.wc-package-card h3 {
  font-size: 34px;
}

.wc-package-card ul {
  gap: 10px;
  font-size: 15px;
  line-height: 1.42;
}

.wc-package-price strong {
  font-size: 60px;
}

.wc-quote-section {
  padding-top: 78px;
  padding-bottom: 92px;
}

.wc-quote-form {
  background: rgba(9, 12, 11, 0.48);
}

.wc-form-grid input,
.wc-form-grid select,
.wc-form-grid textarea {
  border-color: rgba(244, 195, 107, 0.48);
  background: rgba(255, 250, 244, 0.18);
  color: #fffdf8;
}

.wc-form-grid input::placeholder,
.wc-form-grid textarea::placeholder {
  color: rgba(255, 250, 244, 0.62);
}

.wc-form-grid span {
  color: #fff3df;
}

.wc-submit {
  min-height: 66px;
  box-shadow:
    0 18px 38px rgba(184, 135, 55, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.wc-bottom-ctas {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
  padding: 34px 0 38px;
}

.wc-bottom-ctas a {
  min-height: 116px;
  border-color: rgba(184, 135, 55, 0.24);
}

.wc-bottom-ctas a[href^="tel"] small::after {
  content: " 713-855-3459";
}

.wc-seo-copy {
  padding-top: 0;
  padding-bottom: 34px;
}

.wc-footer {
  grid-template-columns: minmax(270px, 1.55fr) minmax(170px, 0.85fr) minmax(210px, 0.95fr) minmax(150px, 0.7fr);
  gap: 30px;
  padding-top: 34px;
  padding-bottom: 26px;
}

.wc-footer h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.wc-footer ul {
  gap: 6px;
}

.wc-footer .footer-brand p {
  max-width: 430px;
  margin: 14px 0 14px;
}

.wc-footer .footer-note p {
  margin-top: 16px;
  font-size: 22px;
}

@media (max-width: 1180px) {
  .wc-mockup-hero {
    grid-template-columns: 1fr;
  }

  .wc-board {
    grid-template-columns: 1fr;
  }

  .wc-match-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .wc-mockup-hero .wc-hero-bg {
    opacity: 0.68;
  }

  .wc-mockup-hero::before {
    background:
      linear-gradient(180deg, rgba(4, 6, 5, 0.94) 0%, rgba(4, 6, 5, 0.76) 48%, rgba(4, 6, 5, 0.92) 100%),
      radial-gradient(circle at 70% 55%, rgba(244, 195, 107, 0.14), transparent 38%);
  }

  .wc-match-grid,
  .wc-package-grid,
  .wc-bottom-ctas {
    grid-template-columns: 1fr;
  }

  .wc-match-section.section-shell {
    width: min(100% - 28px, 1180px);
  }

  .wc-match-card {
    min-height: auto;
    padding: 24px 20px 20px;
  }

  .wc-match-card h3 {
    min-height: auto;
  }

  .wc-flag {
    width: 104px;
  }

  .wc-package-section {
    padding-inline: 14px;
  }

  .wc-bottom-ctas {
    width: 100%;
    padding: 24px 14px 30px;
  }

  .wc-bottom-ctas a {
    min-height: 104px;
  }

  .wc-footer {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
