: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;
  --announcement-height: 46px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.mdh-staging-notice {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10000;
  margin: 0;
  padding: 0.7rem 1rem;
  background: #7a1f1f;
  color: #fff;
  font: 700 0.82rem/1.35 var(--sans);
  letter-spacing: 0.02em;
  text-align: center;
}

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: var(--announcement-height);
  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);
}

.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 21;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: var(--announcement-height);
  padding: 9px clamp(16px, 4vw, 54px);
  background: linear-gradient(90deg, #f0dfc8, #fff7ee 48%, #e6cfad);
  border-bottom: 1px solid rgba(184, 135, 55, 0.34);
  color: #4d3d2c;
  text-align: center;
}

.announcement-bar p {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.announcement-bar a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 16px;
  border: 1px solid rgba(126, 82, 31, 0.42);
  border-radius: 999px;
  background: linear-gradient(135deg, #bd8835, #a8742c);
  color: #fffaf4;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(139, 93, 36, 0.18);
  white-space: nowrap;
}

.announcement-short {
  display: none;
}

.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 .nav-pill {
  margin-block: -8px;
  padding: 8px 13px;
  border: 1px solid rgba(184, 135, 55, 0.28);
  border-radius: 999px;
  background: rgba(255, 244, 229, 0.82);
  color: var(--deep-gold);
  box-shadow: 0 8px 22px rgba(139, 93, 36, 0.08);
}

.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: 44px;
  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;
}

.btn-large {
  min-height: 56px;
  padding-inline: 34px;
  font-size: 15px;
}

.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);
  text-shadow: 0 1px 0 rgba(255, 250, 244, 0.68);
}

.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-mini-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(184, 135, 55, 0.28);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.78);
  color: var(--deep-gold);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(92, 62, 36, 0.08);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 63%;
  background: linear-gradient(90deg, var(--ivory) 0%, rgba(255, 250, 244, 0.9) 39%, rgba(255, 250, 244, 0.38) 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(5, 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);
}

.world-cup-promo {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  padding-top: clamp(38px, 6vw, 72px);
  padding-bottom: clamp(38px, 6vw, 72px);
}

.world-cup-promo-media {
  min-height: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  background-size: 400% 300%;
  box-shadow: var(--shadow);
}

.world-cup-promo-copy {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(184, 135, 55, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, rgba(30, 104, 66, 0.08), transparent 24%),
    linear-gradient(145deg, rgba(255, 252, 247, 0.96), rgba(255, 245, 235, 0.9));
  box-shadow: 0 18px 48px rgba(92, 62, 36, 0.09);
}

.world-cup-promo-copy h2 {
  max-width: 720px;
}

.world-cup-promo-copy p:not(.eyebrow) {
  color: #4f4238;
  font-size: 17.5px;
  line-height: 1.6;
}

.urgency-line {
  margin: 0 0 22px;
  color: var(--deep-gold);
  font-weight: 900;
}

.wc-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.wc-chip-row span {
  padding: 8px 12px;
  border: 1px solid rgba(184, 135, 55, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.78);
  color: #5a493b;
  font-size: 12px;
  font-weight: 900;
}

.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 {
  display: flex;
  flex-direction: column;
  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: 4 / 3;
  background-size: 400% 200%;
}

.package-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 26px;
  text-align: center;
}

.package-body h3 {
  font-size: 30px;
}

.price {
  margin-bottom: 10px;
  color: var(--deep-gold);
  font-size: 16px;
  font-weight: 900;
}

.package-description {
  min-height: 74px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.package-card ul {
  flex: 1;
  min-height: 124px;
  margin: 0 0 20px;
  padding-left: 18px;
  text-align: left;
  color: #4f433a;
  font-size: 15.5px;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.event-card {
  position: relative;
  display: grid;
  gap: 14px;
  overflow: hidden;
  padding-bottom: 16px;
  color: var(--ink);
  text-align: center;
}

.event-card-featured {
  border-color: rgba(184, 135, 55, 0.44);
  box-shadow: 0 18px 48px rgba(92, 62, 36, 0.13);
}

.event-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(184, 135, 55, 0.94);
  color: #fffaf4;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.event-image {
  display: block;
  aspect-ratio: 4 / 3;
  background-size: 400% 200%;
}

.event-card strong {
  padding: 0 14px;
  font-family: var(--serif);
  font-size: 25px;
  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: 4 / 3;
  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: 46px 16px 16px;
  background: linear-gradient(180deg, transparent, rgba(43, 34, 27, 0.82));
  color: #fffaf4;
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.25;
}

.gallery-item figcaption a {
  display: inline-flex;
  margin-left: 8px;
  color: #fff7df;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.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-stage figcaption a {
  display: inline-flex;
  margin-left: 10px;
  color: #f4c36b;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.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 {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  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);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-keyword-grid article:hover,
.service-keyword-grid article:focus-within {
  border-color: rgba(184, 135, 55, 0.44);
  box-shadow: 0 18px 48px rgba(92, 62, 36, 0.12);
  transform: translateY(-2px);
}

.service-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--deep-gold);
}

.service-keyword-grid h3 {
  font-size: 29px;
  line-height: 1.08;
}

.service-keyword-grid p {
  flex: 1;
  margin-bottom: 18px;
  color: #50443b;
  font-size: 16.5px;
  line-height: 1.55;
}

.seo-natural-copy {
  width: min(900px, 100%);
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 16px;
  text-align: center;
}

.seo-natural-copy a {
  color: var(--deep-gold);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 14px;
  padding: 0 16px;
  border: 1px solid rgba(184, 135, 55, 0.36);
  border-radius: 6px;
  background: rgba(255, 250, 244, 0.82);
  color: #8f5f22;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.world-cup-services {
  border-top: 1px solid var(--line);
}

.world-cup-services .section-heading p:last-child {
  width: min(760px, 100%);
  margin-inline: auto;
  color: var(--muted);
  font-size: 17px;
}

.wc-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.wc-service-grid article {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 247, 0.9);
  box-shadow: 0 14px 38px rgba(92, 62, 36, 0.08);
}

.wc-service-image {
  aspect-ratio: 4 / 3;
  background-size: 400% 300%;
}

.wc-service-grid h3,
.wc-service-grid p,
.wc-service-grid a {
  margin-right: 18px;
  margin-left: 18px;
}

.wc-service-grid h3 {
  margin-top: 20px;
  font-size: 25px;
}

.wc-service-grid p {
  flex: 1;
  color: var(--muted);
  font-size: 15px;
}

.wc-service-grid .btn {
  margin-bottom: 20px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.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;
}

.reassurance-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.reassurance-list li {
  position: relative;
  padding-left: 26px;
  color: #4f4238;
  font-weight: 800;
}

.reassurance-list li::before {
  position: absolute;
  left: 0;
  color: var(--soft-gold);
  content: "✓";
}

.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);
}

.google-trust-card {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(184, 135, 55, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 250, 244, 0.98), rgba(255, 241, 232, 0.92));
  box-shadow: 0 14px 36px rgba(92, 62, 36, 0.08);
}

.google-trust-card h3 {
  margin-bottom: 2px;
  font-size: 30px;
}

.google-trust-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.rating-line {
  color: var(--deep-gold);
  font-size: 19px;
  letter-spacing: 0.1em;
}

.trust-badge-grid {
  display: grid;
  gap: 8px;
}

.trust-badge-grid span {
  padding: 9px 11px;
  border: 1px solid rgba(184, 135, 55, 0.18);
  border-radius: 6px;
  background: rgba(255, 250, 244, 0.72);
  color: #5b4b3d;
  font-size: 13px;
  font-weight: 900;
}

.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: 13.5px;
  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);
  font-size: 15px;
  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);
}

.field-hint {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.wc-conditional-hint {
  color: var(--deep-gold);
  font-weight: 800;
}

.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;
}

.logistics-details {
  padding: 16px;
  border: 1px solid rgba(151, 116, 78, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.62);
}

.logistics-details summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.logistics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.agreement-box {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(184, 135, 55, 0.28);
  border-radius: 8px;
  background: #fff8f1;
}

