@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap");
:root {
  --ink: #071122;
  --surface: #0e1e37;
  --raised: #172b49;
  --line: #304c6d;
  --cream: #f1efe8;
  --muted: #b1c0d2;
  --blue: #76a9ee;
  --silver: #d5e2f2;
  --pink: #f32b90;
  --lime: #cbe853;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
}
body:has(dialog[open]) {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  line-height: 1.02;
  letter-spacing: -0.015em;
  font-weight: 600;
}
h1 {
  font-size: clamp(66px, 7.3vw, 112px);
}
h2 {
  font-size: clamp(46px, 5vw, 76px);
}
h3 {
  font-size: 32px;
}
h1 em,
h2 em {
  font-style: normal;
  color: var(--blue);
}
p {
  color: var(--muted);
}
.wrap {
  width: min(1240px, calc(100% - 80px));
  margin: auto;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.6;
}
.section {
  padding-top: 110px;
  padding-bottom: 110px;
}
.masthead {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  gap: 30px;
  border-bottom: 1px solid #789abb33;
  background: #071122f2;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  letter-spacing: 0.065em;
  font-size: 17px;
  line-height: 1.2;
}
.brand small {
  display: block;
  font:
    9px/1.6 "DM Sans",
    sans-serif;
  letter-spacing: 0.17em;
  color: var(--muted);
  margin-top: 3px;
}
.gmark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--silver);
  border-radius: 50%;
  font-size: 30px;
  letter-spacing: -0.09em;
}
.gmark span {
  font:
    18px "DM Sans",
    sans-serif;
  margin-top: -10px;
}
.masthead nav {
  display: flex;
  gap: 25px;
  font-size: 12px;
}
.masthead nav a {
  color: var(--muted);
  transition: color 0.18s;
}
.masthead nav a:hover,
.masthead nav a[aria-current] {
  color: white;
}
.icon-button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  min-width: 44px;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 3px;
}
.account {
  font-size: 12px;
}
.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
  padding: 52px 0 66px;
  min-height: 740px;
}
.hero-copy h1 {
  margin: 26px 0;
}
.intro {
  font-size: 16px;
  line-height: 1.8;
  max-width: 490px;
}
.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  background: var(--lime);
  border-radius: 50%;
}
.hero-details {
  display: flex;
  gap: 45px;
  margin: 30px 0;
  color: #8aa3c6;
  font-size: 10px;
  letter-spacing: 0.13em;
}
.hero-details > span > span {
  display: block;
  color: var(--cream);
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 500;
  margin-top: 5px;
}
.actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin: 24px 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  min-height: 52px;
  padding: 14px 23px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  transition:
    transform 0.2s var(--ease),
    background 0.2s,
    box-shadow 0.2s;
}
.button:hover:not(:disabled) {
  transform: translateY(-3px);
}
.button:active:not(:disabled) {
  transform: scale(0.98);
}
.primary {
  color: #071122;
  background: var(--silver);
  border-color: var(--silver);
  box-shadow: inset 0 0 0 3px #07112218;
}
.primary:hover:not(:disabled) {
  background: white;
}
.quiet {
  background: transparent;
  color: var(--cream);
}
.wide {
  width: 100%;
}
.giveaway-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  margin-top: 22px;
  max-width: 490px;
  flex-wrap: wrap;
}
.pink-tab {
  display: inline-block;
  background: var(--pink);
  padding: 6px 10px;
  color: white;
  font-size: 9px;
  letter-spacing: 0.08em;
  font-weight: 700;
  border: 1px dashed #ffc3e1;
  box-shadow: 0 0 0 3px var(--pink);
  line-height: 1.5;
}
.hero-art {
  position: relative;
  max-width: 390px;
  justify-self: end;
  width: 100%;
  transform: rotate(2deg);
}
.stitched-frame {
  border: 1px dashed #7597bd;
  padding: 10px;
  background: #112c4c;
  box-shadow:
    15px 20px 0 #020917,
    16px 21px 0 #2a4261;
}
.stitched-frame img {
  width: 100%;
  height: auto;
}
.edition-tag {
  position: absolute;
  left: -20px;
  bottom: 44px;
  transform: rotate(-90deg);
  transform-origin: left top;
  background: var(--cream);
  color: var(--ink);
  font-size: 8px;
  letter-spacing: 0.2em;
  padding: 5px 12px;
}
.ticker {
  overflow: hidden;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  padding: 15px 0;
  background: #0c1a30;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 23px;
  letter-spacing: 0.16em;
  color: #91acd1;
}
.ticker div {
  display: flex;
  white-space: nowrap;
  gap: 38px;
  width: max-content;
}
.ticker span {
  color: var(--blue);
}
.motion .ticker div {
  animation: ticker 40s linear infinite;
}
.ticker:hover div {
  animation-play-state: paused;
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 55px;
  margin-bottom: 48px;
}
.section-head .eyebrow {
  margin-bottom: 18px;
}
.section-head > p {
  max-width: 340px;
  font-size: 14px;
}
.booking-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 46px;
}
.ticket-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 27px 0;
  border-top: 1px solid var(--line);
}
.ticket-row:last-child {
  border-bottom: 1px solid var(--line);
}
.ticket-row h3 {
  font-size: 29px;
}
.ticket-row p {
  font-size: 12px;
  margin-top: 7px;
}
.ticket-row .price {
  color: var(--cream);
  font-size: 18px;
  font-weight: 600;
}
.qty {
  display: flex;
  align-items: center;
  gap: 13px;
}
.qty button {
  width: 35px;
  height: 35px;
  border: 1px solid #5c789c;
  background: transparent;
  color: var(--cream);
  border-radius: 50%;
  font-size: 21px;
}
.qty output {
  min-width: 16px;
  text-align: center;
}
.booking-summary {
  padding: 30px;
  background: var(--surface);
  border: 1px dashed #4e6d91;
  align-self: start;
  position: sticky;
  top: 120px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 25px 0;
  color: var(--muted);
  font-size: 13px;
}
.summary-row strong {
  font-family: "Barlow Condensed";
  font-size: 30px;
  color: white;
  line-height: 1;
}
.small-note {
  font-size: 11px;
  line-height: 1.7;
  margin-top: 16px;
}
.ussd-note {
  font-size: 12px;
  margin-top: 22px;
}
.ussd-note a {
  font-weight: 700;
  color: var(--cream);
  margin-left: 4px;
}
.text-button {
  border: 0;
  background: none;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 12px;
  padding: 5px 8px;
}
.giveaway-section {
  background: #132644;
  border-top: 1px solid #496483;
  border-bottom: 1px solid #496483;
  padding: 90px 0;
  position: relative;
}
.giveaway-section:before {
  content: "";
  position: absolute;
  inset: 7px 0;
  border-block: 1px dashed #536c8a;
  pointer-events: none;
}
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: center;
}
.giveaway-art {
  max-width: 330px;
  justify-self: center;
  transform: rotate(-3deg);
  box-shadow: 18px 18px 0 #051020;
}
.giveaway-art img {
  height: 500px;
  width: auto;
  object-fit: contain;
}
.split h2 {
  margin: 24px 0;
}
.split p {
  max-width: 480px;
  margin: 18px 0;
}
.large-copy {
  font-size: 21px;
  color: var(--cream);
}
.table-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.table-card {
  border-top: 2px solid var(--silver);
  background: var(--surface);
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.table-card .table-price {
  font: 44px/1.1 "Barlow Condensed";
  color: white;
  margin: 20px 0;
}
.table-card ul {
  padding-left: 17px;
  font-size: 12px;
  color: var(--muted);
  margin: 5px 0 25px;
  flex: 1;
}
.table-card li {
  margin: 7px 0;
}
.table-card .button {
  gap: 10px;
  font-size: 12px;
  min-height: 44px;
  margin-top: 8px;
}
.denim-world {
  background: repeating-linear-gradient(130deg, #102544 0 1px, #112847 1px 3px);
  border-block: 1px solid var(--line);
}
.denim-world h2 {
  margin: 18px 0 45px;
}
.world-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 50px;
}
.world-link {
  display: flex;
  gap: 18px;
  padding: 35px 0;
  border-top: 1px dashed #6788ad;
  transition: transform 0.25s var(--ease);
}
.world-link:hover {
  transform: translateX(5px);
}
.world-number {
  font-size: 11px;
  color: var(--blue);
  padding-top: 6px;
}
.world-link p {
  font-size: 12px;
  margin-top: 12px;
  max-width: 350px;
}
.world-link .arrow {
  margin-left: auto;
  font-size: 25px;
  color: var(--blue);
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  align-self: start;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.faq summary:after {
  content: "+";
  color: var(--blue);
}
.faq details[open] summary:after {
  content: "−";
}
.faq p {
  font-size: 13px;
  line-height: 1.9;
  margin-top: 15px;
}
.faq a {
  color: var(--blue);
  text-decoration: underline;
}
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding: 45px 0 65px;
  flex-wrap: wrap;
}
.footer > p {
  font-size: 10px;
}
.footer-links {
  display: flex;
  gap: 22px;
  font-size: 11px;
}
.mobile-booking {
  display: none;
}
.page-heading {
  max-width: 800px;
  margin-bottom: 55px;
}
.page-heading h1 {
  font-size: clamp(62px, 7vw, 96px);
  margin: 18px 0;
}
.back-link {
  display: block;
  font-size: 12px;
  color: var(--blue);
  margin-bottom: 30px;
}
.page-heading .intro {
  max-width: 630px;
}
.panel {
  padding: 32px;
  background: var(--surface);
  border: 1px dashed #456180;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 12px;
}
.field.full {
  grid-column: 1/-1;
}
input,
select,
textarea {
  width: 100%;
  background: #09162a;
  color: var(--cream);
  border: 1px solid #5e7693;
  border-radius: 3px;
  padding: 12px 13px;
  min-height: 48px;
  font-size: 14px;
}
textarea {
  min-height: 105px;
  resize: vertical;
}
label.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--muted);
  margin: 20px 0;
}
label.check input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  flex-shrink: 0;
}
.panel h3 {
  margin-bottom: 18px;
}
.panel p {
  font-size: 13px;
  margin-bottom: 18px;
}
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 25px 0;
}
.stat {
  background: var(--ink);
  padding: 25px 15px;
}
.stat strong {
  display: block;
  font: 48px "Barlow Condensed";
  color: var(--cream);
}
.stat small {
  color: var(--muted);
  font-size: 10px;
}
.share-link {
  display: flex;
  gap: 10px;
  margin: 18px 0;
}
.share-link input {
  min-width: 0;
}
.board {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 13px;
}
.board td,
.board th {
  text-align: left;
  padding: 15px;
  border-bottom: 1px solid var(--line);
}
.board th {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 30px 0;
}
.entry-card {
  background: var(--surface);
  overflow: hidden;
  min-width: 0;
}
.entry-card img,
.entry-card .video-entry {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.video-entry {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, #173b70, #0a1628);
  font: 55px "Barlow Condensed";
  border: 0;
  color: var(--silver);
}
.entry-meta {
  padding: 22px;
}
.entry-meta h3 {
  font-size: 25px;
}
.entry-meta p {
  font-size: 12px;
  margin: 12px 0;
}
.entry-actions {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 15px;
}
.entry-actions .button {
  padding: 10px 15px;
  min-height: 42px;
}
.empty {
  padding: 30px;
  border: 1px dashed var(--line);
  color: var(--muted);
  font-size: 13px;
}
.notice {
  padding: 17px 20px;
  background: var(--surface);
  border-left: 3px solid var(--blue);
  font-size: 13px;
  margin: 20px 0;
}
.error {
  border-color: #ff839b;
  color: #ffd5dc;
}
.success {
  border-color: var(--lime);
  color: #e7f0b2;
}
.loading-line {
  padding: 32px 0;
  color: var(--muted);
}
.loading-line:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid #a5bcde55;
  border-top-color: var(--silver);
  border-radius: 50%;
  margin-right: 12px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.member-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0;
}
.member {
  padding: 8px 15px;
  border: 1px solid var(--line);
  font-size: 12px;
}
.countdown {
  display: flex;
  gap: 25px;
  margin-top: 30px;
}
.countdown strong {
  display: block;
  font: 34px "Barlow Condensed";
  color: var(--silver);
}
.countdown span {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.12em;
}
.referral-note {
  border-top: 1px dashed var(--line);
  padding-top: 16px;
  color: var(--lime);
  font-size: 12px;
}
.skip {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  background: white;
  color: black;
  padding: 12px;
  transform: translateY(-200%);
}
.skip:focus {
  transform: none;
}
.scroll-thread {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--blue);
  z-index: 30;
}
dialog {
  color: var(--cream);
  background: var(--ink);
  border: 1px solid #5d7ca4;
  border-radius: 5px;
  width: min(600px, calc(100% - 30px));
  max-height: 90dvh;
  padding: 28px;
  overflow: auto;
  box-shadow: 0 40px 150px #0009;
}
dialog::backdrop {
  background: #020a18db;
  backdrop-filter: blur(8px);
}
dialog h2 {
  font-size: 42px;
  margin: 20px 0 25px;
}
.modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.modal-top .icon-button {
  font-size: 26px;
}
.modal-video {
  width: 100%;
  max-height: 65dvh;
  display: block;
}
.video-frame {
  width: 100%;
  aspect-ratio: 9/16;
  border: 0;
  max-height: 65dvh;
}
.modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}
.modal-body p {
  margin: 12px 0;
}
.modal-error {
  font-size: 12px;
  color: #ffacbf;
  margin: 15px 0;
}
.status-badge {
  display: inline-block;
  padding: 4px 9px;
  border: 1px solid var(--line);
  color: var(--blue);
  font-size: 10px;
  text-transform: uppercase;
}
#toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translate(-50%, 15px);
  background: var(--cream);
  color: var(--ink);
  padding: 12px 22px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  font-size: 12px;
  max-width: 90%;
  transition: 0.2s;
}
#toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.motion .hero-copy {
  animation: rise 0.8s var(--ease) both;
}
.motion .hero-art {
  animation: art-in 1.1s var(--ease) both;
}
.motion .reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}
.motion .reveal.visible {
  opacity: 1;
  transform: none;
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes art-in {
  from {
    opacity: 0;
    transform: translateY(20px) rotate(5deg);
  }
  to {
    opacity: 1;
    transform: rotate(2deg);
  }
}
.admin-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.admin-entry .actions {
  margin: 0;
}
.admin-entry small {
  color: var(--muted);
}
.guide-list {
  counter-reset: guide;
}
.guide-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
@media (min-width: 1450px) {
  .hero {
    min-height: 810px;
  }
  .hero-art {
    max-width: 425px;
  }
}
@media (max-width: 1050px) {
  .masthead {
    padding: 0 24px;
    gap: 20px;
  }
  .masthead nav {
    gap: 18px;
  }
  .wrap {
    width: calc(100% - 48px);
  }
  .hero {
    gap: 45px;
    min-height: 650px;
  }
  .hero-copy h1 {
    font-size: 77px;
  }
  .hero-art {
    max-width: 315px;
  }
  .split {
    gap: 55px;
  }
  .table-list {
    grid-template-columns: 1fr 1fr;
  }
  .booking-layout {
    gap: 25px;
  }
  .world-grid {
    gap: 0 30px;
  }
  .section {
    padding-block: 80px;
  }
  .table-card {
    padding: 24px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 115px;
  }
  .masthead {
    height: auto;
    min-height: 78px;
    flex-wrap: wrap;
    gap: 12px;
    padding: 15px 20px;
  }
  .brand {
    font-size: 15px;
  }
  .gmark {
    width: 35px;
    height: 35px;
    font-size: 25px;
  }
  .brand small {
    font-size: 8px;
  }
  .masthead nav {
    order: 3;
    width: 100%;
    overflow: auto;
    padding: 8px 0 0;
    border-top: 1px solid #2b4059;
    gap: 25px;
    white-space: nowrap;
    font-size: 11px;
  }
  .account {
    margin-left: auto;
  }
  .account span {
    display: none;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .hero {
    grid-template-columns: 1fr 0.75fr;
    gap: 20px;
    padding: 40px 0 55px;
    min-height: 0;
  }
  .hero-copy h1 {
    font-size: 60px;
    margin: 20px 0;
  }
  .hero-copy .eyebrow {
    font-size: 8px;
  }
  .hero .intro {
    font-size: 12px;
    line-height: 1.7;
  }
  .hero-details {
    gap: 17px;
    margin: 20px 0;
    font-size: 8px;
  }
  .hero-details > span > span {
    font-size: 11px;
  }
  .hero .actions {
    gap: 10px;
    margin: 20px 0;
  }
  .hero .button {
    min-height: 43px;
    padding: 11px 14px;
    gap: 12px;
    font-size: 11px;
  }
  .hero-art {
    max-width: 250px;
    align-self: start;
    margin-top: 43px;
  }
  .stitched-frame {
    padding: 5px;
    box-shadow:
      8px 10px 0 #020917,
      9px 11px 0 #2a4261;
  }
  .hero .giveaway-link {
    font-size: 10px;
  }
  .pink-tab {
    font-size: 8px;
  }
  .hero .pink-tab {
    font-size: 7px;
  }
  .edition-tag {
    left: -11px;
    bottom: 25px;
    font-size: 6px;
  }
  .ticker {
    padding-block: 10px;
    font-size: 17px;
  }
  .section {
    padding-block: 65px;
  }
  .section-head {
    display: block;
    margin-bottom: 30px;
  }
  .section-head > p {
    margin-top: 20px;
    font-size: 13px;
    max-width: 450px;
  }
  h2 {
    font-size: 51px;
  }
  .booking-layout,
  .split,
  .two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .booking-summary {
    position: static;
    padding: 25px;
  }
  .ticket-row {
    padding: 22px 0;
  }
  .giveaway-section {
    padding: 65px 0;
  }
  .giveaway-art {
    max-width: 280px;
  }
  .giveaway-art img {
    height: 410px;
  }
  .split > div:last-child {
    padding-top: 10px;
  }
  .split p {
    font-size: 13px;
  }
  .split .large-copy {
    font-size: 20px;
  }
  .table-list {
    gap: 15px;
  }
  .table-card {
    padding: 20px;
  }
  .table-card h3 {
    font-size: 26px;
  }
  .table-card .table-price {
    font-size: 37px;
  }
  .world-grid {
    grid-template-columns: 1fr;
  }
  .world-link {
    padding: 27px 0;
  }
  .faq {
    grid-template-columns: 1fr;
  }
  .entry-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .entry-meta {
    padding: 16px;
  }
  .entry-actions {
    flex-wrap: wrap;
  }
  .panel {
    padding: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .footer {
    padding-bottom: 125px;
    gap: 25px;
  }
  .footer-links {
    gap: 19px;
    flex-wrap: wrap;
  }
  .mobile-booking {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px calc(13px + env(safe-area-inset-bottom));
    background: #09162af2;
    backdrop-filter: blur(16px);
    border-top: 1px dashed #506786;
    z-index: 25;
    gap: 20px;
  }
  .mobile-booking small {
    font-size: 8px;
    color: var(--muted);
    letter-spacing: 0.08em;
    display: block;
  }
  .mobile-booking strong {
    font-size: 12px;
  }
  .mobile-booking .button {
    font-size: 12px;
    min-height: 44px;
    padding: 12px 20px;
  }
  .page-heading h1 {
    font-size: 65px;
  }
  .page-heading {
    margin-bottom: 30px;
  }
  .page-heading .intro {
    font-size: 14px;
  }
  .stats .stat {
    padding: 17px 12px;
  }
  .stat strong {
    font-size: 37px;
  }
  .stat small {
    font-size: 9px;
  }
  .admin-entry {
    display: block;
  }
  .admin-entry .actions {
    margin-top: 14px;
  }
  .countdown {
    gap: 14px;
  }
  .countdown strong {
    font-size: 26px;
  }
  .share-link {
    flex-wrap: wrap;
  }
  .share-link input {
    flex-basis: 100%;
  }
}
@media (max-width: 430px) {
  .hero {
    grid-template-columns: 1fr;
    position: relative;
    padding-top: 34px;
  }
  .hero-copy {
    position: relative;
    z-index: 1;
  }
  .hero-copy h1 {
    font-size: 71px;
    max-width: 100%;
    margin-right: 0;
  }
  .hero-art {
    display: none;
  }
  .hero .intro {
    font-size: 14px;
    max-width: 350px;
  }
  .hero-details {
    font-size: 9px;
    gap: 36px;
  }
  .hero-details > span > span {
    font-size: 13px;
  }
  .hero .button {
    min-height: 49px;
    font-size: 12px;
    padding: 12px 20px;
  }
  .hero .giveaway-link {
    font-size: 11px;
    line-height: 1.9;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .hero:after {
    content: "DENIM";
    font: 160px/1 "Barlow Condensed";
    position: absolute;
    right: -8px;
    bottom: 175px;
    color: #5379a810;
    writing-mode: vertical-rl;
    pointer-events: none;
  }
  .table-list {
    grid-template-columns: 1fr;
  }
  .table-card {
    padding: 26px;
  }
  .entry-grid {
    grid-template-columns: 1fr;
  }
  .hero .pink-tab {
    font-size: 8px;
  }
  .ticket-row {
    gap: 15px;
  }
  .ticket-row h3 {
    font-size: 26px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .scroll-thread {
    display: none;
  }
}
/* Connected booking and community pages */
#page-content > .panel,
#page-content > form,
#page-content > .form-grid {
  margin-bottom: 28px;
}
label:not(.check) {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin: 15px 0;
}
label input,
label textarea,
label select {
  display: block;
  margin-top: 7px;
}
label .button {
  margin-top: 10px;
}
.form-error {
  color: #ffacbf !important;
  min-height: 1em;
  margin: 14px 0 !important;
}
.quantity {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.quantity button {
  width: 38px;
  height: 38px;
  border: 1px solid #6987ab;
  background: transparent;
  color: var(--cream);
  border-radius: 50%;
  font-size: 21px;
}
.quantity output {
  min-width: 16px;
  text-align: center;
}
.ticket-row > strong {
  white-space: nowrap;
  font-size: 16px;
  margin-left: auto;
}
.ticket-row > div:first-child {
  flex: 1;
}
.stats > div {
  background: var(--ink);
  padding: 25px 18px;
  min-width: 0;
}
.stats strong {
  display: block;
  font: 45px/1.1 "Barlow Condensed";
  color: var(--cream);
}
.stats span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 9px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  padding: 0 0 50px;
}
.steps b {
  font: 50px "Barlow Condensed";
  color: var(--blue);
}
.steps h3 {
  margin: 12px 0;
}
.steps p {
  font-size: 13px;
}
.leaderboard {
  list-style: none;
  padding: 0;
}
.leaderboard li {
  display: flex;
  align-items: center;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding: 22px 0;
  font-size: 13px;
}
.leaderboard .rank {
  font: 30px "Barlow Condensed";
  color: var(--blue);
  min-width: 30px;
}
.leaderboard strong {
  flex: 1;
}
.leaderboard small {
  display: block;
  font-weight: 400;
  color: var(--muted);
}
.entry-copy {
  padding: 25px;
}
.entry-copy h3 {
  font-size: 28px;
}
.entry-copy p {
  font-size: 13px;
  margin-top: 12px;
}
.video-entry {
  font-size: 22px;
  flex-direction: column;
  gap: 15px;
  padding: 25px;
}
.video-entry > span {
  font-size: 70px;
}
.crew-members {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 25px 0;
}
.crew-members > span {
  border: 1px solid var(--line);
  padding: 8px 16px;
  color: var(--silver);
}
.preserve-lines {
  white-space: pre-wrap;
}
.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 35px;
}
.guide-grid h2 {
  font-size: 45px;
  margin: 15px 0;
}
.guide-poster {
  max-height: 800px;
  margin: auto;
  object-fit: contain;
}
.reveal-video,
.review-image {
  width: 100%;
  max-height: 65dvh;
  object-fit: contain;
}
.stream-player {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 65dvh;
  border: 0;
}
.admin-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding: 22px 0;
  font-size: 12px;
}
.admin-row > span {
  flex: 1;
}
.admin-row select {
  width: auto;
}
.countdown b {
  display: block;
  font: 34px "Barlow Condensed";
  color: var(--silver);
}
.table-price small {
  font: 11px "DM Sans";
  color: var(--muted);
}
.panel > h2 {
  margin: 15px 0 25px;
}
.panel a:not(.button) {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--blue);
}
.panel summary {
  cursor: pointer;
}
.masthead nav a[aria-current="page"] {
  color: var(--cream);
  border-bottom: 1px solid var(--blue);
}
@media (max-width: 760px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .steps > div {
    border-top: 1px dashed var(--line);
    padding-top: 18px;
  }
  .steps b {
    float: left;
    font-size: 38px;
    margin-right: 20px;
  }
  .steps h3 {
    font-size: 29px;
  }
  .guide-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats strong {
    font-size: 36px;
  }
  .leaderboard li {
    gap: 12px;
    flex-wrap: wrap;
  }
  .quantity {
    gap: 8px;
  }
  .quantity button {
    width: 34px;
    height: 34px;
  }
  .ticket-row > strong {
    font-size: 13px;
  }
  .ticket-row h3 {
    font-size: 25px;
  }
  .ticket-row p {
    max-width: 180px;
  }
  .ticket-row {
    flex-wrap: wrap;
  }
  .entry-card img {
    object-fit: contain;
    background: #0a172b;
  }
}
@media (max-width: 430px) {
  .hero-art {
    display: block;
    width: 78%;
    max-width: 300px;
    justify-self: center;
    margin: 30px 0 0;
  }
  .hero:after {
    display: none;
  }
  .hero {
    padding-bottom: 55px;
  }
  .hero-art .stitched-frame {
    box-shadow:
      10px 12px 0 #020917,
      11px 13px 0 #2a4261;
  }
  .hero-copy h1 {
    font-size: clamp(62px, 18vw, 76px);
  }
}

/* Denim edition: editorial event identity and a continuous booking journey. */
:root { --ink:#07131a; --surface:#102534; --raised:#17374c; --line:#365668; --muted:#b4c7d4; --blue:#9ec8e3; --silver:#d4b885; --pink:#8c1a2e; }
body { font-size:16px; }
.masthead { background:rgba(7,19,26,.96); }
.reading-progress { position:fixed;top:0;left:0;right:0;height:3px;background:var(--silver);transform:scaleX(0);transform-origin:left;z-index:100;pointer-events:none; }
.hero { position:relative;min-height:740px;grid-template-columns:minmax(0,1.25fr) minmax(0,.75fr);gap:36px;padding-top:64px;padding-bottom:64px; }
.hero-copy { position:relative;z-index:2; }
.hero-copy .collection-label { font-size:14px;letter-spacing:.23em;margin:30px 0 6px;color:var(--blue); }
.hero-copy h1.denim-lockup { margin:0 0 26px;font-size:clamp(90px,13vw,190px);line-height:.78;letter-spacing:-.035em; }
.denim-lockup > span { display:block;color:var(--cream); }
.denim-lockup em { display:block;font-size:.38em;letter-spacing:.015em;font-style:normal;color:var(--blue);margin-top:18px; }
.hero-copy .intro { max-width:425px;font-size:17px; }
.hero-details { gap:34px; font-size:14px; margin:24px 0; }
.hero-details > span > span { font-size:16px; }
.hero-art { transform:none;max-width:390px;align-self:center; }
.art-caption { display:flex;justify-content:space-between;font-size:12px;letter-spacing:.16em;padding:12px 0;color:var(--blue); }
.stitched-frame { padding:8px;border:1px dashed #a9b8ba;background:#17374c;box-shadow:12px 12px 0 #07131a,13px 13px 0 #365668;transform:rotate(3deg);transition:transform .7s var(--ease); }
.stitched-frame img { display:block;max-height:590px;object-fit:contain;background:#07131a; }
.hero-art:hover .stitched-frame { transform:rotate(0); }
.edition-tag { transform:none;position:relative;display:inline-block;left:auto;bottom:auto;margin:22px 0 0;font-size:12px;letter-spacing:.08em;padding:9px 12px; }
.motion .denim-lockup > span { animation:denim-arrive .85s var(--ease) both; }
.motion .denim-lockup em { animation:denim-arrive .85s .12s var(--ease) both; }
.motion .hero-art { animation:denim-arrive 1s .2s var(--ease) both; }
@keyframes denim-arrive { from{opacity:0;transform:translateY(32px)}to{opacity:1;transform:translateY(0)} }
.button { font-size:14px;min-height:48px;border-radius:6px;gap:20px; }
.button.primary { background:var(--silver);border-color:var(--silver);color:#07131a;box-shadow:none; }
#checkout { background:#ff006b;border-color:#ff006b;color:white; }
#checkout:disabled { background:#284050;border-color:#365668;color:#b4c7d4;opacity:1; }
#checkout:not(:disabled):hover { background:#d9005c; }
.eyebrow,.small-note,.ussd-note,.giveaway-link,.referral-note { font-size:14px; }
.pink-tab { font-size:12px;background:#8c1a2e;box-shadow:none;border:1px solid #bd6d7b; }
.booking-steps { display:flex;list-style:none;padding:0;margin:0 0 28px;gap:24px;flex-wrap:wrap;border-bottom:1px solid var(--line);padding-bottom:20px;color:var(--muted);font-size:14px; }
.booking-steps li { display:flex;align-items:center;gap:10px; }
.booking-steps b { width:30px;height:30px;display:grid;place-items:center;border:1px solid var(--line);border-radius:50%;font-size:12px; }
.booking-steps .current { color:var(--cream); }
.booking-steps .current b { background:var(--silver);color:var(--ink);border-color:var(--silver); }
.booking-summary { position:sticky;top:108px;border:1px solid var(--line);padding:28px;background:var(--surface);border-radius:12px; }
.ticket-stub { margin:0 0 24px;padding:16px 0 24px;border-bottom:1px dashed var(--line);display:grid;gap:6px; }
.ticket-stub span { font-size:12px;letter-spacing:.16em;color:var(--muted); }
.ticket-stub strong { font:700 60px/.9 'Barlow Condensed',sans-serif;letter-spacing:.02em; }
.ticket-row { border:1px solid var(--line);border-radius:10px;margin-bottom:12px;padding:24px;transition:background .22s,border-color .22s; }
.ticket-row.is-selected { border-color:var(--silver);background:#183446; }
.ticket-row p,.ticket-row small { font-size:14px; }
.quantity button { min-width:44px;min-height:44px; }
.quantity button:disabled { opacity:.35; }
.quantity output { font-variant-numeric:tabular-nums;min-width:20px; }
.panel,.table-card,.entry-card { border-radius:12px; }
.steps { counter-reset:step; }
.steps > div { padding:24px;border:1px solid var(--line);border-radius:12px;background:var(--surface); }
.steps p { font-size:16px; }
.steps b { color:var(--silver); }
.masthead nav { scrollbar-width:none; }
.masthead nav a { font-size:14px;min-height:44px;display:inline-flex;align-items:center; }
.masthead nav a[aria-current] { color:var(--silver); }
.invite-composer { margin-top:22px;padding-top:20px;border-top:1px dashed var(--line); }
.invite-composer textarea { min-height:140px;resize:vertical;font-size:16px; }
dialog { border-radius:16px;max-height:90dvh;overflow-y:auto; }
.motion dialog[open] { animation:denim-arrive .25s var(--ease); }
body:not(.motion) *, body:not(.motion) *::before, body:not(.motion) *::after { animation-play-state:paused!important; }
@media(max-width:900px) {
 .hero { min-height:0;gap:24px;grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr);padding-top:38px; }
 .hero-copy h1.denim-lockup { font-size:clamp(84px,14vw,132px); }
 .hero-details { flex-wrap:wrap;gap:16px; }
 .hero-art { max-width:310px; }
}
@media(max-width:640px) {
 .hero { grid-template-columns:1fr;padding-top:28px;padding-bottom:36px;gap:26px; }
 .hero-copy h1.denim-lockup { font-size:clamp(94px,27vw,168px); }
 .hero-copy .collection-label { margin-top:24px; }
 .hero-copy .intro { max-width:100%;font-size:16px; }
 .hero-art { display:block;width:100%;max-width:none;justify-self:stretch;padding:0 12px; }
 .hero-art .stitched-frame { transform:none;box-shadow:none;padding:5px; }
 .stitched-frame img { width:100%;height:340px;object-fit:contain; }
 .edition-tag { margin-top:10px;font-size:12px; }
 .hero-details { font-size:12px;gap:28px; }
 .booking-steps { gap:12px;font-size:12px; }
 .booking-steps li { gap:6px;flex:1;align-items:flex-start; }
 .booking-steps b { flex-shrink:0; }
 .booking-summary { position:static;padding:22px; }
 .ticket-row { padding:18px;gap:16px; }
 .ticket-row>strong { font-size:17px; }
 .ticket-row .quantity { margin-left:auto; }
 .masthead { flex-wrap:wrap;gap:8px;padding-bottom:0; }
 .masthead nav { display:flex!important;order:3;width:100%;overflow-x:auto;gap:24px;white-space:nowrap;border-top:1px solid var(--line); }
 .masthead .account { margin-left:auto; }
 .steps > div { padding:20px; }
 .stats span { font-size:14px; }
}
@media(prefers-reduced-motion:reduce) { html{scroll-behavior:auto} *,*::before,*::after { animation:none!important;transition:none!important; } }

/* Phone booking and media refinements. */
input,select,textarea { font-size:16px; }
#tickets,#tables,#inside-denim { scroll-margin-top:145px; }
body:has(dialog[open]) .mobile-booking { visibility:hidden; }
.denim-film { margin-top:20px;margin-bottom:72px; }
.film-heading { display:flex;align-items:end;justify-content:space-between;gap:24px;margin-bottom:22px; }
.film-heading h2 { font-size:clamp(38px,5vw,66px);margin-top:10px; }
.film-heading p:last-child { max-width:380px;font-size:16px; }
.film-player { display:block;width:100%;aspect-ratio:16/9;object-fit:contain;background:#02080d;border:1px solid var(--line);border-radius:14px; }
.film-caption { margin-top:12px;font-size:14px;color:var(--muted); }
.denim-photo-strip { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:16px; }
.denim-photo-strip img { width:100%;aspect-ratio:4/5;object-fit:cover;border-radius:10px; }
@media(max-width:760px) {
 .wrap { width:calc(100% - 32px); }
 .masthead { padding:10px 16px 0;gap:7px;min-height:0; }
 .masthead nav { padding:2px 14px 2px 0;gap:22px;overscroll-behavior-x:contain; }
 .masthead nav a { flex-shrink:0;min-height:44px; }
 .hero .eyebrow { font-size:12px; }
 .hero-copy .collection-label { font-size:12px;letter-spacing:.14em; }
 .hero .actions { display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:22px 0; }
 .hero .actions .button { min-height:48px;padding:12px 10px;font-size:14px;gap:8px; }
 .hero .giveaway-link { font-size:14px;line-height:1.6; }
 .hero .pink-tab { font-size:11px; }
 .hero-details>span>span { font-size:15px; }
 .hero-art { margin-top:0; }
 .section { padding-block:48px; }
 .section-head { margin-bottom:22px; }
 .section-head h2 { font-size:clamp(36px,10vw,46px); }
 .section-head>p,.split p { font-size:16px;line-height:1.6; }
 .table-list { grid-template-columns:1fr; }
 .table-card { padding:22px; }
 .table-card h3 { font-size:30px; }
 .table-card p { font-size:16px; }
 .table-card .table-price { font-size:36px; }
 .table-card .button { margin-top:auto;font-size:15px;min-height:48px; }
 .table-card .small-note { font-size:14px; }
 .booking-layout { gap:18px; }
 .booking-summary { padding:20px; }
 .ticket-stub { padding-bottom:16px;margin-bottom:16px; }
 .ticket-stub strong { font-size:44px; }
 .ticket-row { padding:18px;display:grid;grid-template-columns:minmax(0,1fr) auto;gap:14px; }
 .ticket-row>div:first-child { grid-column:1/-1; }
 .ticket-row .quantity { justify-self:end; }
 .ticket-row p { max-width:none;font-size:15px; }
 .ticket-row h3 { font-size:28px; }
 .quantity { gap:14px; }
 .quantity button { min-width:48px;min-height:48px; }
 .mobile-booking { gap:12px;padding:10px 16px calc(10px + env(safe-area-inset-bottom)); }
 .mobile-booking>div { min-width:0; }
 .mobile-booking small { font-size:10px;letter-spacing:.03em; }
 .mobile-booking strong { font-size:14px;line-height:1.4;display:block; }
 .mobile-booking .button { font-size:14px;min-height:48px;padding:12px 16px;flex-shrink:0; }
 .page-heading h1 { font-size:clamp(42px,12vw,64px);overflow-wrap:anywhere; }
 .panel { padding:20px; }
 .panel h2 { font-size:36px; }
 .stats { gap:12px; }
 .stats strong { font-size:32px; }
 .form-grid { gap:14px; }
 dialog { width:calc(100% - 20px);max-width:none;padding:20px;max-height:calc(100dvh - 24px);margin:auto;border-radius:14px; }
 dialog h2 { font-size:34px;line-height:1.1; }
 dialog label { display:block;font-size:15px; }
 dialog input,dialog select,dialog textarea { margin-top:6px; }
 dialog .check { display:flex; }
 dialog .actions { gap:10px; }
 dialog .button[type=submit] { width:100%;min-height:50px; }
 .modal-top { align-items:flex-start;gap:10px; }
 #close-modal { min-width:44px;min-height:44px; }
 .denim-film { margin-top:0;margin-bottom:40px; }
 .film-heading { display:block; }
 .film-heading p:last-child { margin-top:14px; }
 .denim-photo-strip { gap:8px; }
}
@media(max-width:360px) {
 .hero .actions { grid-template-columns:1fr; }
 .hero .actions .button { justify-content:space-between;padding-inline:16px; }
 .booking-steps { gap:8px; }
 .booking-steps b { display:none; }
 .mobile-booking small { display:none; }
 .mobile-booking .button { padding-inline:12px; }
}
.hero-montage { display:block;width:100%;aspect-ratio:9/16;object-fit:contain;background:#030b10;max-height:620px; }
.montage-tools { display:flex;flex-wrap:wrap;gap:12px;align-items:center;margin-top:24px; }
.montage-tools .button { min-height:44px;padding:10px 14px;font-size:14px; }
.montage-tools a { font-size:14px;text-decoration:underline;text-underline-offset:4px; }
.denim-photo-strip { grid-template-columns:repeat(2,minmax(0,1fr));max-width:840px;margin-inline:auto; }
@media(max-width:760px) {
 .hero-art { padding:0; }
 .hero-montage { max-height:540px; }
 .hero-art .stitched-frame { padding:0;border-radius:12px;overflow:hidden;border:1px solid var(--line); }
 .montage-tools { margin-top:14px;gap:14px; }
 .film-caption { font-size:14px; }
}

.promo-giveaway-video { display:block; width:100%; max-width:360px; aspect-ratio:9/16; object-fit:contain; background:#071019; border-radius:12px; margin:24px 0; }

/* Let the official flyer lead without crops, overlays or animation. */
.flyer-hero { display:flex; justify-content:center; padding:16px; background:#030910; }
.flyer-hero img { display:block; width:auto; height:auto; max-width:100%; max-height:calc(100svh - 145px); object-fit:contain; }
.event-intro { padding-top:48px; padding-bottom:48px; }
.event-intro .hero-copy { max-width:760px; margin:auto; }
.event-title { font-size:clamp(42px,7vw,88px); line-height:1; letter-spacing:-.025em; margin:0 0 24px; }
.montage-block { max-width:390px; margin:0 auto 48px; }
@media(max-width:600px) {
 .flyer-hero { padding:12px 0; }
 .flyer-hero img { max-height:calc(100svh - 190px); }
 .event-intro { padding-top:30px; padding-bottom:30px; }
}

/* Full-width artwork, with its natural height and no viewport crop. */
.flyer-hero { padding:0; width:100%; }
.flyer-hero img { width:100%; height:auto; max-width:1536px; max-height:none; aspect-ratio:1536/2752; object-fit:contain; }
.entry-card img,.guide-poster { height:auto; max-height:none; aspect-ratio:auto; object-fit:contain; }
.promoter-denim-photos { margin:0 0 40px; }
.promoter-denim-photos img { height:auto; object-fit:contain; }
.page-loading { display:flex; align-items:center; justify-content:center; gap:12px; padding:18px 24px; background:#16314a; color:#fff; font-weight:600; min-height:64px; }
.loading-spinner { width:22px; height:22px; flex-shrink:0; border:3px solid #ffffff40; border-top-color:#e6cb8d; border-radius:50%; animation:loading-turn .8s linear infinite; }
@keyframes loading-turn { to { transform:rotate(360deg); } }
@media(prefers-reduced-motion:reduce) { .loading-spinner { animation:none; } }

.gplus-brand-logo { display:block; width:56px; height:56px; object-fit:contain; flex-shrink:0; }
@media(max-width:600px) { .gplus-brand-logo { width:44px; height:44px; } }