.agreement-note {
  margin: 0;
  color: #5f5147;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.quote-form .agreement-field {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  justify-items: start;
}

.quote-form .agreement-field input {
  width: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--deep-gold);
}

.quote-form .agreement-field span {
  color: #4f4238;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.agreement-field a {
  color: var(--deep-gold);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.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;
}

.form-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.form-status-actions .btn {
  text-decoration: none;
}

.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;
}

.footer-google-link {
  margin-top: -6px;
}

.footer-google-link a {
  color: var(--deep-gold);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.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;
}

.terms-hero {
  padding-top: clamp(74px, 9vw, 118px);
  padding-bottom: clamp(42px, 6vw, 72px);
  background: linear-gradient(135deg, #fffaf4 0%, #f6eadf 100%);
}

.terms-hero h1 {
  max-width: 900px;
}

.terms-hero p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 700;
}

.terms-content {
  display: grid;
  gap: 28px;
  max-width: 980px;
  padding-top: clamp(42px, 6vw, 72px);
  padding-bottom: clamp(54px, 7vw, 90px);
}

.terms-content section {
  display: grid;
  gap: 12px;
}

.terms-content h2 {
  color: var(--ink);
  font-size: clamp(1.85rem, 3vw, 2.65rem);
}

.terms-content p,
.terms-content li {
  color: #4f4238;
  font-size: 16px;
  line-height: 1.72;
}

.terms-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.terms-highlight {
  padding: clamp(22px, 4vw, 36px);
  border: 2px solid rgba(184, 135, 55, 0.45);
  border-radius: 8px;
  background: #fff3df;
  box-shadow: 0 18px 46px rgba(71, 48, 30, 0.12);
}

.terms-highlight h2 {
  color: #7a4d16;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  min-height: 50px;
  padding: 0 18px;
  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: calc(var(--announcement-height) + 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;
  }

  .site-nav .nav-pill {
    margin-block: 0;
    padding: 13px 10px;
    border-radius: 6px;
  }

  .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,
  .wc-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-keyword-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .world-cup-promo {
    grid-template-columns: 1fr;
  }

  .world-cup-promo-media {
    min-height: 300px;
  }

  .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) {
  :root {
    --announcement-height: 40px;
  }

  .site-header {
    min-height: 76px;
    padding-inline: 18px;
  }

  .brand span {
    font-size: 30px;
  }

  .brand small {
    font-size: 10px;
  }

  .site-nav {
    inset: calc(var(--announcement-height) + 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-mini-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .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,
  .wc-service-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .announcement-bar {
    --announcement-height: 40px;
    justify-content: space-between;
    gap: 10px;
    min-height: 40px;
    padding: 7px 14px;
    text-align: left;
  }

  .announcement-full {
    display: none;
  }

  .announcement-short {
    display: inline;
  }

  .announcement-bar p {
    font-size: 12px;
    line-height: 1.2;
  }

  .announcement-bar a {
    min-height: 32px;
    padding-inline: 12px;
  }

  .option-card {
    min-height: auto;
  }

  .world-cup-promo,
  .world-cup-services {
    padding-block: 42px;
  }

  .world-cup-promo-copy {
    padding: 22px;
  }

  .world-cup-promo-media {
    min-height: 260px;
  }

  .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;
  }

  .logistics-grid {
    grid-template-columns: 1fr;
  }

  .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-form-status {
  margin-top: 14px;
  background: rgba(244, 195, 107, 0.15);
  border: 1px solid rgba(244, 195, 107, 0.38);
  color: #fff3df;
  line-height: 1.5;
}

.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: " 346-281-1280";
}

.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;
  }
}

/* World Cup country design lookbook */
.wc-design-lookbook {
  overflow: visible;
  padding: 0 0 26px;
  background:
    radial-gradient(circle at 84% 8%, rgba(210, 162, 76, 0.14), transparent 34%),
    rgba(255, 252, 247, 0.88);
}

.wc-design-lookbook .section-heading {
  padding: 30px clamp(22px, 3vw, 42px) 18px;
}

.wc-design-lookbook .section-heading h2 {
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(44px, 4vw, 66px);
}

.wc-design-lookbook .section-heading p:last-child {
  max-width: 860px;
  margin: 0 auto;
  color: #66584d;
  font-size: 17px;
}

.wc-design-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 0 26px 0;
}

.wc-design-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(184, 135, 55, 0.24);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(255, 246, 236, 0.96));
  box-shadow: 0 22px 52px rgba(92, 62, 36, 0.13);
}

.wc-design-card:hover {
  border-color: rgba(184, 135, 55, 0.46);
  box-shadow: 0 28px 68px rgba(92, 62, 36, 0.18);
}

.wc-design-image {
  position: relative;
  overflow: hidden;
  background: #f7eadc;
}

.wc-design-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1122 / 1402;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease;
}

.wc-design-card:hover .wc-design-image img {
  transform: scale(1.015);
}

.wc-design-body {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.wc-design-kicker {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0b0d0c, #171611);
  color: #f4c36b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wc-design-card h3 {
  margin: 0;
  font-size: clamp(34px, 3vw, 48px);
}

.wc-design-package {
  margin: 0;
  color: #3e352e;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.wc-design-price {
  margin: 0;
  color: var(--deep-gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.wc-design-price strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  line-height: 0.95;
  text-transform: none;
}

.wc-design-body p:not(.wc-design-package):not(.wc-design-price) {
  margin: 0;
  color: #6d5e52;
  font-size: 15px;
  line-height: 1.5;
}

.wc-design-body .btn {
  width: 100%;
  margin-top: 6px;
}

.wc-design-featured {
  grid-template-columns: minmax(330px, 0.94fr) minmax(290px, 0.72fr);
  align-items: stretch;
  margin: 0 26px 24px;
  border-color: rgba(184, 135, 55, 0.52);
  background:
    radial-gradient(circle at 78% 24%, rgba(210, 162, 76, 0.14), transparent 34%),
    linear-gradient(145deg, #fffdf8 0%, #fff4e6 100%);
}

.wc-design-featured .wc-design-image img {
  height: 100%;
}

.wc-design-featured .wc-design-body {
  align-content: center;
  padding: clamp(28px, 4vw, 46px);
}

.wc-design-featured h3 {
  font-size: clamp(48px, 5vw, 76px);
}

.wc-design-featured .wc-design-package {
  font-size: 21px;
}

.wc-design-featured .wc-design-price strong {
  font-size: clamp(58px, 5vw, 82px);
}

@media (max-width: 1180px) {
  .wc-design-featured {
    grid-template-columns: 1fr;
  }

  .wc-design-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .wc-design-lookbook {
    padding-bottom: 18px;
  }

  .wc-design-lookbook .section-heading {
    padding: 28px 18px 16px;
  }

  .wc-design-lookbook .section-heading h2 {
    font-size: 38px;
  }

  .wc-design-featured,
  .wc-design-grid {
    margin-inline: 0;
    padding-inline: 0;
  }

  .wc-design-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wc-design-card {
    border-radius: 12px;
  }

  .wc-design-body {
    padding: 22px;
  }

  .wc-design-card h3,
  .wc-design-featured h3 {
    font-size: 38px;
  }

  .wc-design-featured .wc-design-package,
  .wc-design-package {
    font-size: 17px;
  }

  .wc-design-price strong,
  .wc-design-featured .wc-design-price strong {
    font-size: 50px;
  }
}

/* World Cup focused polish pass */
.world-cup-page .wc-header {
  min-height: 84px;
  padding-inline: clamp(24px, 5.6vw, 96px);
  border-bottom-color: rgba(244, 195, 107, 0.18);
  background:
    linear-gradient(180deg, rgba(6, 8, 7, 0.94), rgba(6, 8, 7, 0.74));
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
}

.world-cup-page .wc-header .brand span {
  font-size: clamp(34px, 3vw, 48px);
}

.world-cup-page .wc-header .brand small {
  color: rgba(255, 250, 244, 0.72);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.world-cup-page .wc-header .site-nav {
  gap: clamp(22px, 2.4vw, 44px);
}

.world-cup-page .wc-header .site-nav a {
  color: rgba(255, 250, 244, 0.92);
  font-size: 12px;
  font-weight: 800;
}

.world-cup-page .wc-header .header-cta {
  min-height: 52px;
  border-color: rgba(255, 242, 207, 0.28);
  background: linear-gradient(135deg, #ffd889, #b9842d);
  box-shadow:
    0 14px 36px rgba(184, 135, 55, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.wc-mockup-hero {
  grid-template-columns: minmax(540px, 0.86fr) minmax(650px, 1.04fr);
  min-height: clamp(740px, 82vh, 880px);
  padding-inline: clamp(52px, 6.4vw, 112px);
  background:
    radial-gradient(circle at 77% 22%, rgba(244, 195, 107, 0.28), transparent 28%),
    radial-gradient(circle at 86% 78%, rgba(18, 112, 72, 0.2), transparent 24%),
    linear-gradient(112deg, #040605 0%, #070908 44%, #171009 100%);
}

.wc-mockup-hero .wc-hero-bg {
  left: 0;
  right: 0;
  opacity: 0.9;
  filter: saturate(1.18) contrast(1.08) brightness(0.88);
  transform: scale(1.05);
}

.wc-mockup-hero::before {
  background:
    radial-gradient(ellipse at 20% 48%, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.68) 31%, rgba(0, 0, 0, 0.34) 56%, transparent 76%),
    linear-gradient(97deg, rgba(2, 4, 4, 0.96) 0%, rgba(2, 4, 4, 0.8) 30%, rgba(2, 4, 4, 0.44) 54%, rgba(2, 4, 4, 0.16) 73%, rgba(2, 4, 4, 0.34) 100%),
    radial-gradient(circle at 75% 30%, rgba(244, 195, 107, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.64));
}

.wc-mockup-hero::after {
  height: 190px;
  background:
    radial-gradient(ellipse at 74% 42%, rgba(244, 195, 107, 0.12), transparent 38%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.74));
}

.wc-hero-copy {
  max-width: 780px;
  padding-bottom: clamp(128px, 12vw, 190px);
}

.wc-hero-copy h1 {
  font-size: clamp(74px, 6.2vw, 108px);
  line-height: 0.9;
}

.wc-hero-copy .hero-subtitle {
  max-width: 620px;
}

.wc-hero-install {
  width: min(760px, 100%);
  min-height: 670px;
  margin-top: 44px;
  margin-bottom: 108px;
  transform: translateX(-4px);
}

.wc-hero-install::before {
  inset: 9% -1% 6% -5%;
  background:
    radial-gradient(ellipse at 56% 62%, rgba(0, 0, 0, 0.54), transparent 62%),
    radial-gradient(circle at 46% 24%, rgba(244, 195, 107, 0.16), transparent 46%);
  filter: blur(10px);
}

.wc-hero-install::after {
  right: 8%;
  bottom: 2%;
  left: 2%;
  height: 92px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.58), transparent 70%);
}

.wc-balloon-arch {
  transform: rotate(-5deg) translateY(8px);
}

.wc-balloon-arch::before {
  position: absolute;
  inset: 8% 11% 12% 2%;
  z-index: 0;
  border-radius: 48%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.34), transparent 68%);
  filter: blur(18px);
  content: "";
}

.wc-balloon-arch span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background-blend-mode: screen, multiply, normal;
  box-shadow:
    inset -22px -24px 34px rgba(0, 0, 0, 0.28),
    inset 12px 12px 24px rgba(255, 255, 255, 0.34),
    0 24px 40px rgba(0, 0, 0, 0.36);
}

.wc-balloon-arch span:nth-child(2n) {
  transform: translateY(5px) scale(0.94);
}

.wc-balloon-arch span:nth-child(5n) {
  transform: translateY(-4px) scale(1.08);
}

.wc-balloon-arch span:nth-child(n+19) {
  opacity: 0.96;
}

.wc-welcome-sign {
  right: clamp(12px, 2vw, 34px);
  bottom: 34px;
  width: min(300px, 44%);
  min-height: 418px;
  border-color: rgba(244, 195, 107, 0.7);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(17, 14, 9, 0.96), rgba(6, 7, 6, 0.99)),
    radial-gradient(circle at 50% 12%, rgba(244, 195, 107, 0.2), transparent 52%);
  box-shadow:
    0 32px 70px rgba(0, 0, 0, 0.56),
    inset 0 0 0 1px rgba(255, 250, 244, 0.08);
}

.wc-welcome-sign::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(244, 195, 107, 0.2);
  content: "";
}

.wc-welcome-sign span,
.wc-welcome-sign small {
  position: relative;
  z-index: 1;
}

.wc-welcome-sign strong {
  position: relative;
  z-index: 1;
  color: #fff7e8;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.36);
}

.wc-welcome-sign::after {
  position: relative;
  z-index: 1;
}

.wc-feature-strip {
  width: min(1360px, calc(100% - 72px));
  margin-top: -64px;
  border-radius: 18px;
  border-color: rgba(244, 195, 107, 0.38);
  background:
    radial-gradient(circle at 9% 0%, rgba(244, 195, 107, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(18, 21, 19, 0.97), rgba(6, 8, 7, 0.96));
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 250, 244, 0.08);
}

.wc-feature-strip div {
  min-height: 86px;
  padding: 20px clamp(20px, 2.5vw, 38px);
}

.wc-feature-icon {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
  border-radius: 12px;
  color: #f4c36b;
  font-size: 30px;
  text-shadow: 0 0 20px rgba(244, 195, 107, 0.3);
}

.wc-feature-strip strong {
  font-size: 16px;
}

.wc-match-section.section-shell {
  width: min(1600px, calc(100% - 52px));
}

.wc-match-grid {
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 18px;
}

.wc-match-card {
  min-height: 360px;
  padding: 28px 22px 24px;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(92, 62, 36, 0.12);
}

.wc-match-card h3 {
  min-height: 76px;
  font-size: clamp(27px, 2vw, 34px);
  line-height: 1.02;
}

.wc-match-card p {
  font-size: 16px;
  font-weight: 700;
}

.wc-flag-row {
  gap: 13px;
}

.wc-flag {
  width: min(112px, 44%);
  height: 66px;
  border-radius: 14px;
}

.wc-vote-btn,
.wc-theme-btn {
  min-height: 52px;
  font-size: 13px;
}

.wc-package-section {
  padding-top: 28px;
  padding-inline: max(24px, calc((100vw - 1660px) / 2));
}

.wc-board {
  width: min(1660px, 100%);
  grid-template-columns: minmax(300px, 350px) minmax(0, 1fr);
  align-items: start;
  gap: 30px;
}

.wc-leaderboard {
  align-self: start;
  padding: 24px 22px 20px;
}

.wc-leaderboard h2 {
  margin-bottom: 16px;
  font-size: 17px;
}

.wc-leaderboard ol {
  gap: 5px;
}

.wc-leaderboard li {
  min-height: 34px;
  padding: 5px 0;
  font-size: 13px;
}

.wc-leaderboard .rank {
  font-size: 22px;
}

.wc-leaderboard p {
  margin-top: 18px;
  padding-top: 16px;
}

.wc-design-lookbook {
  padding-bottom: 30px;
}

.wc-design-lookbook .section-heading {
  padding: 34px clamp(24px, 3vw, 44px) 22px;
}

.wc-design-featured {
  grid-template-columns: minmax(430px, 1fr) minmax(360px, 0.76fr);
  margin: 0 30px 28px;
}

.wc-design-featured .wc-design-image {
  min-height: 560px;
}

.wc-design-featured .wc-design-image img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 74% center;
}

.wc-design-featured .wc-design-body {
  padding: clamp(34px, 4vw, 54px);
}

.wc-design-grid {
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 26px;
  padding: 0 30px;
}

.wc-design-card {
  border-radius: 18px;
}

.wc-design-grid .wc-design-image {
  height: clamp(300px, 25vw, 420px);
}

.wc-design-card .wc-design-image img {
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.wc-design-body {
  gap: 11px;
  padding: 26px;
}

.wc-design-card h3 {
  font-size: clamp(38px, 3vw, 52px);
}

.wc-design-package {
  font-size: 17px;
}

.wc-design-body p:not(.wc-design-package):not(.wc-design-price) {
  font-size: 15.5px;
}

.wc-design-body .btn {
  min-height: 54px;
}

.wc-serve {
  padding-top: 22px;
  padding-bottom: 34px;
}

.wc-serve .section-heading {
  margin-bottom: 14px;
}

.wc-pills {
  gap: 12px 16px;
}

.wc-pills span {
  min-height: 46px;
  padding: 11px 28px;
}

.wc-quote-section {
  padding-top: 82px;
  padding-bottom: 92px;
}

.wc-quote-form {
  background:
    linear-gradient(180deg, rgba(17, 20, 18, 0.72), rgba(7, 9, 8, 0.62));
}

.wc-quote-form > p:not(.eyebrow) {
  color: rgba(255, 250, 244, 0.82);
}

.wc-form-grid {
  gap: 16px;
}

.wc-form-grid label {
  gap: 7px;
}

.wc-form-grid span {
  color: rgba(255, 250, 244, 0.92);
  font-weight: 800;
}

.wc-form-grid input,
.wc-form-grid select,
.wc-form-grid textarea {
  min-height: 52px;
  border-color: rgba(244, 195, 107, 0.58);
  background: rgba(255, 250, 244, 0.24);
  color: #fffdf8;
  box-shadow: inset 0 1px 0 rgba(255, 250, 244, 0.08);
}

.wc-form-grid textarea {
  min-height: 136px;
}

.wc-submit {
  width: min(390px, 100%);
  min-height: 66px;
  margin-top: 22px;
  font-size: 15px;
}

.wc-bottom-ctas {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 56px));
  padding: 38px 0 44px;
}

.wc-bottom-ctas a {
  min-height: 118px;
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(255, 246, 236, 0.98));
}

.wc-bottom-ctas a[href^="tel"] small::after {
  content: "";
}

.wc-footer {
  padding-top: 30px;
  padding-bottom: 24px;
  border-top-color: rgba(244, 195, 107, 0.2);
  background:
    radial-gradient(circle at 15% 0%, rgba(244, 195, 107, 0.12), transparent 32%),
    linear-gradient(180deg, #070a09, #030504);
}

.wc-footer .brand span {
  font-size: clamp(32px, 3vw, 46px);
}

.wc-footer p,
.wc-footer li,
.wc-footer a {
  line-height: 1.45;
}

.wc-footer .footer-note p {
  font-size: 18px;
}

@media (min-width: 1400px) {
  .wc-design-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1240px) {
  .wc-mockup-hero {
    grid-template-columns: 1fr;
    padding-inline: clamp(28px, 6vw, 64px);
  }

  .wc-hero-copy {
    padding-bottom: 36px;
  }

  .wc-hero-install {
    justify-self: center;
    margin-top: 0;
    margin-bottom: 108px;
  }

  .wc-match-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wc-board {
    grid-template-columns: 1fr;
  }

  .wc-leaderboard {
    width: min(560px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .world-cup-page .wc-header {
    min-height: 76px;
  }

  .wc-feature-strip {
    grid-template-columns: repeat(2, 1fr);
    width: min(100% - 32px, 720px);
    margin-top: -48px;
  }

  .wc-feature-strip div:nth-child(2) {
    border-right: 0;
  }

  .wc-feature-strip div {
    min-height: 82px;
  }

  .wc-design-featured {
    grid-template-columns: 1fr;
  }

  .wc-design-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .wc-mockup-hero {
    min-height: auto;
    padding-inline: 20px;
    padding-top: 18px;
  }

  .wc-mockup-hero::before {
    background:
      linear-gradient(180deg, rgba(4, 6, 5, 0.96) 0%, rgba(4, 6, 5, 0.78) 45%, rgba(4, 6, 5, 0.94) 100%),
      radial-gradient(circle at 72% 56%, rgba(244, 195, 107, 0.16), transparent 38%);
  }

  .wc-hero-copy {
    padding-top: 42px;
    padding-bottom: 28px;
  }

  .wc-hero-copy h1 {
    font-size: clamp(54px, 16vw, 72px);
  }

  .wc-hero-install {
    width: min(520px, 100%);
    min-height: 470px;
    margin-bottom: 82px;
  }

  .wc-balloon-arch span {
    width: clamp(56px, 16vw, 82px);
  }

  .wc-balloon-arch span:nth-child(n+19) {
    display: none;
  }

  .wc-welcome-sign {
    right: 4%;
    bottom: 30px;
    width: min(210px, 48%);
    min-height: 300px;
  }

  .wc-feature-strip {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 420px);
    margin-top: -42px;
  }

  .wc-feature-strip div,
  .wc-feature-strip div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 244, 0.1);
  }

  .wc-feature-strip div:last-child {
    border-bottom: 0;
  }

  .wc-match-section.section-shell,
  .world-cup-page .section-shell {
    width: min(100% - 28px, 1180px);
  }

  .wc-match-grid {
    grid-template-columns: 1fr;
  }

  .wc-match-card {
    min-height: auto;
  }

  .wc-package-section {
    padding-inline: 14px;
  }

  .wc-design-featured,
  .wc-design-grid {
    margin-inline: 0;
    padding-inline: 0;
  }

  .wc-design-grid .wc-design-image,
  .wc-design-featured .wc-design-image {
    height: auto;
    min-height: 0;
  }

  .wc-design-card .wc-design-image img,
  .wc-design-featured .wc-design-image img {
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
  }

  .wc-design-body {
    padding: 22px;
  }

  .wc-pills span {
    width: 100%;
  }

  .wc-quote-section {
    padding-top: 62px;
    padding-bottom: 70px;
  }

  .wc-bottom-ctas {
    width: 100%;
    padding: 30px 14px 36px;
  }
}

/* World Cup publish polish: keep lookbook cards wide and uncropped */
.world-cup-page .wc-header .brand span {
  font-size: clamp(38px, 3.3vw, 54px);
}

.wc-mockup-hero .wc-hero-bg {
  opacity: 0.84;
  filter: saturate(1.15) contrast(1.12) brightness(0.82);
}

.wc-balloon-arch {
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.42));
  opacity: 0.94;
}

.wc-balloon-arch span {
  box-shadow:
    inset -24px -26px 36px rgba(0, 0, 0, 0.34),
    inset 13px 13px 24px rgba(255, 255, 255, 0.36),
    0 26px 42px rgba(0, 0, 0, 0.4);
}

.wc-welcome-sign {
  box-shadow:
    0 36px 78px rgba(0, 0, 0, 0.62),
    inset 0 0 0 1px rgba(255, 250, 244, 0.1);
}

.wc-package-section {
  padding-inline: max(22px, calc((100vw - 1740px) / 2));
}

.wc-board {
  width: min(1740px, 100%);
  grid-template-columns: minmax(280px, 330px) minmax(0, 1fr);
  gap: 34px;
}

.wc-design-lookbook {
  overflow: visible;
}

.wc-design-featured,
.wc-design-grid {
  overflow: visible;
}

.wc-design-featured {
  grid-template-columns: minmax(440px, 0.9fr) minmax(340px, 0.65fr);
  margin-inline: clamp(24px, 3vw, 42px);
}

.wc-design-grid {
  grid-template-columns: repeat(2, minmax(390px, 1fr));
  gap: 30px;
  padding-inline: clamp(24px, 3vw, 42px);
}

.wc-design-image {
  background:
    linear-gradient(180deg, #fff6eb, #f4e4d4);
}

.wc-design-featured .wc-design-image,
.wc-design-grid .wc-design-image {
  height: auto;
  min-height: 0;
  aspect-ratio: 1122 / 1402;
}

.wc-design-featured .wc-design-image img,
.wc-design-card .wc-design-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.wc-design-featured .wc-design-body {
  align-content: center;
  padding: clamp(34px, 3.8vw, 56px);
}

.wc-design-body {
  padding: 28px;
}

.wc-design-body p:not(.wc-design-package):not(.wc-design-price) {
  max-width: 54ch;
}

.wc-form-grid span {
  color: #fff8ea;
}

.wc-form-grid input,
.wc-form-grid select,
.wc-form-grid textarea {
  border-color: rgba(244, 195, 107, 0.66);
  background: rgba(255, 250, 244, 0.28);
}

@media (min-width: 1400px) {
  .wc-design-grid {
    grid-template-columns: repeat(2, minmax(430px, 1fr));
  }
}

@media (max-width: 1240px) {
  .wc-board {
    grid-template-columns: 1fr;
  }

  .wc-design-grid {
    grid-template-columns: repeat(2, minmax(320px, 1fr));
  }
}

@media (max-width: 820px) {
  .wc-design-featured,
  .wc-design-grid {
    margin-inline: 0;
    padding-inline: 0;
  }

  .wc-design-featured,
  .wc-design-grid {
    grid-template-columns: 1fr;
  }
}

/* World Cup final optimization: NRG hero image and shorter lookbook */
.world-cup-page .wc-header {
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
}

.wc-mockup-hero {
  background:
    radial-gradient(circle at 74% 24%, rgba(244, 195, 107, 0.24), transparent 30%),
    linear-gradient(112deg, #030504 0%, #070908 48%, #15100a 100%);
}

.wc-mockup-hero .wc-hero-bg {
  left: 0;
  right: 0;
  background-image:
    linear-gradient(90deg, rgba(2, 4, 4, 0.34), rgba(2, 4, 4, 0.08) 50%, rgba(2, 4, 4, 0.2)),
    image-set(
      url("screenshots/hero-nrg-stadium-2200.webp?v=20260612") type("image/webp"),
      url("screenshots/hero-nrg-stadium.jpg?v=20260612") type("image/jpeg")
    );
  background-size: cover;
  background-position: center 48%;
  opacity: 0.86;
  filter: saturate(1.08) contrast(1.1) brightness(0.78);
  transform: scale(1.02);
}

.wc-mockup-hero::before {
  background:
    radial-gradient(ellipse at 20% 47%, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 31%, rgba(0, 0, 0, 0.42) 58%, transparent 78%),
    linear-gradient(100deg, rgba(2, 4, 4, 0.97) 0%, rgba(2, 4, 4, 0.82) 32%, rgba(2, 4, 4, 0.44) 56%, rgba(2, 4, 4, 0.2) 76%, rgba(2, 4, 4, 0.46) 100%),
    radial-gradient(circle at 76% 32%, rgba(244, 195, 107, 0.18), transparent 31%);
}

.wc-mockup-hero::after {
  background:
    radial-gradient(ellipse at 73% 46%, rgba(244, 195, 107, 0.1), transparent 42%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.wc-balloon-arch {
  opacity: 0.9;
  filter:
    drop-shadow(0 38px 46px rgba(0, 0, 0, 0.46))
    drop-shadow(0 0 28px rgba(244, 195, 107, 0.08));
}

.wc-balloon-arch span {
  box-shadow:
    inset -26px -28px 38px rgba(0, 0, 0, 0.36),
    inset 12px 12px 24px rgba(255, 255, 255, 0.34),
    0 28px 44px rgba(0, 0, 0, 0.42);
}

.wc-welcome-sign {
  background:
    linear-gradient(180deg, rgba(17, 14, 9, 0.94), rgba(4, 6, 5, 0.98)),
    radial-gradient(circle at 50% 14%, rgba(244, 195, 107, 0.18), transparent 54%);
}

.wc-feature-strip {
  margin-top: -60px;
}

.wc-feature-strip div {
  align-items: center;
  min-height: 82px;
}

.wc-package-section {
  padding-inline: max(20px, calc((100vw - 1840px) / 2));
}

.wc-board {
  width: min(1840px, 100%);
  grid-template-columns: minmax(260px, 310px) minmax(0, 1fr);
  gap: 26px;
}

.wc-leaderboard {
  padding: 22px 20px 18px;
}

.wc-leaderboard li {
  min-height: 31px;
  font-size: 12.5px;
}

.wc-leaderboard p {
  margin-top: 14px;
  padding-top: 14px;
}

.wc-design-lookbook .section-heading {
  padding-bottom: 18px;
}

.wc-design-featured {
  grid-template-columns: minmax(440px, 0.82fr) minmax(320px, 0.58fr);
  margin-inline: clamp(22px, 2.4vw, 34px);
  margin-bottom: 24px;
}

.wc-design-featured .wc-design-body {
  padding: clamp(30px, 3.2vw, 46px);
}

.wc-design-featured h3 {
  font-size: clamp(48px, 4.2vw, 68px);
}

.wc-design-grid {
  grid-template-columns: repeat(3, minmax(265px, 1fr));
  gap: 24px;
  padding-inline: clamp(22px, 2.4vw, 34px);
}

.wc-design-body {
  gap: 8px;
  padding: 22px;
}

.wc-design-card h3 {
  font-size: clamp(32px, 2.4vw, 44px);
}

.wc-design-package {
  font-size: 15px;
}

.wc-design-price strong {
  font-size: 38px;
}

.wc-design-body p:not(.wc-design-package):not(.wc-design-price) {
  font-size: 14px;
  line-height: 1.42;
}

.wc-design-body .btn {
  min-height: 48px;
  margin-top: 4px;
}

@media (max-width: 1320px) {
  .wc-board {
    grid-template-columns: 1fr;
  }

  .wc-leaderboard {
    width: min(620px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 1120px) {
  .wc-design-grid {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
  }
}

@media (max-width: 900px) {
  .wc-design-lookbook,
  .wc-design-lookbook .section-heading,
  .wc-design-featured,
  .wc-design-grid {
    width: 100%;
    max-width: 100%;
  }

  .wc-design-featured,
  .wc-design-grid {
    grid-template-columns: 1fr;
    margin-inline: 0;
    padding-inline: 0;
  }
}

@media (max-width: 820px) {
  .wc-mockup-hero .wc-hero-bg {
    background-position: center top;
    opacity: 0.68;
  }

  .wc-design-grid {
    grid-template-columns: 1fr;
  }
}

/* World Cup targeted polish: football focal, product-first cards, WhatsApp icon */
.wc-football-focal {
  position: absolute;
  right: clamp(18px, 2.8vw, 52px);
  bottom: clamp(44px, 7vw, 92px);
  z-index: 4;
  display: grid;
  place-items: center;
  width: min(310px, 43%);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 250, 244, 0.1), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(244, 195, 107, 0.22), transparent 66%);
  filter:
    drop-shadow(0 34px 46px rgba(0, 0, 0, 0.54))
    drop-shadow(0 0 34px rgba(244, 195, 107, 0.13));
}

.wc-football-focal::before {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(244, 195, 107, 0.26);
  border-radius: inherit;
  background: radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.2), transparent 30%);
  content: "";
}

.wc-football-focal::after {
  position: absolute;
  right: 13%;
  bottom: -4%;
  left: 13%;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.52), transparent 72%);
  filter: blur(2px);
  content: "";
}

.wc-design-featured .wc-design-kicker {
  margin-bottom: 4px;
}

.wc-design-featured h3,
.wc-design-card h3 {
  line-height: 1;
  text-wrap: balance;
}

.wc-design-featured h3 {
  font-size: clamp(44px, 4vw, 64px);
}

.wc-design-card h3 {
  font-size: clamp(28px, 2.1vw, 38px);
}

.wc-design-package {
  color: var(--deep-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wc-design-price {
  margin-top: 2px;
}

.wc-bottom-ctas .wc-whatsapp-icon {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.22);
}

.wc-whatsapp-icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.wc-whatsapp-icon svg path:first-child {
  fill: #25d366;
  stroke: #fff;
  stroke-width: 1.8;
}

.wc-whatsapp-icon svg path:last-child {
  fill: #fff;
}

@media (max-width: 760px) {
  .wc-football-focal {
    right: 4%;
    bottom: 34px;
    width: min(220px, 50%);
  }

}

/* World Cup hero real FIFA 2026 ball asset */
.wc-football-focal {
  width: clamp(210px, 22vw, 310px);
  height: clamp(210px, 22vw, 310px);
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle at 50% 54%, rgba(244, 195, 107, 0.22), transparent 67%);
}

.wc-football-focal::before {
  inset: 6%;
  border-color: rgba(244, 195, 107, 0.32);
  background:
    radial-gradient(circle at 33% 21%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(255, 250, 244, 0.08), rgba(6, 8, 7, 0.02));
}

.wc-football-focal::after {
  right: 11%;
  bottom: 1%;
  left: 11%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.62), transparent 72%);
}

.wc-hero-ball-image {
  position: relative;
  z-index: 3;
  display: block;
  width: 76%;
  height: 76%;
  border: 7px solid rgba(255, 250, 244, 0.9);
  border-radius: 50%;
  background: #fffaf4;
  object-fit: cover;
  object-position: center;
  transform: rotate(-8deg);
  box-shadow:
    0 32px 62px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(244, 195, 107, 0.28),
    inset 0 0 18px rgba(0, 0, 0, 0.2);
}

@media (max-width: 760px) {
  .wc-football-focal {
    width: clamp(150px, 48vw, 220px);
    height: clamp(150px, 48vw, 220px);
  }

  .wc-hero-ball-image {
    width: 78%;
    height: 78%;
    border-width: 5px;
  }
}

/* Final hero-only visibility and layering fix */
.wc-mockup-hero {
  isolation: isolate;
  background: #050706;
}

.wc-mockup-hero .wc-hero-bg {
  z-index: 0 !important;
  background-image: image-set(
    url("screenshots/hero-nrg-stadium-2200.webp?v=20260612") type("image/webp"),
    url("screenshots/hero-nrg-stadium.jpg?v=20260612") type("image/jpeg")
  ) !important;
  background-size: cover !important;
  background-position: center 48% !important;
  opacity: 1 !important;
  filter: saturate(1.08) contrast(1.04) brightness(1.02) !important;
  transform: scale(1.01) !important;
}

.wc-mockup-hero::before {
  z-index: 1 !important;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 4, 4, 0.9) 0%, rgba(2, 4, 4, 0.78) 30%, rgba(2, 4, 4, 0.44) 52%, rgba(2, 4, 4, 0.2) 72%, rgba(2, 4, 4, 0.3) 100%) !important,
    radial-gradient(circle at 72% 35%, rgba(244, 195, 107, 0.12), transparent 34%) !important;
}

.wc-mockup-hero::after {
  z-index: 1 !important;
  pointer-events: none;
  height: 150px !important;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.38)) !important;
}

.wc-hero-copy {
  z-index: 3 !important;
}

.wc-hero-install {
  z-index: 4 !important;
  overflow: visible;
}

.wc-balloon-arch {
  z-index: 4 !important;
  opacity: 0.9;
}

.wc-football-focal {
  top: 51% !important;
  right: clamp(56px, 8vw, 138px) !important;
  bottom: auto !important;
  z-index: 8 !important;
  width: clamp(190px, 18vw, 270px) !important;
  height: clamp(190px, 18vw, 270px) !important;
  overflow: visible;
  transform: translateY(-46%) !important;
}

.wc-football-focal::before {
  z-index: 0;
}

.wc-football-focal::after {
  z-index: -1;
}

.wc-hero-ball-image {
  z-index: 3 !important;
  width: 84% !important;
  height: 84% !important;
  border-radius: 50% !important;
  clip-path: circle(50% at 50% 50%);
  object-fit: cover !important;
  object-position: center !important;
  box-shadow:
    0 34px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(244, 195, 107, 0.32),
    0 0 34px rgba(244, 195, 107, 0.16) !important;
}

@media (max-width: 760px) {
  .wc-mockup-hero .wc-hero-bg {
    background-position: center top !important;
    filter: saturate(1.04) contrast(1.04) brightness(0.92) !important;
  }

  .wc-mockup-hero::before {
    background:
      linear-gradient(180deg, rgba(3, 5, 5, 0.9) 0%, rgba(3, 5, 5, 0.58) 44%, rgba(3, 5, 5, 0.76) 100%) !important;
  }

  .wc-football-focal {
    top: 49% !important;
    right: 5% !important;
    width: clamp(145px, 44vw, 205px) !important;
    height: clamp(145px, 44vw, 205px) !important;
    transform: translateY(-36%) !important;
  }
}
/* Phase 1B homepage refresh */
:root {
  --premium-ivory: #fffaf4;
  --premium-cream: #f7efe5;
  --premium-champagne: #ead8bf;
  --premium-linen: #f1e3d3;
  --premium-gold: #b88737;
  --premium-sage: #66735f;
  --premium-ink: #2d2722;
  --premium-wine: #6f3d3c;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  letter-spacing: 0;
}

.premium-announcement {
  background: linear-gradient(90deg, #2d2722, #60483a 52%, #8c6a45);
  color: #fffaf4;
}

.premium-announcement a {
  color: #fffaf4;
  border-color: rgba(255, 250, 244, 0.5);
  background: rgba(255, 250, 244, 0.12);
}

.premium-header {
  background: rgba(255, 250, 244, 0.94);
  backdrop-filter: blur(18px);
}

.premium-header .brand span,
.premium-footer .brand span {
  letter-spacing: 0;
}

.site-nav .nav-future {
  color: rgba(80, 68, 59, 0.62);
  cursor: default;
}

.site-nav .nav-future::after {
  display: none;
}

.premium-hero {
  min-height: min(760px, calc(100vh - var(--announcement-height)));
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  padding-top: clamp(72px, 9vw, 128px);
  background:
    radial-gradient(circle at 13% 16%, rgba(184, 135, 55, 0.13), transparent 28%),
    linear-gradient(135deg, #fffaf4 0%, #f8efe4 52%, #efe0cf 100%);
}

.premium-hero .hero-copy {
  max-width: 680px;
}

.premium-hero h1 {
  max-width: 760px;
  color: var(--premium-ink);
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.premium-hero .hero-subtitle {
  max-width: 560px;
  color: #4f433a;
  font-size: clamp(1rem, 1.7vw, 1.24rem);
}

.premium-hero .hero-media {
  min-height: clamp(360px, 55vw, 620px);
  border: 1px solid rgba(184, 135, 55, 0.22);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(71, 48, 30, 0.18);
}

.premium-hero .hero-media::before {
  background: linear-gradient(90deg, rgba(255, 250, 244, 0.2), transparent 46%);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.proof-strip div {
  min-height: 126px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 252, 247, 0.94);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 8px;
  color: var(--premium-ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1;
}

.proof-strip span {
  color: var(--muted);
  line-height: 1.65;
}

.premium-section,
.premium-gallery,
.premium-reviews,
.premium-contact {
  padding-top: clamp(72px, 8vw, 118px);
  padding-bottom: clamp(72px, 8vw, 118px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(260px, 0.44fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: end;
}

.split-heading > p,
.section-heading > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.premium-card-grid {
  align-items: stretch;
}

.premium-card-grid .package-card {
  background: rgba(255, 252, 247, 0.94);
}

.premium-card-grid .package-card.featured-package {
  border-color: rgba(184, 135, 55, 0.58);
  box-shadow: 0 24px 68px rgba(92, 62, 36, 0.15);
}

.premium-card-grid .package-body {
  gap: 14px;
}

.premium-card-grid .package-body ul {
  margin-top: 4px;
}

.premium-gallery {
  background: linear-gradient(180deg, #fffaf4 0%, #f5eadf 100%);
}

.premium-gallery .filter-row {
  margin-top: clamp(22px, 3vw, 34px);
  justify-content: flex-start;
}

.portfolio-grid {
  margin-top: clamp(26px, 4vw, 46px);
}

.project-card figcaption {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-height: 112px;
  padding: 20px;
  background: linear-gradient(180deg, transparent, rgba(43, 34, 27, 0.9));
}

.project-card figcaption strong {
  color: #fffaf4;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1;
}

.project-card figcaption small {
  color: rgba(255, 250, 244, 0.78);
  font-size: 0.86rem;
  line-height: 1.45;
  text-transform: uppercase;
}

.project-card figcaption a {
  margin-top: 4px;
  color: #ffe7af;
  font-weight: 700;
}

.premium-service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(28px, 4vw, 48px);
}

.service-card {
  display: flex;
  min-height: 158px;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 252, 247, 0.96), rgba(245, 234, 222, 0.82)),
    #fffaf4;
  color: inherit;
  box-shadow: 0 12px 34px rgba(92, 62, 36, 0.06);
}

.service-card strong {
  color: var(--premium-ink);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1;
}

.service-card span {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(184, 135, 55, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(92, 62, 36, 0.12);
}

.premium-process {
  background:
    linear-gradient(135deg, rgba(45, 39, 34, 0.93), rgba(84, 62, 48, 0.91)),
    #2d2722;
  color: #fffaf4;
}

.premium-process .eyebrow,
.premium-process h2,
.premium-process h3 {
  color: #fffaf4;
}

.premium-process .process-grid article {
  background: rgba(255, 250, 244, 0.1);
  color: rgba(255, 250, 244, 0.86);
}

.premium-process .process-grid span {
  background: var(--premium-gold);
}

.premium-reviews {
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 0.56fr);
}

.premium-reviews .testimonials > h3 {
  margin: 0 0 22px;
  color: var(--premium-ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 0.98;
}

.premium-reviews .testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.premium-contact {
  position: relative;
  grid-template-columns: minmax(280px, 0.42fr) minmax(420px, 0.58fr);
  gap: clamp(28px, 4.8vw, 68px);
  align-items: start;
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: clamp(64px, 7vw, 96px);
  background:
    radial-gradient(circle at 82% 12%, rgba(102, 115, 95, 0.12), transparent 28%),
    linear-gradient(180deg, #fffaf4, #f7efe5);
}

.premium-contact .anchor-alias {
  position: absolute;
  top: 0;
  left: 0;
}

.premium-contact .contact-copy {
  position: relative;
  top: auto;
  max-width: 520px;
  padding: clamp(18px, 2.4vw, 28px) 0;
}

.premium-contact .quote-form {
  align-self: start;
  max-width: none;
  border: 1px solid rgba(184, 135, 55, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 252, 247, 0.98), rgba(246, 236, 224, 0.92)),
    #fffaf4;
  box-shadow: 0 26px 74px rgba(92, 62, 36, 0.13);
}

.premium-final-cta {
  overflow: hidden;
}

.premium-final-cta .cta-content h2 {
  max-width: 820px;
}

.premium-footer {
  grid-template-columns: minmax(280px, 1.25fr) minmax(150px, 0.7fr) minmax(180px, 0.8fr) minmax(220px, 0.8fr);
  background: #2d2722;
}

.premium-footer,
.premium-footer a,
.premium-footer h3,
.premium-footer .brand span {
  color: #fffaf4;
}

.premium-footer p,
.premium-footer li,
.premium-footer small,
.future-note {
  color: rgba(255, 250, 244, 0.68);
}

.future-note {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.78rem;
}

@media (max-width: 1120px) {
  .premium-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .premium-hero .hero-media {
    min-height: clamp(320px, 58vw, 560px);
  }

  .proof-strip,
  .split-heading,
  .premium-reviews {
    grid-template-columns: 1fr;
  }

  .premium-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-contact {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .premium-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-contact .contact-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .premium-hero {
    padding-top: 52px;
  }

  .premium-hero h1 {
    font-size: clamp(2.72rem, 17vw, 4.1rem);
  }

  .premium-hero .button-row,
  .premium-final-cta .button-row {
    align-items: stretch;
  }

  .proof-strip,
  .premium-service-grid,
  .premium-reviews .testimonial-grid,
  .premium-footer {
    grid-template-columns: 1fr;
  }

  .proof-strip div,
  .service-card {
    min-height: 0;
  }

  .project-card figcaption {
    min-height: 96px;
    padding: 16px;
  }

  .project-card figcaption strong {
    font-size: 1.2rem;
  }

  .premium-section,
  .premium-gallery,
  .premium-reviews,
  .premium-contact {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .premium-contact .contact-copy {
    padding: 0;
  }

  .premium-contact .quote-form {
    width: 100%;
  }
}

/* Phase 2 static gallery frontend */
.gallery-page {
  background: var(--premium-ivory);
}

.gallery-page .site-nav a[aria-current="page"] {
  color: var(--deep-gold);
}

.gallery-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  min-height: min(720px, calc(100vh - var(--announcement-height)));
  padding-top: clamp(72px, 9vw, 124px);
  background:
    radial-gradient(circle at 82% 12%, rgba(184, 135, 55, 0.13), transparent 26%),
    linear-gradient(135deg, #fffaf4 0%, #f7efe5 52%, #ead8bf 100%);
}

.gallery-hero-copy {
  max-width: 680px;
}

.gallery-hero h1 {
  margin: 0;
  color: var(--premium-ink);
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.92;
}

.gallery-hero p:not(.eyebrow) {
  max-width: 620px;
  color: #4f433a;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

.gallery-hero-media {
  overflow: hidden;
  border: 1px solid rgba(184, 135, 55, 0.24);
  border-radius: 8px;
  box-shadow: 0 30px 88px rgba(71, 48, 30, 0.17);
}

.gallery-hero-media img {
  display: block;
  width: 100%;
  min-height: clamp(380px, 52vw, 620px);
  object-fit: cover;
}

.featured-projects,
.gallery-browser {
  padding-top: clamp(72px, 8vw, 116px);
  padding-bottom: clamp(72px, 8vw, 116px);
}

.featured-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(28px, 4vw, 50px);
}

.featured-project {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 247, 0.94);
  box-shadow: 0 18px 48px rgba(92, 62, 36, 0.08);
}

.featured-project img {
  display: block;
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.featured-project div {
  padding: clamp(20px, 2.5vw, 28px);
}

.featured-project h3 {
  margin: 0;
  color: var(--premium-ink);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
  line-height: 1;
}

.featured-project p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.featured-project a,
.gallery-project-card a,
.text-button {
  color: var(--deep-gold);
  font-weight: 800;
}

.gallery-browser {
  background: linear-gradient(180deg, #fffaf4 0%, #f6ecdf 100%);
}

.gallery-controls {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(210px, 0.7fr));
  gap: 14px;
  margin-top: clamp(24px, 4vw, 42px);
}

.gallery-controls label {
  display: grid;
  gap: 8px;
}

.gallery-controls span {
  color: var(--deep-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gallery-controls input,
.gallery-controls select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf6;
  color: var(--premium-ink);
  font: inherit;
  padding: 0 14px;
}

.gallery-controls input:focus,
.gallery-controls select:focus {
  border-color: var(--soft-gold);
  box-shadow: 0 0 0 4px rgba(184, 135, 55, 0.13);
  outline: none;
}

.gallery-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.3vw, 28px);
  margin-top: clamp(28px, 4vw, 48px);
}

.gallery-project-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 247, 0.96);
  box-shadow: 0 18px 46px rgba(92, 62, 36, 0.09);
}

.gallery-project-card[hidden] {
  display: none;
}

.gallery-project-card img {
  display: block;
  width: 100%;
  height: clamp(260px, 24vw, 330px);
  aspect-ratio: 4 / 3;
  background: #f0e3d2;
  object-fit: cover;
  object-position: center;
}

.gallery-project-card img.image-focus-left {
  object-position: 28% 50%;
}

.gallery-project-card img.image-focus-right {
  object-position: 72% 50%;
}

.gallery-project-card img.image-focus-center {
  object-position: 50% 50%;
}

.gallery-project-card img.image-poster {
  object-fit: contain;
  object-position: center;
}

.project-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 13px;
  padding: clamp(20px, 2.2vw, 26px);
}

.project-category {
  margin: 0;
  color: var(--deep-gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gallery-project-card h3 {
  margin: 0;
  color: var(--premium-ink);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.3vw, 2.35rem);
  line-height: 1;
}

.gallery-project-card p:not(.project-category) {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-list span {
  border: 1px solid rgba(184, 135, 55, 0.25);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.78);
  color: #6e5947;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 10px;
}

.text-button {
  align-self: flex-start;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.gallery-empty {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 247, 0.92);
  color: var(--muted);
  padding: 22px;
  text-align: center;
}

.gallery-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(28, 22, 18, 0.78);
  padding: clamp(16px, 4vw, 40px);
}

.gallery-modal.is-open {
  display: flex;
}

.gallery-modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
  width: min(1120px, 100%);
  max-height: min(780px, 92vh);
  overflow: auto;
  border-radius: 8px;
  background: #fffaf4;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.gallery-modal-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.gallery-modal-panel img.image-poster {
  background: #f0e3d2;
  object-fit: contain;
}

.gallery-modal-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
}

.gallery-modal-copy h2 {
  margin: 0;
  color: var(--premium-ink);
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.95;
}

.gallery-modal-copy p:not(.project-category) {
  color: var(--muted);
  line-height: 1.75;
}

.gallery-modal-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 244, 0.6);
  border-radius: 999px;
  background: rgba(45, 39, 34, 0.72);
  color: #fffaf4;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.gallery-final-cta {
  overflow: hidden;
}

@media (max-width: 1120px) {
  .gallery-hero,
  .featured-project-grid,
  .gallery-project-grid,
  .gallery-modal-panel {
    grid-template-columns: 1fr;
  }

  .gallery-controls {
    grid-template-columns: 1fr;
  }

  .gallery-modal-panel img {
    min-height: 320px;
    max-height: 52vh;
  }
}

@media (max-width: 760px) {
  .gallery-hero {
    min-height: 0;
    padding-top: 52px;
  }

  .gallery-hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.1rem);
  }

  .gallery-hero .button-row,
  .gallery-final-cta .button-row {
    align-items: stretch;
  }

  .featured-projects,
  .gallery-browser {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .gallery-modal {
    align-items: stretch;
    padding: 10px;
  }

  .gallery-modal-panel {
    max-height: 100%;
  }
}

/* Approved public gallery assets */
.gallery-real-birthday {
  background-image: url("/assets/gallery/birthday-pink-gold-backdrop-01.webp") !important;
  background-position: center;
  background-size: cover !important;
}

.gallery-real-baby {
  background-image: url("/assets/gallery/baby-shower-neutral-backdrop-01.webp") !important;
  background-position: center;
  background-size: cover !important;
}

.gallery-real-wedding {
  background-image: url("/assets/gallery/wedding-engagement-white-gold-arch-01.webp") !important;
  background-position: center;
  background-size: cover !important;
}

.gallery-real-kids {
  background-image: url("/assets/gallery/kids-theme-pastel-birthday-01.webp") !important;
  background-position: center;
  background-size: cover !important;
}

.gallery-real-marquee {
  background-image: url("/assets/gallery/marquee-number-10-gold-black-01.webp") !important;
  background-position: center 42%;
  background-size: cover !important;
}


/* Phase 2.8 emergency gallery/home portfolio layout fix */
.homepage-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(26px, 4vw, 44px);
}

.homepage-preview-card {
  overflow: hidden;
  border: 1px solid rgba(184, 135, 55, 0.22);
  border-radius: 8px;
  background: rgba(255, 252, 247, 0.96);
  box-shadow: 0 16px 44px rgba(92, 62, 36, 0.08);
}

.homepage-preview-card a {
  display: grid;
  min-height: 100%;
  color: inherit;
}

.homepage-preview-card img {
  display: block;
  width: 100%;
  height: clamp(260px, 22vw, 330px);
  object-fit: cover;
  object-position: center;
}

.homepage-preview-card span,
.homepage-preview-card strong {
  margin-inline: clamp(18px, 2vw, 24px);
}

.homepage-preview-card span {
  margin-top: 20px;
  color: var(--deep-gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.homepage-preview-card strong {
  margin-top: 7px;
  margin-bottom: 22px;
  color: var(--premium-ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  line-height: 1;
}

.portfolio-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 4vw, 38px);
}

.gallery-hero-simple {
  display: flex;
  min-height: 0;
  align-items: center;
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(48px, 6vw, 76px);
}

.gallery-hero-simple .gallery-hero-copy {
  max-width: 860px;
}

.gallery-hero-simple h1 {
  max-width: 760px;
}

.gallery-browser-heading {
  max-width: 760px;
}

.gallery-filter-panel {
  display: grid;
  gap: clamp(16px, 2.2vw, 22px);
  margin-top: clamp(24px, 4vw, 38px);
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(184, 135, 55, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.96), rgba(249, 240, 229, 0.9));
  box-shadow: 0 16px 46px rgba(92, 62, 36, 0.07);
}

.gallery-search-control {
  display: grid;
  gap: 8px;
  max-width: 520px;
}

.gallery-search-control label,
.chip-group-label {
  color: var(--deep-gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-search-control input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf6;
  color: var(--premium-ink);
  font: inherit;
  padding: 0 14px;
}

.gallery-search-control input:focus {
  border-color: var(--soft-gold);
  box-shadow: 0 0 0 4px rgba(184, 135, 55, 0.13);
  outline: none;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.chip-group-label {
  width: 100%;
  margin: 0 0 2px;
}

.filter-chip {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(184, 135, 55, 0.28);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.96);
  color: #5d4a3c;
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0 16px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.filter-chip:hover,
.filter-chip:focus-visible {
  border-color: var(--deep-gold);
  box-shadow: 0 0 0 4px rgba(184, 135, 55, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.filter-chip.is-active {
  border-color: var(--premium-gold);
  background: linear-gradient(135deg, var(--premium-ink), #5b4637);
  color: #fffaf4;
  box-shadow: 0 10px 22px rgba(58, 42, 31, 0.14);
}

.gallery-project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 26px);
}

.gallery-project-card img {
  height: clamp(250px, 22vw, 315px);
  object-fit: cover;
}

.gallery-project-card .tag-list span:nth-child(n+4) {
  display: none;
}

.gallery-project-card .text-button,
.gallery-project-card a {
  display: inline-flex;
  align-self: flex-start;
  min-height: 34px;
  align-items: center;
}

.gallery-modal {
  padding: clamp(16px, 3vw, 28px);
}

.gallery-modal-panel {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  width: min(1020px, 100%);
  max-height: 85vh;
}

.gallery-modal-panel img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 85vh;
  object-fit: cover;
}

.gallery-modal-copy {
  justify-content: center;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
}

.gallery-modal-copy h2 {
  font-size: clamp(2rem, 3.2vw, 3.25rem);
}

.gallery-modal-close {
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-color: rgba(255, 250, 244, 0.7);
}

@media (max-width: 1120px) {
  .homepage-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-modal-panel {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .gallery-modal-panel img {
    width: 100%;
    max-height: 44vh;
  }
}

@media (max-width: 760px) {
  .homepage-preview-grid,
  .gallery-project-grid {
    grid-template-columns: 1fr;
  }

  .homepage-preview-card img,
  .gallery-project-card img {
    height: clamp(230px, 72vw, 310px);
  }

  .gallery-hero-simple {
    padding-top: 48px;
    padding-bottom: 46px;
  }

  .gallery-filter-panel {
    padding: 16px;
  }

  .filter-chip {
    min-height: 44px;
    font-size: 0.9rem;
    padding: 0 13px;
  }

  .portfolio-preview-actions,
  .portfolio-preview-actions .btn {
    width: 100%;
  }

  .gallery-modal {
    align-items: center;
    padding: 12px;
  }

  .gallery-modal-panel {
    max-height: 88vh;
  }

  .gallery-modal-copy {
    padding: 20px;
  }
}

@media (max-width: 900px) {
  .world-cup-page .wc-footer.site-footer {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    padding-inline: clamp(18px, 5vw, 36px);
  }

  .world-cup-page .wc-footer > * {
    min-width: 0;
  }

  .world-cup-page .wc-footer .footer-note,
  .world-cup-page .wc-footer .footer-note ul,
  .world-cup-page .wc-footer .footer-note p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-height: 430px) and (orientation: landscape) {
  .gallery-modal {
    align-items: stretch;
    padding: 10px;
  }

  .gallery-modal-panel {
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
  }

  .gallery-modal-panel img {
    max-height: 34vh;
  }

  .gallery-modal-copy {
    gap: 10px;
    padding: 16px 20px 18px;
  }
}
