﻿:root {
  --ink: #071735;
  --navy: #071f50;
  --blue: #0d63d8;
  --gold: #f9c73d;
  --orange: #f46e21;
  --green: #13985c;
  --purple: #8f2be8;
  --cream: #fff8df;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(4, 17, 45, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7fbff;
  font-family: Inter, Arial, sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px clamp(14px, 4vw, 42px);
  color: var(--white);
  background: #020b24;
  border-bottom: 3px solid #d89a11;
  box-shadow: 0 8px 24px rgba(2, 11, 36, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: linear-gradient(145deg, #fff7ab, var(--gold), #d88b12);
  border: 2px solid #8a5600;
  border-radius: 50%;
  box-shadow: 0 3px 0 #000;
}

.theme-badge {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--white);
  border: 3px solid #f9c73d;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.34),
    0 4px 0 rgba(65, 35, 0, 0.7),
    0 8px 14px rgba(0, 0, 0, 0.25);
  font-size: 1.15rem;
  line-height: 1;
}

.badge-magic {
  background: radial-gradient(circle at 35% 28%, #ffb9ff, #8f2be8 45%, #35106f 100%);
  font-size: 1.35rem;
}

.badge-explorer {
  background: radial-gradient(circle at 35% 28%, #b8ffd6, #13985c 45%, #064a2e 100%);
  font-size: 1.35rem;
}

.badge-animal {
  background: radial-gradient(circle at 35% 28%, #ffd08a, #f46e21 45%, #8b230f 100%);
}

.badge-future {
  background: radial-gradient(circle at 35% 28%, #aee8ff, #0d63d8 48%, #07235e 100%);
}

.badge-sports {
  background: radial-gradient(circle at 35% 28%, #ffb2b2, #d61f28 48%, #7b1014 100%);
}

.badge-hq {
  color: #063b24;
  background: radial-gradient(circle at 35% 28%, #fff7ab, #f9c73d 48%, #c97808 100%);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.nav a {
  position: relative;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.nav a:hover::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  background: var(--gold);
  content: "";
}

.header-icons {
  display: inline-flex;
  gap: 14px;
  color: var(--gold);
  font-size: 1.55rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(250px, 0.86fr) minmax(320px, 1.08fr) minmax(210px, 0.72fr);
  gap: 16px;
  align-items: center;
  min-height: auto;
  padding: clamp(12px, 3vw, 24px) clamp(12px, 4vw, 42px) 0;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #eff7ff 62%, #ffffff 100%);
  text-align: center;
}

.hero-copy {
  max-width: 920px;
  margin: 0 auto;
  order: 2;
  grid-column: 2;
}

.hero-logo {
  order: 1;
  grid-column: 2;
  max-width: min(560px, 84vw);
  margin: 0 auto 2px;
}

.hero-logo img {
  width: 100%;
}

.superstar-potential {
  max-width: 680px;
  margin: -6px auto 6px;
  color: #16284b;
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  font-weight: 900;
  line-height: 1.22;
  text-align: center;
}

.hero-showcase {
  order: 1;
  grid-column: 1;
  grid-row: 1 / span 2;
  display: grid;
  gap: 0;
  align-self: center;
  max-width: 410px;
  margin: 0 auto;
}

.hero > .hero-showcase:not(.hero-showcase-right) {
  width: min(100%, 410px);
}

.hero-showcase-right {
  grid-column: 3;
}

.tommy-card {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 2px solid rgba(7, 23, 53, 0.12);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(5, 16, 39, 0.14);
}

.tommy-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tommy-design {
  aspect-ratio: 1 / 1;
  margin-top: 12px;
}

.tommy-wizard {
  aspect-ratio: 1 / 1.08;
}

.tommy-wizard img {
  object-position: center 34%;
}

.berty-future {
  aspect-ratio: 1 / 1.08;
}

.berty-future img {
  object-position: center 35%;
}

.tommy-photo {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: stretch;
  min-height: 92px;
}

.tommy-photo img {
  object-position: center 22%;
}

.tommy-card figcaption {
  display: grid;
  place-items: center;
  padding: 10px 12px;
  color: var(--white);
  background: #071735;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.tommy-wizard figcaption {
  background: linear-gradient(135deg, #35106f, #8f2be8);
}

.berty-future figcaption {
  background: linear-gradient(135deg, #07235e, #0d63d8);
}

.tommy-design figcaption {
  background: #9f1e21;
}

.tommy-photo figcaption {
  background: #9f1e21;
}

.tommy-photo figcaption strong {
  font-size: 0.84rem;
  line-height: 1.1;
}

.tommy-photo figcaption span {
  font-weight: 700;
}

.tommy-photo:not(.tommy-wizard-photo) figcaption {
  justify-items: start;
  gap: 5px;
  font-size: 0.64rem;
  line-height: 1.3;
  text-align: left;
  text-transform: none;
}

.tommy-wizard-photo figcaption {
  justify-items: start;
  gap: 5px;
  background: #531c9b;
  font-size: 0.64rem;
  line-height: 1.3;
  text-align: left;
  text-transform: none;
}

.berty-photo figcaption {
  justify-items: start;
  gap: 5px;
  background: #095bbb;
  font-size: 0.64rem;
  line-height: 1.3;
  text-align: left;
  text-transform: none;
}

.berty-photo figcaption strong {
  font-size: 0.84rem;
  line-height: 1.1;
}

.berty-photo figcaption span {
  font-weight: 700;
}

.bonnie-design {
  aspect-ratio: 1 / 1.08;
  margin-top: 12px;
}

.bonnie-design img {
  object-position: center 45%;
}

.bonnie-design figcaption,
.bonnie-story figcaption {
  background: #b75b13;
}

.bonnie-story img {
  object-position: center 28%;
}

.theo-design {
  aspect-ratio: 1 / 1.08;
  margin-top: 12px;
}

.theo-design img {
  object-position: center 38%;
}

.theo-design figcaption,
.theo-story figcaption {
  background: #0e653c;
}

.theo-story img {
  object-fit: contain;
  object-position: center top;
  background: #f7f7f7;
}

.tommy-wizard-photo figcaption strong {
  font-size: 0.84rem;
  line-height: 1.1;
}

.tommy-wizard-photo figcaption span {
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 8px;
  color: #b04e00;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.96;
  font-family: "Barlow Condensed", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 14ch;
  margin: 0 auto;
  font-size: clamp(2.6rem, 7vw, 6rem);
}

h2 {
  max-width: 16ch;
  font-size: clamp(2.35rem, 5.5vw, 5rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.intro {
  max-width: 56ch;
  margin: 18px auto 0;
  color: #263a64;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}

.button,
.order-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.primary,
.order-form button {
  color: #071735;
  background: linear-gradient(180deg, #ffe675, var(--gold));
  box-shadow: 0 5px 0 #9b6100;
}

.secondary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 5px 0 #031025;
}

.hero-art {
  order: 4;
  grid-column: 1 / -1;
  display: grid;
  justify-items: stretch;
  gap: 10px;
  background: var(--white);
  border-radius: 8px;
}

.lineup-crop {
  overflow: hidden;
  background: var(--white);
  border-radius: 8px;
  filter: drop-shadow(0 18px 22px rgba(5, 16, 39, 0.16));
}

.lineup-crop img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7.1;
  object-fit: cover;
  object-position: center top;
  background: var(--white);
}

.category-badges {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(6px, 1.4vw, 14px);
  align-items: stretch;
  padding: 0 clamp(4px, 1.5vw, 18px) 8px;
}

.category-badges img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(5, 16, 39, 0.14);
}

.lineup-feature {
  width: min(28%, 310px);
  display: grid;
  gap: 8px;
  justify-self: end;
  margin: 0 4% 0 0;
  z-index: 2;
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #071735;
}

.strip span {
  padding: 8px 14px;
  color: var(--white);
  background: linear-gradient(180deg, #103c8f, #071735);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.template-section {
  background: #ffffff;
}

.template-section .section-heading p {
  color: #263a64;
  font-size: 1.02rem;
  line-height: 1.55;
}

.template-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.template-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 60px;
  border: 2px solid rgba(7, 23, 53, 0.14);
  border-radius: 8px;
  padding: 9px 13px;
  color: #071735;
  background: #f8fbff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
}

.template-tab.is-active,
.template-tab:hover,
.template-tab:focus-visible {
  color: #071735;
  background: var(--gold);
  border-color: #a96d00;
  outline: none;
}

.template-tab[data-template-filter="magic"].is-active,
.template-tab[data-template-filter="magic"]:hover,
.template-tab[data-template-filter="magic"]:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, #35106e, #8e35d6);
  border-color: #c69cff;
  box-shadow: 0 0 18px rgba(142, 53, 214, 0.45);
}

.template-tab[data-template-filter="explorer"].is-active,
.template-tab[data-template-filter="explorer"]:hover,
.template-tab[data-template-filter="explorer"]:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, #064a2e, #168a52);
  border-color: #8be4a6;
  box-shadow: 0 0 18px rgba(22, 138, 82, 0.45);
}

.template-tab[data-template-filter="animal"].is-active,
.template-tab[data-template-filter="animal"]:hover,
.template-tab[data-template-filter="animal"]:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, #a64b00, #e17819);
  border-color: #ffc16e;
  box-shadow: 0 0 18px rgba(225, 120, 25, 0.45);
}

.template-tab[data-template-filter="future"].is-active,
.template-tab[data-template-filter="future"]:hover,
.template-tab[data-template-filter="future"]:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, #07235e, #0d63d8);
  border-color: #8fc9ff;
  box-shadow: 0 0 18px rgba(13, 99, 216, 0.45);
}

.template-tab[data-template-filter="sports"].is-active,
.template-tab[data-template-filter="sports"]:hover,
.template-tab[data-template-filter="sports"]:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, #7f1119, #d7262f);
  border-color: #ff9aa1;
  box-shadow: 0 0 18px rgba(215, 38, 47, 0.45);
}

.template-tab[data-template-filter="ability"].is-active,
.template-tab[data-template-filter="ability"]:hover,
.template-tab[data-template-filter="ability"]:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #d89a11);
  border-color: #ffe679;
  box-shadow: 0 0 18px rgba(216, 154, 17, 0.5);
}

.template-tab[data-template-filter="special"].is-active,
.template-tab[data-template-filter="special"]:hover,
.template-tab[data-template-filter="special"]:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, #005f73, #00b4d8);
  border-color: #9bf6ff;
  box-shadow: 0 0 18px rgba(0, 180, 216, 0.45);
}

.template-tab[data-template-filter="darkstars"].is-active,
.template-tab[data-template-filter="darkstars"]:hover,
.template-tab[data-template-filter="darkstars"]:focus-visible {
  color: #ffffff;
  background: linear-gradient(110deg, #0d63d8 0%, #f7b718 42%, #111827 52%, #581226 74%, #d7262f 100%);
  border-color: #f9c73d;
  box-shadow: 0 0 20px rgba(249, 199, 61, 0.42), 0 0 22px rgba(215, 38, 47, 0.34);
}


/* Keep template filters lit in their SuperStars colours. */
.template-tab[data-template-filter="all"] {
  color: #ffffff;
  background: linear-gradient(135deg, #35106e 0%, #0d63d8 28%, #168a52 52%, #f7b718 74%, #d7262f 100%);
  border-color: #ffffff;
  box-shadow: 0 0 14px rgba(142, 53, 214, 0.3), 0 0 14px rgba(215, 38, 47, 0.22);
}

.template-tab[data-template-filter="magic"] {
  color: #ffffff;
  background: linear-gradient(135deg, #35106e, #8e35d6);
  border-color: #c69cff;
  box-shadow: 0 0 14px rgba(142, 53, 214, 0.32);
}

.template-tab[data-template-filter="explorer"] {
  color: #ffffff;
  background: linear-gradient(135deg, #064a2e, #168a52);
  border-color: #8be4a6;
  box-shadow: 0 0 14px rgba(22, 138, 82, 0.32);
}

.template-tab[data-template-filter="animal"] {
  color: #ffffff;
  background: linear-gradient(135deg, #a64b00, #e17819);
  border-color: #ffc16e;
  box-shadow: 0 0 14px rgba(225, 120, 25, 0.32);
}

.template-tab[data-template-filter="future"] {
  color: #ffffff;
  background: linear-gradient(135deg, #07235e, #0d63d8);
  border-color: #8fc9ff;
  box-shadow: 0 0 14px rgba(13, 99, 216, 0.32);
}

.template-tab[data-template-filter="sports"] {
  color: #ffffff;
  background: linear-gradient(135deg, #7f1119, #d7262f);
  border-color: #ff9aa1;
  box-shadow: 0 0 14px rgba(215, 38, 47, 0.32);
}

.template-tab[data-template-filter="ability"] {
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #d89a11);
  border-color: #ffe679;
  box-shadow: 0 0 14px rgba(216, 154, 17, 0.34);
}

.template-tab[data-template-filter="special"] {
  color: #ffffff;
  background: linear-gradient(135deg, #005f73, #00b4d8);
  border-color: #9bf6ff;
  box-shadow: 0 0 14px rgba(0, 180, 216, 0.34);
}

.template-tab[data-template-filter="darkstars"] {
  color: #ffffff;
  background: linear-gradient(110deg, #0d63d8 0%, #f7b718 42%, #111827 52%, #581226 74%, #d7262f 100%);
  border-color: #f9c73d;
  box-shadow: 0 0 16px rgba(249, 199, 61, 0.32), 0 0 18px rgba(215, 38, 47, 0.26);
}

.template-tab-special {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 60px;
  line-height: 1;
}

.template-tab-special small {
  display: block;
  max-width: 16ch;
  color: inherit;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.12;
  text-transform: none;
}

.template-tab-darkstars {
  flex: 1 0 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 82px;
  font-size: 1.12rem;
  line-height: 0.95;
}

.template-tab-team-badge {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.42));
}

.template-tab-badge {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
  background: transparent;
}

.template-tab-badge-wide {
  width: 56px;
  padding: 2px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
}

.template-tab-copy {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

.template-tab-darkstars small {
  color: #f9c73d;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .template-tab-darkstars {
    grid-column: 1 / -1;
  }

  .template-tab-team-badge {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }
}
.template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.template-card {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 132px;
  padding: 14px;
  border: 2px solid rgba(7, 23, 53, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(5, 16, 39, 0.08);
}

.template-card.is-hidden {
  display: none;
}

.template-card img {
  width: 68px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.template-card span {
  display: inline-block;
  margin-bottom: 3px;
  color: #b04e00;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.template-card h3 {
  margin: 0;
  color: #071735;
  font-size: 1.42rem;
  line-height: 0.95;
}

.template-card p {
  margin: 6px 0 0;
  color: #263a64;
  font-size: 0.9rem;
  line-height: 1.35;
}

.template-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.template-card:hover,
.template-card:focus-within {
  transform: translateY(-2px);
}

.template-story {
  display: grid;
  grid-template-columns: minmax(120px, 240px) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin: 0 0 16px;
  padding: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #35106f, #8f2be8);
  border: 3px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(7, 23, 53, 0.18);
}

.template-story[data-story-theme="explorer"] {
  background: linear-gradient(135deg, #064a2e, #168a52);
}

.template-story[data-story-theme="animal"] {
  background: linear-gradient(135deg, #8b230f, #f46e21);
}

.template-story[data-story-theme="future"] {
  background: linear-gradient(135deg, #07235e, #0d63d8);
}

.template-story[data-story-theme="sports"] {
  background: linear-gradient(135deg, #7b1014, #d61f28);
}

.template-story[data-story-theme="ability"] {
  background: linear-gradient(135deg, #111827, #d89a11);
}

.template-story[hidden] {
  display: none;
}

.template-story img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: rgba(22, 4, 52, 0.72);
  border: 2px solid rgba(255, 230, 117, 0.95);
  border-radius: 6px;
}

.template-story .eyebrow {
  margin-bottom: 6px;
  color: #ffe675;
}

.template-story h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.template-story p {
  margin: 0;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.35;
}

.template-magic {
  border-color: rgba(83, 28, 155, 0.48);
  background: linear-gradient(135deg, rgba(83, 28, 155, 0.12), rgba(255, 255, 255, 0.96));
  box-shadow: 0 8px 22px rgba(83, 28, 155, 0.12);
}

.template-explorer {
  border-color: rgba(14, 101, 60, 0.48);
  background: linear-gradient(135deg, rgba(14, 101, 60, 0.12), rgba(255, 255, 255, 0.96));
  box-shadow: 0 8px 22px rgba(14, 101, 60, 0.12);
}

.template-animal {
  border-color: rgba(183, 91, 19, 0.5);
  background: linear-gradient(135deg, rgba(225, 120, 25, 0.14), rgba(255, 255, 255, 0.96));
  box-shadow: 0 8px 22px rgba(183, 91, 19, 0.13);
}

.template-future {
  border-color: rgba(9, 91, 187, 0.5);
  background: linear-gradient(135deg, rgba(9, 91, 187, 0.13), rgba(255, 255, 255, 0.96));
  box-shadow: 0 8px 22px rgba(9, 91, 187, 0.13);
}

.template-sports {
  border-color: rgba(159, 30, 33, 0.5);
  background: linear-gradient(135deg, rgba(215, 38, 47, 0.13), rgba(255, 255, 255, 0.96));
  box-shadow: 0 8px 22px rgba(159, 30, 33, 0.13);
}

.template-ability {
  border-color: rgba(216, 154, 17, 0.58);
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.12), rgba(249, 199, 61, 0.2), rgba(255, 255, 255, 0.96));
  box-shadow: 0 8px 22px rgba(216, 154, 17, 0.15);
}

.template-special {
  border-color: rgba(249, 199, 61, 0.72);
  background: linear-gradient(135deg, rgba(249, 199, 61, 0.24), rgba(255, 255, 255, 0.96));
  box-shadow: 0 8px 22px rgba(249, 199, 61, 0.18);
}

.template-magic:hover,
.template-magic:focus-within {
  border-color: #8e35d6;
  box-shadow: 0 10px 26px rgba(83, 28, 155, 0.32), 0 0 22px rgba(142, 53, 214, 0.32);
}

.template-explorer:hover,
.template-explorer:focus-within {
  border-color: #168a52;
  box-shadow: 0 10px 26px rgba(14, 101, 60, 0.3), 0 0 22px rgba(22, 138, 82, 0.28);
}

.template-animal:hover,
.template-animal:focus-within {
  border-color: #e17819;
  box-shadow: 0 10px 26px rgba(183, 91, 19, 0.3), 0 0 22px rgba(225, 120, 25, 0.28);
}

.template-future:hover,
.template-future:focus-within {
  border-color: #0d63d8;
  box-shadow: 0 10px 26px rgba(9, 91, 187, 0.3), 0 0 22px rgba(13, 99, 216, 0.3);
}

.template-sports:hover,
.template-sports:focus-within {
  border-color: #d7262f;
  box-shadow: 0 10px 26px rgba(159, 30, 33, 0.3), 0 0 22px rgba(215, 38, 47, 0.3);
}

.template-ability:hover,
.template-ability:focus-within {
  border-color: #d89a11;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.22), 0 0 22px rgba(216, 154, 17, 0.34);
}

.template-special:hover,
.template-special:focus-within {
  border-color: #d89a11;
  box-shadow: 0 10px 26px rgba(216, 154, 17, 0.28), 0 0 22px rgba(249, 199, 61, 0.34);
}

.template-note {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding: 16px;
  color: #071735;
  background: #fff4c2;
  border: 2px solid rgba(169, 109, 0, 0.25);
  border-radius: 8px;
}

.template-note strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.island-section {
  padding: 10px clamp(12px, 4vw, 42px) clamp(34px, 6vw, 72px);
  color: var(--white);
  background: #071735;
}

.island-heading {
  max-width: 880px;
  margin: 0 auto 10px;
  text-align: center;
}

.island-heading .eyebrow {
  color: var(--gold);
}

.island-heading h2 {
  max-width: none;
  margin: 0 auto;
  line-height: 0.9;
}

.island-heading p {
  max-width: 62ch;
  margin: 6px auto 0;
  color: #dbe8ff;
  line-height: 1.55;
}

.island-map {
  position: relative;
  aspect-ratio: 1659 / 948;
  min-height: 460px;
  width: min(100%, 1180px);
  margin: 0 auto;
  overflow: hidden;
  border: 4px solid #ffffff;
  border-radius: 8px;
  background:
    linear-gradient(rgba(2, 11, 36, 0.02), rgba(2, 11, 36, 0.08)),
    url("superstars-island-map.png") center / contain no-repeat;
  box-shadow: var(--shadow);
}

.island-map::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 11, 36, 0) 58%, rgba(2, 11, 36, 0.2) 100%);
  content: "";
  pointer-events: none;
}

.island-helper {
  max-width: 760px;
  margin: 10px auto 12px;
  padding: 0 12px;
  color: #f9fbff;
  font-size: clamp(0.95rem, 1.4vw, 1.18rem);
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.island,
.island-hq {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 8px 11px 8px 8px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.24);
  font: inherit;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

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

.island:hover,
.island:focus-visible,
.island.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(249, 199, 61, 0.28), 0 12px 24px rgba(0, 0, 0, 0.34);
  outline: none;
}

.island:hover,
.island:focus-visible {
  transform: translateY(-4px);
}

.island-hq:hover,
.island-hq:focus-visible {
  transform: translate(-50%, calc(-50% - 4px));
}

.island span,
.island-hq span {
  font-size: 0.9rem;
  width: 30px;
  height: 30px;
  flex-basis: 30px;
  border-width: 2px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    0 3px 0 rgba(65, 35, 0, 0.7),
    0 6px 12px rgba(0, 0, 0, 0.22);
}

.island strong,
.island-hq strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.02rem;
  line-height: 1;
  white-space: nowrap;
}

.island-magic { left: 67%; top: 18%; background: rgba(83, 28, 155, 0.84); }
.island-explorer { left: 14%; top: 18%; background: rgba(14, 101, 60, 0.84); }
.island-animal { left: 18%; bottom: 28%; background: rgba(183, 91, 19, 0.84); }
.island-future { right: 12%; top: 48%; background: rgba(9, 91, 187, 0.84); }
.island-sports { left: 51%; bottom: 20%; background: rgba(159, 30, 33, 0.84); }
.island-hq { left: 50%; top: 44%; transform: translate(-50%, -50%); background: rgba(7, 23, 53, 0.86); }

.island-map-story {
  display: grid;
  grid-template-columns: minmax(180px, 320px) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  width: min(100%, 980px);
  margin: 16px auto 0;
  max-height: none;
  overflow: auto;
  padding: 16px;
  color: #ffffff;
  background: linear-gradient(145deg, rgba(53, 16, 111, 0.92), rgba(143, 43, 232, 0.86));
  border: 2px solid rgba(249, 199, 61, 0.9);
  border-radius: 8px;
  box-shadow: 0 16px 30px rgba(2, 11, 36, 0.32);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.island-map-story img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 42%;
  margin-bottom: 10px;
  border: 2px solid rgba(255, 230, 117, 0.9);
  border-radius: 6px;
}

.island-map-story img[hidden] {
  display: none;
}

.island-map-story.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.island-map-story.story-magic {
  background: linear-gradient(145deg, rgba(53, 16, 111, 0.92), rgba(143, 43, 232, 0.86));
}

.island-map-story.story-explorer {
  background: linear-gradient(145deg, rgba(14, 101, 60, 0.94), rgba(32, 150, 86, 0.88));
}

.island-map-story strong {
  display: block;
  margin-bottom: 8px;
  color: #ffe675;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  line-height: 1;
  text-transform: uppercase;
}

.island-map-story p {
  margin: 0;
  font-size: clamp(0.72rem, 0.9vw, 0.9rem);
  font-weight: 800;
  line-height: 1.28;
}

.island-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  margin: 18px auto 0;
  padding: 20px;
  color: var(--ink);
  background: #ffffff;
  border: 3px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.island-detail.has-image {
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr) auto auto;
}

.island-detail-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 3px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(7, 23, 53, 0.18);
}

.island-detail-image[hidden] {
  display: none;
}

.island-detail .eyebrow {
  margin-bottom: 6px;
}

.island-detail h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.island-detail p {
  max-width: 68ch;
  margin: 8px 0 0;
  color: #263a64;
  line-height: 1.55;
}

.island-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.island-tags li {
  padding: 8px 10px;
  color: #071735;
  background: #fff4c2;
  border: 1px solid #dfaa16;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.island-button {
  white-space: nowrap;
}

.compact-worlds {
  padding-top: clamp(42px, 6vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1.1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
}

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

.world,
.package,
.step {
  min-height: 210px;
  padding: 24px;
  border: 2px solid rgba(7, 23, 53, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 23, 53, 0.08);
}

.world {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.world::after {
  position: absolute;
  right: -18px;
  bottom: -42px;
  color: rgba(255, 255, 255, 0.22);
  content: "\2605";
  font-size: 8rem;
  line-height: 1;
}

.world h3,
.world .theme-badge,
.world p {
  position: relative;
  z-index: 1;
}

.world .theme-badge {
  margin-bottom: 16px;
}

.world p,
.package p,
.step p,
.order-section p,
.site-footer p {
  line-height: 1.55;
}

.magic { background: linear-gradient(135deg, #35106f, var(--purple)); }
.explorer { background: linear-gradient(135deg, #064a2e, var(--green)); }
.sports { background: linear-gradient(135deg, #8b230f, var(--orange)); }
.future { background: linear-gradient(135deg, #07235e, var(--blue)); }
.animal { background: linear-gradient(135deg, #a64b00, #f0a21d); }
.ability { background: linear-gradient(135deg, #111827, #d89a11); }

.world-badge {
  display: block;
  width: clamp(76px, 11vw, 118px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: 0 0 12px;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.examples-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #edf7ff 100%);
}

.example-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
}

.example-image {
  padding: clamp(14px, 2.5vw, 24px);
  background: var(--white);
  border: 2px solid rgba(7, 23, 53, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.example-image img {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
}

.example-copy {
  max-width: 660px;
}

.example-copy p {
  color: #263a64;
  font-size: 1.08rem;
  line-height: 1.65;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 16px 14px 48px;
  color: #071735;
  background: var(--white);
  border: 1px solid rgba(7, 23, 53, 0.12);
  border-radius: 8px;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 16px;
  top: 12px;
  color: #9b6100;
  content: "\2605";
  font-size: 1.1rem;
}

.story-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  margin-top: clamp(28px, 5vw, 54px);
  overflow: hidden;
  background: var(--white);
  border: 2px solid rgba(7, 23, 53, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.story-card div {
  padding: clamp(22px, 4vw, 42px);
}

.story-card h3 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.story-card p:not(.eyebrow) {
  max-width: 62ch;
  color: #263a64;
  font-size: 1.05rem;
  line-height: 1.65;
}

.animal-story {
  border-color: rgba(244, 110, 33, 0.32);
}

.animal-story .eyebrow {
  color: #b75b13;
}

.franky-section {
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 10%, rgba(249, 199, 61, 0.22), transparent 32%),
    linear-gradient(135deg, #050812 0%, #111827 56%, #332100 100%);
}

.franky-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.franky-badge {
  display: grid;
  place-items: center;
}

.franky-badge img {
  width: min(100%, 420px);
  border-radius: 8px;
  filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.42));
}

.franky-copy {
  padding: clamp(18px, 3vw, 34px);
  border-left: 4px solid var(--gold);
}

.franky-copy .eyebrow {
  color: var(--gold);
}

.franky-copy h2 {
  max-width: 13ch;
  color: #ffffff;
}

.franky-copy p:not(.eyebrow) {
  max-width: 72ch;
  margin: 14px 0 0;
  color: #f4f7ff;
  font-size: 1.02rem;
  line-height: 1.68;
}

.logo-panel {
  margin-top: clamp(30px, 6vw, 72px);
  padding: clamp(10px, 2vw, 18px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(7, 23, 53, 0.1);
}

.logo-panel img {
  width: 100%;
  border-radius: 6px;
}

.superstar-offer {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(46px, 7vw, 88px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(rgba(7, 23, 53, 0.86), rgba(7, 23, 53, 0.88)),
    radial-gradient(circle at 80% 15%, rgba(249, 199, 61, 0.24), transparent 34%),
    #071735;
}

.superstar-offer .eyebrow {
  color: var(--gold);
}

.superstar-offer h2 {
  max-width: 14ch;
  color: var(--white);
}

.superstar-offer p {
  max-width: 58ch;
  color: #dbe8ff;
  line-height: 1.6;
}

.offer-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.offer-points span {
  padding: 8px 10px;
  color: #071735;
  background: #fff4c2;
  border: 1px solid #dfaa16;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.superstar-offer-card {
  overflow: hidden;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.superstar-offer-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.superstar-offer-card div {
  padding: 18px;
  color: var(--ink);
}

.superstar-offer-card strong {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.superstar-offer-card p {
  margin: 8px 0 0;
  color: #263a64;
}

.process-section {
  background: #edf7ff;
}

.step strong {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.packages-section {
  background: #fff8df;
}

.tshirt-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 0 0 22px;
}

.tshirt-card {
  overflow: hidden;
  background: var(--white);
  border: 2px solid rgba(7, 23, 53, 0.12);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(7, 23, 53, 0.08);
}

.artwork-free-note {
  display: block;
  width: 100%;
  padding: 8px 10px;
  color: #063b24;
  background: #d9f8d6;
  border-bottom: 1px solid rgba(34, 126, 64, 0.28);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.tshirt-card img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  object-position: center;
}

.tshirt-card h3 {
  padding: 14px 16px;
  color: var(--ink);
  background: #ffffff;
  font-size: 1.5rem;
  text-align: center;
}

.featured-shirt {
  border-color: #e5a900;
  box-shadow: var(--shadow);
}

.bottle-card img {
  object-fit: contain;
  background: #ffffff;
}

.wall-card img {
  object-position: center;
}

.mug-card img {
  object-position: center;
}

.bag-card img {
  object-fit: contain;
  background: #ffffff;
}

.frame-card img {
  object-fit: contain;
  background: #ffffff;
}

.package span {
  display: inline-block;
  margin-top: 16px;
  color: #9d4300;
  font-size: 1.15rem;
  font-weight: 900;
}

.package > .artwork-free-note {
  display: block;
  margin: -24px -24px 18px;
  width: auto;
  color: #063b24;
  font-size: 1rem;
}

.price-board {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: start;
  margin-top: 24px;
  padding: clamp(18px, 3vw, 28px);
  background: #ffffff;
  border: 2px solid rgba(157, 67, 0, 0.18);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(7, 23, 53, 0.1);
}

.price-board-heading h3,
.price-list strong,
.contact-panel strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
}

.price-board-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 0.96;
}

.price-board-heading p:not(.eyebrow) {
  color: #263a64;
  line-height: 1.55;
}

.price-list {
  display: grid;
  gap: 9px;
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  color: #071735;
  background: #f8fbff;
  border: 1px solid #cad5e8;
  border-radius: 8px;
  font-weight: 900;
}

.price-list strong {
  color: #9d4300;
  font-size: 1.12rem;
  white-space: nowrap;
}

.trust-section {
  background: #ffffff;
}

.trust-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-grid article,
.info-grid article,
.contact-panel {
  padding: 18px;
  background: #f8fbff;
  border: 2px solid rgba(7, 23, 53, 0.1);
  border-radius: 8px;
}

.trust-grid h3,
.info-grid h3 {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.trust-grid p,
.info-grid p {
  color: #263a64;
  line-height: 1.55;
}

.info-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  color: #ffffff;
  background: #071735;
}

.info-strip .eyebrow {
  color: var(--gold);
}

.info-strip h2 {
  color: #ffffff;
}

.info-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.info-grid h3,
.info-grid p {
  color: #ffffff;
}

.contact-panel {
  max-width: 520px;
  margin-top: 20px;
  color: #071735;
  background: #fff4c2;
  border-color: #dfaa16;
}

.contact-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.contact-panel p {
  margin: 5px 0;
  color: #263a64;
  font-weight: 900;
}

.featured {
  border-color: #e5a900;
  box-shadow: var(--shadow);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(54px, 8vw, 90px) clamp(18px, 5vw, 72px);
  background: #ffffff;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
  background: #f8fbff;
  border: 1px solid #cad5e8;
  border-radius: 8px;
}

.faq-list summary {
  color: var(--ink);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
}

.faq-list p {
  margin: 10px 0 0;
  color: #263a64;
  line-height: 1.55;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(rgba(7, 23, 53, 0.9), rgba(7, 23, 53, 0.9)),
    linear-gradient(135deg, #071735, #0d63d8);
}

.order-section .eyebrow {
  color: var(--gold);
}

.order-section h2 {
  color: var(--white);
}

.order-section p {
  max-width: 54ch;
  color: #dbe8ff;
}

.order-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.order-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.order-form label[hidden] {
  display: none;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid #cad5e8;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: #f8fbff;
}

.form-note {
  display: block;
  color: #405375;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.photo-consent {
  display: grid;
  gap: 10px;
  padding: 16px;
  color: #071735;
  background: linear-gradient(180deg, #fffdf3 0%, #f8fbff 100%);
  border: 2px solid #e0b52d;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(5, 16, 39, 0.08);
}

.photo-consent h3 {
  margin: 0;
  color: #071735;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.order-section .photo-consent p {
  margin: 0;
  color: #263a64;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
}

.photo-consent ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
  color: #263a64;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.42;
}

.order-form .photo-consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  color: #071735;
  background: #fff4c2;
  border: 2px solid #dfaa16;
  border-radius: 8px;
  cursor: pointer;
}

.order-form .photo-consent-checkbox input {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin: 0;
  padding: 0;
  accent-color: #0d63d8;
}

.photo-consent-checkbox span {
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.35;
}

.upload-next-step {
  margin: 26px 0;
  padding: clamp(20px, 4vw, 32px);
  color: #071735;
  background: linear-gradient(145deg, #fff9dc 0%, #ffffff 55%, #eef6ff 100%);
  border: 3px solid #dfaa16;
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(5, 16, 39, 0.14);
}

.upload-next-step h2,
.preview-promise h2 {
  margin-top: 5px;
}

.upload-step-label {
  display: inline-block;
  margin: 0;
  padding: 5px 10px;
  color: #ffffff;
  background: #0d63d8;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.upload-photo-button {
  width: 100%;
  justify-content: center;
  margin: 8px 0 2px;
  padding: 15px 20px;
  text-align: center;
}

.upload-help {
  padding: 12px;
  overflow-wrap: anywhere;
  color: #405375;
  background: #f4f7fc;
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.upload-checklist {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
  padding-left: 22px;
  color: #263a64;
  font-weight: 700;
  line-height: 1.45;
}

.preview-promise {
  margin: 26px 0;
  padding: clamp(20px, 4vw, 30px);
  color: #ffffff;
  background: linear-gradient(135deg, #071735, #0d63d8);
  border-radius: 14px;
}

.preview-promise .eyebrow {
  color: #f2c94c;
}

.preview-promise h2,
.preview-promise p {
  color: #ffffff;
}

.site-footer {
  padding: 24px clamp(18px, 5vw, 72px);
  color: #dbe8ff;
  background: #041126;
}

@media (max-width: 900px) {
  .section-heading,
  .example-feature,
  .story-card,
  .franky-card,
  .superstar-offer,
  .price-board,
  .info-strip,
  .faq-section,
  .order-section {
    grid-template-columns: 1fr;
  }

  .franky-copy {
    border-left: 0;
    border-top: 4px solid var(--gold);
  }

  .site-header {
    align-items: center;
  }

  .nav {
    justify-content: flex-start;
  }

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

  .hero-copy,
  .hero-showcase,
  .hero-logo,
  .superstar-potential {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-showcase-right {
    grid-column: 1;
  }

  .hero-art {
    grid-column: 1;
    grid-row: auto;
  }

  .hero::after {
    display: none;
  }

  h1 {
    max-width: 12ch;
  }

  .world-grid,
  .package-grid,
  .steps,
  .trust-grid,
  .info-grid,
  .tshirt-showcase,
  .strip {
    grid-template-columns: 1fr;
  }

  .header-icons {
    display: none;
  }

  .island-map {
    min-height: 0;
    width: calc(100% + 28px);
    margin-left: -14px;
    margin-right: -14px;
    aspect-ratio: 1659 / 948;
    background-size: contain;
  }

  .island-map-story {
    grid-template-columns: 1fr;
    width: auto;
    max-height: none;
    margin: 12px 0 0;
    transform: none;
  }

  .island-map-story.is-visible {
    transform: none;
  }

  .island,
  .island-hq {
    gap: 4px;
    padding: 5px 7px 5px 5px;
  }

  .island span,
  .island-hq span {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    font-size: 0.7rem;
  }

  .island strong,
  .island-hq strong {
    font-size: 0.72rem;
  }

  .island-magic { left: 50%; top: 18%; }
  .island-explorer { left: 12%; top: 17%; }
  .island-animal { left: 11%; bottom: 27%; }
  .island-future { right: 6%; top: 49%; }
  .island-sports { left: 47%; bottom: 18%; }
  .island-hq { left: 50%; top: 44%; transform: translate(-50%, -50%); }

  .island-detail {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .island-tags {
    justify-content: center;
  }

  .island-button {
    width: 100%;
  }

  .island:hover,
  .island:focus-visible,
  .island-hq:hover,
  .island-hq:focus-visible {
    transform: translateY(-3px);
  }

  .island-hq:hover,
  .island-hq:focus-visible {
    transform: translate(-50%, calc(-50% - 3px));
  }
}

@media (max-width: 560px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px 12px;
  }

  .site-header .brand {
    justify-self: center;
  }

  .brand {
    font-size: 1.15rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, auto));
    justify-content: center;
    gap: 7px 12px;
  }

  .nav a {
    font-size: 0.72rem;
    line-height: 1.1;
  }

  .hero {
    padding-inline: 10px;
  }

  .hero-logo {
    max-width: min(320px, 88vw);
    overflow: hidden;
  }

  .hero-showcase,
  .hero-showcase-right {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: 100%;
    width: 100%;
  }

  .tommy-card {
    min-width: 0;
    border-width: 1px;
    border-radius: 7px;
    box-shadow: 0 8px 16px rgba(5, 16, 39, 0.12);
  }

  .tommy-wizard,
  .tommy-design,
  .berty-future,
  .bonnie-design,
  .theo-design {
    aspect-ratio: 1 / 1.02;
    margin-top: 0;
  }

  .tommy-card img {
    object-fit: cover;
    object-position: center top;
  }

  .tommy-photo {
    grid-template-columns: 1fr;
    grid-template-rows: 82% 18%;
    aspect-ratio: 1 / 1.02;
    min-height: 0;
  }

  .tommy-photo img {
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
  }

  .bonnie-story img {
    object-fit: contain;
    object-position: center top;
    background: #f7f7f7;
  }

  .bonnie-design img {
    object-position: center 18%;
  }
  .tommy-photo figcaption {
    min-height: 0;
    overflow: auto;
  }

  .tommy-card figcaption,
  .tommy-photo:not(.tommy-wizard-photo) figcaption,
  .tommy-wizard-photo figcaption,
  .berty-photo figcaption,
  .theo-story figcaption {
    padding: 4px;
    font-size: 0.34rem;
    line-height: 1;
    text-align: left;
    overflow-wrap: anywhere;
  }

  .tommy-photo figcaption strong,
  .tommy-wizard-photo figcaption strong,
  .berty-photo figcaption strong,
  .theo-story figcaption strong {
    font-size: 0.42rem;
    line-height: 1;
  }

  .tommy-photo figcaption span,
  .tommy-wizard-photo figcaption span,
  .berty-photo figcaption span,
  .theo-story figcaption span {
    display: block;
    overflow: visible;
  }

  .hero-art {
    overflow: hidden;
  }

  .hero-art > img {
    max-width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .lineup-feature {
    width: 100%;
    margin: 0;
  }

  .world,
  .package,
  .step {
    min-height: auto;
  }
}
@media (max-width: 560px) {
  .tommy-photo.theo-story {
    grid-template-rows: 88% 12%;
    aspect-ratio: 1 / 1.02;
  }

  .tommy-photo.theo-story img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center top !important;
    background: #f7f7f7;
  }

  .tommy-photo.theo-story figcaption {
    padding: 3px 4px;
    font-size: 0.31rem;
    line-height: 1;
  }

  .tommy-photo.theo-story figcaption strong {
    font-size: 0.38rem;
    line-height: 1;
  }
}
@media (max-width: 560px) {
  .tommy-photo,
  .tommy-photo.perty-photo,
  .tommy-photo.berty-photo,
  .tommy-photo.tommy-wizard-photo {
    grid-template-rows: 88% 12%;
    aspect-ratio: 1 / 1.02;
  }

  .tommy-photo img,
  .tommy-photo.berty-photo img,
  .tommy-photo.tommy-wizard-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center top !important;
    background: #f7f7f7;
  }

  .tommy-photo figcaption,
  .tommy-photo.berty-photo figcaption,
  .tommy-photo.tommy-wizard-photo figcaption {
    padding: 3px 4px;
    font-size: 0.31rem;
    line-height: 1;
  }

  .tommy-photo figcaption strong,
  .tommy-photo.berty-photo figcaption strong,
  .tommy-photo.tommy-wizard-photo figcaption strong {
    font-size: 0.38rem;
    line-height: 1;
  }
}
@media (max-width: 560px) {
  .tommy-photo,
  .tommy-photo.theo-story,
  .tommy-photo.berty-photo,
  .tommy-photo.bonnie-story,
  .tommy-photo.tommy-wizard-photo {
    grid-template-rows: 68% 32%;
    aspect-ratio: 1 / 1.28;
  }

  .tommy-photo img,
  .tommy-photo.theo-story img,
  .tommy-photo.berty-photo img,
  .tommy-photo.bonnie-story img,
  .tommy-photo.tommy-wizard-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center top !important;
    background: #f7f7f7;
  }

  .tommy-photo figcaption,
  .tommy-photo.theo-story figcaption,
  .tommy-photo.berty-photo figcaption,
  .tommy-photo.bonnie-story figcaption,
  .tommy-photo.tommy-wizard-photo figcaption {
    padding: 6px;
    font-size: 0.45rem;
    line-height: 1.08;
    overflow: auto;
  }

  .tommy-photo figcaption strong,
  .tommy-photo.theo-story figcaption strong,
  .tommy-photo.berty-photo figcaption strong,
  .tommy-photo.bonnie-story figcaption strong,
  .tommy-photo.tommy-wizard-photo figcaption strong {
    font-size: 0.55rem;
    line-height: 1.02;
  }
}
@media (max-width: 560px) {
  .tommy-photo,
  .tommy-photo.theo-story,
  .tommy-photo.berty-photo,
  .tommy-photo.bonnie-story,
  .tommy-photo.tommy-wizard-photo {
    grid-template-rows: 54% 46%;
    aspect-ratio: 1 / 1.42;
  }

  .tommy-photo img,
  .tommy-photo.theo-story img,
  .tommy-photo.berty-photo img,
  .tommy-photo.bonnie-story img,
  .tommy-photo.tommy-wizard-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center top !important;
    background: #f7f7f7;
  }

  .tommy-photo figcaption,
  .tommy-photo.theo-story figcaption,
  .tommy-photo.berty-photo figcaption,
  .tommy-photo.bonnie-story figcaption,
  .tommy-photo.tommy-wizard-photo figcaption {
    padding: 8px;
    font-size: 0.58rem;
    line-height: 1.12;
    overflow: auto;
  }

  .tommy-photo figcaption strong,
  .tommy-photo.theo-story figcaption strong,
  .tommy-photo.berty-photo figcaption strong,
  .tommy-photo.bonnie-story figcaption strong,
  .tommy-photo.tommy-wizard-photo figcaption strong {
    font-size: 0.72rem;
    line-height: 1.05;
  }
}
@media (max-width: 560px) {
  .hero-showcase .tommy-card,
  .hero-showcase-right .tommy-card {
    aspect-ratio: 1 / 1.22;
  }

  .hero-showcase .tommy-card:not(.tommy-photo),
  .hero-showcase-right .tommy-card:not(.tommy-photo) {
    display: block;
  }

  .hero-showcase .tommy-card:not(.tommy-photo) figcaption,
  .hero-showcase-right .tommy-card:not(.tommy-photo) figcaption {
    display: none;
  }

  .hero-showcase .tommy-card:not(.tommy-photo) img,
  .hero-showcase-right .tommy-card:not(.tommy-photo) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .tommy-photo,
  .tommy-photo.theo-story,
  .tommy-photo.berty-photo,
  .tommy-photo.bonnie-story,
  .tommy-photo.tommy-wizard-photo {
    display: grid;
    grid-template-rows: 56% 44%;
    aspect-ratio: 1 / 1.22;
  }

  .tommy-photo img,
  .tommy-photo.theo-story img,
  .tommy-photo.berty-photo img,
  .tommy-photo.bonnie-story img,
  .tommy-photo.tommy-wizard-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center top !important;
    background: #f7f7f7;
  }

  .tommy-photo figcaption,
  .tommy-photo.theo-story figcaption,
  .tommy-photo.berty-photo figcaption,
  .tommy-photo.bonnie-story figcaption,
  .tommy-photo.tommy-wizard-photo figcaption {
    align-content: start;
    gap: 3px;
    padding: 7px;
    font-size: 0.53rem;
    line-height: 1.08;
    overflow: hidden;
  }

  .tommy-photo figcaption strong,
  .tommy-photo.theo-story figcaption strong,
  .tommy-photo.berty-photo figcaption strong,
  .tommy-photo.bonnie-story figcaption strong,
  .tommy-photo.tommy-wizard-photo figcaption strong {
    font-size: 0.64rem;
    line-height: 1.02;
  }
}
@media (max-width: 560px) {
  .hero-showcase .tommy-card,
  .hero-showcase-right .tommy-card {
    aspect-ratio: 1 / 1.32;
  }

  .hero-showcase .tommy-card:not(.tommy-photo) figcaption,
  .hero-showcase-right .tommy-card:not(.tommy-photo) figcaption {
    display: none;
  }

  .hero-showcase .tommy-card:not(.tommy-photo) img,
  .hero-showcase-right .tommy-card:not(.tommy-photo) img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center top !important;
    background: #ffffff;
  }

  .tommy-photo,
  .tommy-photo.theo-story,
  .tommy-photo.berty-photo,
  .tommy-photo.bonnie-story,
  .tommy-photo.tommy-wizard-photo {
    display: grid;
    grid-template-rows: 64% 36%;
    aspect-ratio: 1 / 1.32;
    overflow: hidden;
  }

  .tommy-photo img,
  .tommy-photo.theo-story img,
  .tommy-photo.berty-photo img,
  .tommy-photo.bonnie-story img,
  .tommy-photo.tommy-wizard-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center top !important;
    background: #ffffff;
  }

  .tommy-photo figcaption,
  .tommy-photo.theo-story figcaption,
  .tommy-photo.berty-photo figcaption,
  .tommy-photo.bonnie-story figcaption,
  .tommy-photo.tommy-wizard-photo figcaption {
    align-content: start;
    gap: 3px;
    padding: 6px;
    font-size: 0.49rem;
    line-height: 1.06;
    overflow: hidden;
  }

  .tommy-photo figcaption strong,
  .tommy-photo.theo-story figcaption strong,
  .tommy-photo.berty-photo figcaption strong,
  .tommy-photo.bonnie-story figcaption strong,
  .tommy-photo.tommy-wizard-photo figcaption strong {
    font-size: 0.59rem;
    line-height: 1.02;
  }
}
@media (max-width: 560px) {
  .tommy-photo figcaption,
  .tommy-photo.theo-story figcaption,
  .tommy-photo.berty-photo figcaption,
  .tommy-photo.bonnie-story figcaption,
  .tommy-photo.tommy-wizard-photo figcaption {
    font-size: 0.57rem;
    line-height: 1.08;
  }

  .tommy-photo figcaption strong,
  .tommy-photo.theo-story figcaption strong,
  .tommy-photo.berty-photo figcaption strong,
  .tommy-photo.bonnie-story figcaption strong,
  .tommy-photo.tommy-wizard-photo figcaption strong {
    font-size: 0.68rem;
    line-height: 1.02;
  }
}
@media (max-width: 560px) {
  .hero-showcase .tommy-photo figcaption,
  .hero-showcase-right .tommy-photo figcaption,
  .hero-showcase .tommy-photo:not(.tommy-wizard-photo) figcaption,
  .hero-showcase-right .tommy-photo:not(.tommy-wizard-photo) figcaption,
  .hero-showcase .tommy-wizard-photo figcaption,
  .hero-showcase-right .tommy-wizard-photo figcaption,
  .hero-showcase .berty-photo figcaption,
  .hero-showcase-right .berty-photo figcaption,
  .hero-showcase .theo-story figcaption,
  .hero-showcase-right .theo-story figcaption,
  .hero-showcase .bonnie-story figcaption,
  .hero-showcase-right .bonnie-story figcaption {
    font-size: 0.57rem !important;
    line-height: 1.08 !important;
  }

  .hero-showcase .tommy-photo figcaption strong,
  .hero-showcase-right .tommy-photo figcaption strong,
  .hero-showcase .tommy-wizard-photo figcaption strong,
  .hero-showcase-right .tommy-wizard-photo figcaption strong,
  .hero-showcase .berty-photo figcaption strong,
  .hero-showcase-right .berty-photo figcaption strong,
  .hero-showcase .theo-story figcaption strong,
  .hero-showcase-right .theo-story figcaption strong,
  .hero-showcase .bonnie-story figcaption strong,
  .hero-showcase-right .bonnie-story figcaption strong {
    font-size: 0.68rem !important;
    line-height: 1.02 !important;
  }
}
@media (max-width: 560px) {
  .hero-showcase .tommy-photo figcaption,
  .hero-showcase-right .tommy-photo figcaption,
  .hero-showcase .tommy-photo:not(.tommy-wizard-photo) figcaption,
  .hero-showcase-right .tommy-photo:not(.tommy-wizard-photo) figcaption,
  .hero-showcase .tommy-wizard-photo figcaption,
  .hero-showcase-right .tommy-wizard-photo figcaption,
  .hero-showcase .berty-photo figcaption,
  .hero-showcase-right .berty-photo figcaption,
  .hero-showcase .theo-story figcaption,
  .hero-showcase-right .theo-story figcaption,
  .hero-showcase .bonnie-story figcaption,
  .hero-showcase-right .bonnie-story figcaption {
    font-size: 0.66rem !important;
    line-height: 1.08 !important;
  }

  .hero-showcase .tommy-photo figcaption strong,
  .hero-showcase-right .tommy-photo figcaption strong,
  .hero-showcase .tommy-wizard-photo figcaption strong,
  .hero-showcase-right .tommy-wizard-photo figcaption strong,
  .hero-showcase .berty-photo figcaption strong,
  .hero-showcase-right .berty-photo figcaption strong,
  .hero-showcase .theo-story figcaption strong,
  .hero-showcase-right .theo-story figcaption strong,
  .hero-showcase .bonnie-story figcaption strong,
  .hero-showcase-right .bonnie-story figcaption strong {
    font-size: 0.78rem !important;
    line-height: 1.02 !important;
  }
}
/* Smaller island map labels so they do not cover the buildings. */
.island,
.island-hq {
  gap: 6px;
  padding: 6px 11px 6px 6px;
  border-width: 2px;
}

.island span,
.island-hq span {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
  font-size: 0.72rem;
}

.island strong,
.island-hq strong {
  font-size: 0.82rem;
}

.island-magic { left: 58%; top: 24%; }
.island-explorer { left: 10%; top: 23%; }
.island-animal { left: 9%; bottom: 21%; }
.island-future { right: 4%; top: 56%; }
.island-sports { left: 48%; bottom: 12%; }
.island-hq { left: 50%; top: 50%; transform: translate(-50%, -50%); }

@media (max-width: 900px) {
  .island,
  .island-hq {
    gap: 3px;
    padding: 4px 7px 4px 4px;
    border-width: 1px;
  }

  .island span,
  .island-hq span {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
    font-size: 0.55rem;
  }

  .island strong,
  .island-hq strong {
    font-size: 0.55rem;
    letter-spacing: 0.01em;
  }

  .island-magic { left: 58%; top: 22%; }
  .island-explorer { left: 8%; top: 23%; }
  .island-animal { left: 8%; bottom: 22%; }
  .island-future { right: 2%; top: 57%; }
  .island-sports { left: 50%; bottom: 11%; }
  .island-hq { left: 49%; top: 50%; transform: translate(-50%, -50%); }
}
/* Push island labels farther away from the buildings. */
.island-magic { left: 71%; top: 27%; }
.island-explorer { left: 5%; top: 31%; }
.island-animal { left: 5%; bottom: 13%; }
.island-future { right: 1%; top: 66%; }
.island-sports { left: 56%; bottom: 5%; }
.island-hq { left: 50%; top: 56%; transform: translate(-50%, -50%); }

@media (max-width: 900px) {
  .island-magic { left: 70%; top: 27%; }
  .island-explorer { left: 4%; top: 31%; }
  .island-animal { left: 4%; bottom: 13%; }
  .island-future { right: 0%; top: 66%; }
  .island-sports { left: 56%; bottom: 5%; }
  .island-hq { left: 50%; top: 57%; transform: translate(-50%, -50%); }
}
/* Tighten space after removing the blue promise strip. */
.hero {
  padding-bottom: 0;
}

.hero-art {
  margin-bottom: 0;
}

.island-section {
  padding-top: 0;
}

@media (max-width: 560px) {
  .hero {
    gap: 10px;
    padding-bottom: 0;
  }

  .hero-art {
    margin-top: 0;
    margin-bottom: 0;
  }

  .island-section {
    padding-top: 0;
  }
}
@media (max-width: 560px) {
  .hero-logo {
    max-width: 98vw;
    width: 98vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 560px) {
  .hero-logo {
    max-width: 92vw !important;
    width: 92vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
    transform: none !important;
  }
}
.category-badges img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.category-badges img {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
}
/* Tighten group photo, badge row, and island section spacing. */
.hero-art {
  gap: 0 !important;
}

.lineup-crop {
  margin-bottom: -4px;
}

.lineup-crop img {
  aspect-ratio: 16 / 7.45 !important;
  object-position: center top !important;
}

.category-badges {
  margin-top: -2px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  gap: clamp(2px, 0.7vw, 8px) !important;
}

.island-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.island-heading {
  margin-top: 0 !important;
  margin-bottom: 6px !important;
}

@media (max-width: 560px) {
  .hero-art {
    gap: 0 !important;
  }

  .lineup-crop {
    margin-bottom: -6px;
  }

  .lineup-crop img {
    aspect-ratio: 16 / 7.35 !important;
  }

  .category-badges {
    margin-top: -3px;
    padding-left: 2px !important;
    padding-right: 2px !important;
    gap: 1px !important;
  }

  .island-heading {
    margin-bottom: 4px !important;
  }
}
/* Restore clean group image and full badge visibility. */
.hero-art {
  gap: 6px !important;
  padding-bottom: 0 !important;
}

.lineup-crop {
  margin-bottom: 0 !important;
  overflow: visible !important;
}

.lineup-crop img {
  aspect-ratio: auto !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center top !important;
}

.category-badges {
  margin-top: 0 !important;
  padding: 0 4px 8px !important;
  gap: 3px !important;
  overflow: visible !important;
}

.category-badges img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
  object-position: center !important;
  overflow: visible !important;
}

@media (max-width: 560px) {
  .hero-art {
    gap: 4px !important;
  }

  .lineup-crop {
    margin-bottom: 0 !important;
    overflow: visible !important;
  }

  .lineup-crop img {
    aspect-ratio: auto !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .category-badges {
    margin-top: 0 !important;
    padding: 0 2px 6px !important;
    gap: 2px !important;
  }
}
/* Clean lineup crop with badges tucked close underneath. */
.lineup-crop {
  overflow: visible !important;
  margin-bottom: -2px !important;
}

.lineup-crop img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  display: block !important;
}

.category-badges {
  margin-top: -10px !important;
  padding-top: 0 !important;
  padding-bottom: 4px !important;
  gap: 2px !important;
}

.category-badges img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

@media (max-width: 560px) {
  .category-badges {
    margin-top: -8px !important;
    padding-bottom: 2px !important;
    gap: 1px !important;
  }
}
@media (max-width: 560px) {
  .template-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .template-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .template-tab {
    padding: 8px 6px;
    font-size: 0.88rem;
  }

  .template-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .template-card {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 116px;
    padding: 12px;
  }

  .template-card img {
    width: 58px;
  }

  .template-card h3 {
    font-size: 1.24rem;
  }

  .template-card p {
    font-size: 0.82rem;
  }

  .template-story {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .template-story img {
    max-height: none;
    object-position: center center;
  }
}

/* Account setup section */
.account-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
  padding: clamp(52px, 8vw, 96px) clamp(18px, 6vw, 84px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 23, 53, 0.94), rgba(9, 91, 187, 0.82)),
    url("superstars-island-map.png") center / contain no-repeat;
}

.account-section .eyebrow {
  color: var(--gold);
}

.account-section h2 {
  max-width: 13ch;
  color: var(--white);
}

.account-section p {
  max-width: 58ch;
  color: #dbe8ff;
  line-height: 1.6;
}

.account-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.account-steps li {
  padding: 10px 12px;
  color: #071735;
  background: #fff4c2;
  border: 1px solid #dfaa16;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}

.account-form {
  border: 3px solid var(--gold);
}

@media (max-width: 820px) {
  .account-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .account-section {
    padding: 34px 14px;
  }

  .account-steps {
    grid-template-columns: 1fr;
  }
}

/* Final badge display fix: transparent badges, no clipping. */
.category-badges {
  align-items: end !important;
  gap: clamp(1px, 0.5vw, 5px) !important;
  margin-top: -4px !important;
  padding: 0 2px 8px !important;
  overflow: visible !important;
}

.category-badges img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.template-card img,
.world-badge {
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 560px) {
  .category-badges {
    gap: 0 !important;
    margin-top: -2px !important;
    padding: 0 1px 7px !important;
  }
}

/* Stop the full category badges being clipped at the top. */
.category-badges {
  margin-top: 3px !important;
  padding-top: 8px !important;
}

@media (max-width: 560px) {
  .category-badges {
    margin-top: 2px !important;
    padding-top: 7px !important;
  }
}

/* Final fix for the full badge row: keep every badge fully visible. */
.hero-art {
  overflow: visible !important;
}

.category-badges {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  width: 100% !important;
  margin: -2px auto 0 !important;
  padding: 5px 8px 5px !important;
  gap: clamp(6px, 1.4vw, 14px) !important;
  overflow: visible !important;
}

.category-badges img {
  width: 100% !important;
  max-width: 150px !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  border-radius: 22px !important;
  margin: 0 auto !important;
  transform: none !important;
}

@media (max-width: 560px) {
  .category-badges {
    padding: 4px 4px 5px !important;
  }

  .category-badges img {
    width: 100% !important;
  }
}

/* Island buttons now take customers to templates only. */
.island-map-story,
.island-detail {
  display: none !important;
}

/* Force a phone-style preview when the URL includes ?phone-view=1. */
body.phone-preview {
  width: 390px;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  background: #f7fbff;
}

body.phone-preview .site-header {
  position: static;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 10px 12px;
}

body.phone-preview .site-header .brand {
  justify-self: center;
}

body.phone-preview .brand {
  font-size: 1.15rem;
}

body.phone-preview .brand-mark {
  width: 34px;
  height: 34px;
}

body.phone-preview .nav {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  justify-content: center;
  gap: 7px 12px;
}

body.phone-preview .nav a {
  font-size: 0.72rem;
  line-height: 1.1;
}

body.phone-preview .hero {
  gap: 10px;
  padding-inline: 10px;
  padding-bottom: 0;
}

body.phone-preview .hero-logo {
  max-width: 92vw !important;
  width: 92vw !important;
}

body.phone-preview .hero-showcase,
body.phone-preview .hero-showcase-right {
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 0.7fr);
  gap: 8px;
  max-width: 100%;
  width: 100%;
}

body.phone-preview .tommy-card {
  min-width: 0;
  border-width: 1px;
  border-radius: 7px;
  box-shadow: 0 8px 16px rgba(5, 16, 39, 0.12);
}

body.phone-preview .tommy-wizard,
body.phone-preview .tommy-design,
body.phone-preview .berty-future,
body.phone-preview .bonnie-design,
body.phone-preview .theo-design {
  aspect-ratio: 1 / 1.02;
  margin-top: 0;
}

body.phone-preview .tommy-card img {
  object-fit: cover;
  object-position: center top;
}

body.phone-preview .tommy-photo {
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1fr) auto;
  aspect-ratio: auto;
  min-height: 0;
}

body.phone-preview .tommy-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

body.phone-preview .tommy-photo figcaption,
body.phone-preview .tommy-wizard-photo figcaption,
body.phone-preview .berty-photo figcaption,
body.phone-preview .theo-story figcaption {
  padding: 4px;
  font-size: 0.52rem;
  line-height: 1.05;
  text-align: left;
  overflow-wrap: anywhere;
}

body.phone-preview .tommy-photo figcaption span,
body.phone-preview .tommy-wizard-photo figcaption span,
body.phone-preview .berty-photo figcaption span,
body.phone-preview .theo-story figcaption span {
  display: block;
}

body.phone-preview .tommy-photo figcaption strong,
body.phone-preview .tommy-wizard-photo figcaption strong,
body.phone-preview .berty-photo figcaption strong,
body.phone-preview .theo-story figcaption strong {
  font-size: 0.62rem;
  line-height: 1.05;
}

body.phone-preview .hero-art {
  gap: 4px !important;
  overflow: visible !important;
}

body.phone-preview .hero-actions .button {
  width: 100%;
}

body.phone-preview .category-badges {
  padding: 4px 4px 5px !important;
}

body.phone-preview .category-badges img {
  width: 100% !important;
  height: 100% !important;
}

body.phone-preview .map-section,
body.phone-preview .island-section,
body.phone-preview .template-section,
body.phone-preview .account-section {
  padding-left: 14px;
  padding-right: 14px;
}

body.phone-preview .template-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

body.phone-preview .template-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

body.phone-preview .template-story {
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 12px;
}

/* SuperStars journey upgrades */
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 18px auto 0;
}

.hero-proof span {
  min-height: 36px;
  padding: 9px 12px;
  color: #071735;
  background: #fff4c2;
  border: 2px solid rgba(169, 109, 0, 0.22);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 900;
}

.adventure-builder {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(300px, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin: 18px auto 14px;
  padding: clamp(14px, 2vw, 18px);
  color: #071735;
  background: #ffffff;
  border: 3px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.builder-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px 14px;
  align-items: center;
}

.builder-card .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.builder-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.builder-card h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.builder-card p {
  grid-column: 2;
  margin: 4px 0 0;
  color: #263a64;
  font-size: 0.92rem;
  line-height: 1.35;
}

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

.builder-steps span {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 8px;
  color: #263a64;
  background: #eef5ff;
  border: 2px solid rgba(7, 23, 53, 0.1);
  border-radius: 8px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.builder-steps span.is-current,
.builder-steps span.is-complete {
  color: #071735;
  background: var(--gold);
  border-color: #a96d00;
}

.template-card {
  cursor: pointer;
}

.template-card.is-selected {
  transform: translateY(-2px);
  border-color: #071735 !important;
  box-shadow: 0 12px 28px rgba(7, 23, 53, 0.24), 0 0 0 4px rgba(249, 199, 61, 0.46) !important;
}

.template-choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 16px;
  color: #071735;
  background: #f8fbff;
  border: 2px solid rgba(7, 23, 53, 0.12);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(5, 16, 39, 0.08);
}

.template-choice .eyebrow {
  margin-bottom: 4px;
}

.template-choice strong {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.template-choice span {
  display: block;
  margin-top: 4px;
  color: #263a64;
  font-weight: 700;
}

.order-form input[readonly] {
  color: #071735;
  background: #fff4c2;
  border-color: #dfaa16;
  font-weight: 900;
}

@media (max-width: 900px) {
  .adventure-builder,
  .template-choice {
    grid-template-columns: 1fr;
  }

  .adventure-builder .button,
  .template-choice .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-proof span {
    min-height: 34px;
    padding: 8px 10px;
  }

  .builder-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .builder-card img {
    width: 58px;
    height: 58px;
  }

  .builder-card p {
    grid-column: 1 / -1;
  }

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

/* Parent-first buying path */
.buying-section {
  background:
    linear-gradient(180deg, rgba(255, 246, 198, 0.96), rgba(255, 255, 255, 0.98)),
    #fff7d8;
}

.buying-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.buying-flow article {
  min-height: 190px;
  padding: 20px;
  color: #071735;
  background: #ffffff;
  border: 2px solid rgba(169, 109, 0, 0.22);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(7, 23, 53, 0.08);
}

.buying-flow strong {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  place-items: center;
  color: #071735;
  background: var(--gold);
  border-radius: 50%;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.4rem;
}

.buying-flow h3 {
  margin-bottom: 8px;
}

.product-list-intro {
  margin: 24px 0 12px;
  color: #071735;
  font-weight: 800;
  text-align: center;
}
.quick-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

[data-product-choice] {
  position: relative;
}

.quick-products a {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px 14px;
  min-height: 90px;
  padding: 0 14px 10px 10px;
  overflow: hidden;
  color: #071735;
  background: #ffffff;
  border: 2px solid rgba(7, 23, 53, 0.12);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(7, 23, 53, 0.08);
}

[data-product-choice].is-added {
  border-color: #227e40;
  box-shadow: 0 0 0 4px rgba(34, 126, 64, 0.18), 0 12px 26px rgba(7, 23, 53, 0.14);
}

[data-product-choice].is-added::after {
  content: "Selected";
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  padding: 5px 8px;
  color: #063b24;
  background: #d9f8d6;
  border: 1px solid rgba(34, 126, 64, 0.34);
  border-radius: 999px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.quick-products .artwork-free-note {
  grid-column: 1 / -1;
  margin: 0 -14px 0 -10px;
}

.quick-products a.is-added::after {
  top: 38px;
  right: 10px;
}

.quick-products a[data-product-choice="Digital Artwork"] {
  color: #063b24;
  background: #d9f8d6;
  border-color: rgba(34, 126, 64, 0.34);
}

.quick-products a[data-product-choice="Digital Artwork"] .artwork-free-note {
  background: #d9f8d6;
  border-bottom-color: rgba(34, 126, 64, 0.28);
}

.quick-products a[data-product-choice="Digital Artwork"] .product-copy small {
  color: #245b3b;
}

.quick-products a[data-product-choice="Digital Artwork"] 
.product-side {
  display: grid;
  justify-items: end;
  gap: 5px;
  align-self: center;
}

.add-cart-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 5px 7px;
  color: #071735;
  background: #f9c73d;
  border: 1px solid rgba(169, 109, 0, 0.32);
  border-radius: 7px;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.quick-products a.is-added .add-cart-label {
  color: #063b24;
  background: #d9f8d6;
  border-color: rgba(34, 126, 64, 0.34);
}
.product-price {
  color: #063b24;
  background: #d9f8d6;
  border-color: rgba(34, 126, 64, 0.34);
}

.quick-products a img {
  width: 82px;
  height: 82px;
  border-radius: 7px;
  object-fit: cover;
  background: #f8fbff;
  border: 1px solid rgba(7, 23, 53, 0.14);
}

.product-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.product-copy strong {
  font: inherit;
  line-height: 1.05;
}

.product-copy small {
  color: #42506d;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
}


.product-side {
  display: grid;
  justify-items: end;
  gap: 5px;
  align-self: center;
}

.add-cart-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 5px 7px;
  color: #071735;
  background: #f9c73d;
  border: 1px solid rgba(169, 109, 0, 0.32);
  border-radius: 7px;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.quick-products a.is-added .add-cart-label {
  color: #063b24;
  background: #d9f8d6;
  border-color: rgba(34, 126, 64, 0.34);
}
.product-price {
  align-self: center;
  padding: 7px 9px;
  color: #8a5600;
  background: #fff4c2;
  border: 1px solid rgba(169, 109, 0, 0.24);
  border-radius: 7px;
  font-size: 0.86rem;
  line-height: 1;
  white-space: nowrap;
}

.quick-products a:hover,
.quick-products a:focus-visible,
.mini-buy:hover,
.mini-buy:focus-visible {
  border-color: #d89a11;
  box-shadow: 0 0 0 4px rgba(249, 199, 61, 0.28), 0 12px 26px rgba(7, 23, 53, 0.14);
  outline: none;
}
.buying-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.mini-buy {
  justify-content: center;
  min-height: 42px;
  margin-top: 12px;
  padding: 10px 12px;
  background: #fff4c2;
  border-color: rgba(169, 109, 0, 0.28);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .buying-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .buying-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .buying-flow,
  .quick-products {
    grid-template-columns: 1fr;
  }

  .buying-flow article {
    min-height: 0;
    padding: 16px;
  }

  .buying-actions .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .quick-products a {
    grid-template-columns: 68px minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 74px;
    padding: 0 10px 8px 8px;
  }

  .quick-products .artwork-free-note {
    margin: 0 -10px 0 -8px;
    font-size: 0.86rem;
  }

  .quick-products a img {
    width: 68px;
    height: 68px;
  }

  .product-copy small {
    font-size: 0.78rem;
  }

  
.product-side {
  display: grid;
  justify-items: end;
  gap: 5px;
  align-self: center;
}

.add-cart-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 5px 7px;
  color: #071735;
  background: #f9c73d;
  border: 1px solid rgba(169, 109, 0, 0.32);
  border-radius: 7px;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.quick-products a.is-added .add-cart-label {
  color: #063b24;
  background: #d9f8d6;
  border-color: rgba(34, 126, 64, 0.34);
}
.product-price {
    padding: 6px 7px;
    font-size: 0.78rem;
  }
}



.product-preview-trigger {
  cursor: zoom-in;
}

.product-preview-trigger:focus-visible {
  outline: 4px solid rgba(249, 199, 61, 0.72);
  outline-offset: -4px;
}

body.preview-open {
  overflow: hidden;
}

.image-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 36px);
  background: rgba(2, 11, 36, 0.78);
  backdrop-filter: blur(3px);
}

.image-preview-modal[hidden] {
  display: none;
}

.image-preview-dialog {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  width: min(920px, 96vw);
  max-height: 92vh;
}

.image-preview-image {
  display: block;
  max-width: 100%;
  max-height: min(76vh, 760px);
  object-fit: contain;
  background: #ffffff;
  border: 4px solid #ffffff;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

.image-preview-caption {
  margin: 0;
  padding: 8px 12px;
  color: #071735;
  background: #fff4c2;
  border: 2px solid rgba(169, 109, 0, 0.28);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}

.image-preview-close {
  justify-self: end;
  min-width: 44px;
  min-height: 44px;
  color: #071735;
  background: var(--gold);
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 5px 0 #9b6100;
}

.image-preview-close:focus-visible {
  outline: 4px solid rgba(255, 255, 255, 0.72);
  outline-offset: 3px;
}

.order-basket {
  display: grid;
  gap: 12px;
  padding: 18px;
  color: #071735;
  background: #fff4c2;
  border: 2px solid rgba(169, 109, 0, 0.28);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(7, 23, 53, 0.08);
}

.order-basket h3 {
  margin: 0;
  font-size: 1.7rem;
}

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

.order-basket li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid rgba(7, 23, 53, 0.12);
  border-radius: 8px;
  font-weight: 900;
}

.order-basket .basket-empty {
  color: #42506d;
  font-weight: 800;
}

.order-basket button {
  min-height: 34px;
  padding: 7px 10px;
  color: #ffffff;
  background: #071735;
  border: 0;
  border-radius: 7px;
  font-weight: 900;
  cursor: pointer;
}

.order-basket button:focus-visible {
  outline: 4px solid rgba(216, 154, 17, 0.36);
  outline-offset: 2px;
}












/* Codex phone preview containment fix: keep restored preview inside the visible phone width. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body.phone-preview {
  width: min(390px, 100vw) !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

body.phone-preview main,
body.phone-preview section,
body.phone-preview .hero,
body.phone-preview .hero-art,
body.phone-preview .lineup-crop,
body.phone-preview .buying-section,
body.phone-preview .quick-products,
body.phone-preview .island-section,
body.phone-preview .template-section,
body.phone-preview .shop-section,
body.phone-preview .account-section,
body.phone-preview .custom-section,
body.phone-preview .site-footer {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow-x: hidden !important;
}

body.phone-preview .hero {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 12px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

body.phone-preview .hero-logo,
body.phone-preview .hero-copy,
body.phone-preview .hero-showcase,
body.phone-preview .hero-showcase-right,
body.phone-preview .hero-art {
  grid-column: 1 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.phone-preview .hero-logo img,
body.phone-preview .lineup-crop img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
}

body.phone-preview .category-badges img {
  width: 64px !important;
  max-width: 64px !important;
  aspect-ratio: 1 / 1 !important;
  height: 64px !important;
  object-fit: cover !important;
  border-radius: 18px !important;
}

@media (max-width: 560px) {
  .category-badges img,
  body.phone-preview .category-badges img {
    width: 64px !important;
    max-width: 64px !important;
    height: 64px !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    border-radius: 18px !important;
  }
}

@media (max-width: 360px) {
  .category-badges img,
  body.phone-preview .category-badges img {
    width: 56px !important;
    max-width: 56px !important;
    height: 56px !important;
  }
}

body.phone-preview .hero-showcase,
body.phone-preview .hero-showcase-right {
  display: grid !important;
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 0.7fr) !important;
  gap: 8px !important;
}

body.phone-preview .tommy-card,
body.phone-preview .quick-products a,
body.phone-preview .tshirt-card,
body.phone-preview .package,
body.phone-preview .story-card,
body.phone-preview .template-card {
  min-width: 0 !important;
  max-width: 100% !important;
}

body.phone-preview .tommy-card figcaption,
body.phone-preview .product-copy,
body.phone-preview .product-copy strong,
body.phone-preview .product-copy small {
  min-width: 0 !important;
  overflow-wrap: anywhere;
}

body.phone-preview .quick-products a {
  grid-template-columns: 68px minmax(0, 1fr) auto !important;
}

body.phone-preview .quick-products a img {
  width: 68px !important;
  max-width: 68px !important;
  height: 68px !important;
}

.hero-headline-lockup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(90px, 13vw, 170px);
  align-items: center;
  gap: clamp(8px, 1.7vw, 18px);
  max-width: min(900px, 100%);
  margin: 0 auto;
  overflow: hidden;
}

.hero-headline-lockup h1 {
  max-width: 16ch;
  margin: 0;
  justify-self: end;
  line-height: 0.92;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-wrap: balance;
}

.hero-franky-figure {
  width: 138%;
  align-self: end;
  justify-self: start;
  object-fit: contain;
  transform: translateX(28px);
  filter: drop-shadow(0 10px 14px rgba(5, 16, 39, 0.16));
}

@media (max-width: 560px) {
  .hero-headline-lockup {
    grid-template-columns: minmax(0, 1fr) minmax(62px, 20vw);
    gap: 6px;
    align-items: end;
  }

  .hero-headline-lockup h1 {
    max-width: 15ch;
    justify-self: end;
    font-size: clamp(1.72rem, 8.2vw, 2.65rem);
    line-height: 0.94;
  }

  .hero-franky-figure {
    width: 148%;
    max-height: 380px;
    transform: translateX(14px);
  }
}


/* Transparent, equal-size SuperStars badge display. */
.category-badges {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  align-items: end !important;
  justify-items: center !important;
  gap: clamp(4px, 1.1vw, 10px) !important;
  overflow: visible !important;
}

.category-badges img,
body.phone-preview .category-badges img {
  width: clamp(58px, 15.5vw, 132px) !important;
  height: clamp(58px, 15.5vw, 132px) !important;
  max-width: 132px !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.template-card img,
.world-badge {
  object-fit: contain !important;
  background: transparent !important;
  border-radius: 0 !important;
}

@media (max-width: 560px) {
  .category-badges img,
  body.phone-preview .category-badges img {
    width: clamp(54px, 17vw, 68px) !important;
    height: clamp(54px, 17vw, 68px) !important;
    max-width: 68px !important;
    object-fit: contain !important;
  }
}

@media (max-width: 360px) {
  .category-badges img,
  body.phone-preview .category-badges img {
    width: 56px !important;
    height: 56px !important;
    max-width: 56px !important;
  }
}

/* Launch pricing update */
.launch-includes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 14px;
}

.launch-includes span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  color: #063b24;
  background: #d9f8d6;
  border: 1px solid rgba(34, 126, 64, 0.28);
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.2;
}

.launch-includes span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-right: 9px;
  color: #ffffff;
  background: #1d8f4a;
  border-radius: 999px;
  font-size: 0.82rem;
}

.launch-offers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 16px;
}

.launch-offer {
  display: grid;
  gap: 8px;
  min-height: 188px;
  padding: 18px;
  color: #071735;
  background: #ffffff;
  border: 2px solid rgba(7, 23, 53, 0.12);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(7, 23, 53, 0.1);
  text-decoration: none;
}

.launch-offer-featured {
  color: #ffffff;
  background: linear-gradient(135deg, #0d63c9, #f06b35);
  border-color: transparent;
}

.launch-offer span {
  justify-self: start;
  padding: 5px 9px;
  color: #071735;
  background: #f9c73d;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.launch-offer strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.launch-offer em {
  font-style: normal;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1;
}

.launch-offer small {
  color: inherit;
  font-weight: 800;
  line-height: 1.35;
  opacity: 0.86;
}

.price-list .price-list-offer {
  color: #071735;
  background: #fff4c2;
  border-color: rgba(169, 109, 0, 0.28);
}

.shop-price {
  display: block;
  width: max-content;
  max-width: calc(100% - 24px);
  margin: -8px auto 14px;
  padding: 7px 10px;
  color: #8a5600;
  background: #fff4c2;
  border: 1px solid rgba(169, 109, 0, 0.24);
  border-radius: 7px;
  font-weight: 900;
}

@media (max-width: 760px) {
  .launch-includes,
  .launch-offers {
    grid-template-columns: 1fr;
  }
}

/* Phone preview: keep the page vertically scrollable in the in-app browser. */
html:has(body.phone-preview),
html:has(body.phone-preview) body,
body.phone-preview {
  height: auto !important;
  min-height: 100% !important;
  max-height: none !important;
  overflow-y: auto !important;
}

body.phone-preview {
  position: static !important;
  touch-action: pan-y !important;
}

body.phone-preview main,
body.phone-preview section,
body.phone-preview .hero {
  height: auto !important;
  max-height: none !important;
  overflow-y: visible !important;
}
/* Separate quick-product cart buttons. */
.quick-products .quick-product-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px 14px;
  min-height: 90px;
  padding: 0 14px 10px 10px;
  overflow: hidden;
  color: #071735;
  background: #ffffff;
  border: 2px solid rgba(7, 23, 53, 0.12);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(7, 23, 53, 0.08);
  cursor: zoom-in;
}

.quick-products .quick-product-card img {
  width: 82px;
  height: 82px;
  border-radius: 7px;
  object-fit: cover;
  background: #f8fbff;
  border: 1px solid rgba(7, 23, 53, 0.14);
}

.quick-products .quick-product-card.is-added::after {
  top: 38px;
  right: 10px;
}

.quick-products .quick-product-card:hover,
.quick-products .quick-product-card:focus-visible {
  border-color: #d89a11;
  box-shadow: 0 0 0 4px rgba(249, 199, 61, 0.28), 0 12px 26px rgba(7, 23, 53, 0.14);
  outline: none;
}

.add-cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 5px 8px;
  color: #071735;
  background: #f9c73d;
  border: 1px solid rgba(169, 109, 0, 0.32);
  border-radius: 7px;
  font: inherit;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.add-cart-button:hover,
.add-cart-button:focus-visible {
  background: #ffe675;
  outline: 2px solid rgba(7, 23, 53, 0.2);
  outline-offset: 2px;
}

.quick-products .quick-product-card.is-added .add-cart-button {
  color: #063b24;
  background: #d9f8d6;
  border-color: rgba(34, 126, 64, 0.34);
}

@media (max-width: 420px) {
  .quick-products .quick-product-card,
  body.phone-preview .quick-products .quick-product-card {
    grid-template-columns: 68px minmax(0, 1fr) auto !important;
    gap: 10px;
    min-height: 74px;
    padding: 0 10px 8px 8px;
  }

  .quick-products .quick-product-card img,
  body.phone-preview .quick-products .quick-product-card img {
    width: 68px !important;
    max-width: 68px !important;
    height: 68px !important;
  }

  .add-cart-button {
    min-height: 22px;
    padding: 4px 6px;
    font-size: 0.58rem;
  }
}

body.phone-preview .quick-products .quick-product-card {
  grid-template-columns: 68px minmax(0, 1fr) auto !important;
}

body.phone-preview .quick-products .quick-product-card img {
  width: 68px !important;
  max-width: 68px !important;
  height: 68px !important;
}
/* Bottle preview details. */
.image-preview-modal.has-product-details .image-preview-dialog {
  grid-template-columns: minmax(220px, 0.7fr) minmax(260px, 1fr);
  align-items: start;
  width: min(1120px, 96vw);
}

.image-preview-modal.has-product-details .image-preview-image {
  max-height: min(78vh, 820px);
}

.image-preview-details {
  max-height: min(78vh, 820px);
  overflow: auto;
  padding: 18px;
  color: #071735;
  background: #ffffff;
  border: 3px solid #f9c73d;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.image-preview-details h3,
.image-preview-details h4 {
  margin: 0 0 10px;
  color: #071735;
  font-family: "Barlow Condensed", Impact, sans-serif;
  line-height: 0.95;
  text-transform: uppercase;
}

.image-preview-details h3 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.image-preview-details h4 {
  margin-top: 14px;
  font-size: 1.35rem;
}

.image-preview-details p,
.image-preview-details li {
  color: #263a64;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.42;
}

.image-preview-details p {
  margin: 0 0 10px;
}

.image-preview-colour-options {
  margin: 14px 0;
  padding: 12px;
  background: #f8fbff;
  border: 2px solid #d8e0ef;
  border-radius: 8px;
}

.image-preview-colour-options img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 6px;
}

.image-preview-colour-options p {
  margin: 10px 0 0;
  font-weight: 900;
  text-align: center;
}

.image-preview-details ul,
.image-preview-details ol {
  display: grid;
  gap: 5px;
  margin: 0 0 10px;
  padding-left: 18px;
}

.image-preview-collections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 14px;
}

.image-preview-collection {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  background: #f5f7fb;
  border: 1px solid #d8e0ef;
  border-radius: 8px;
}

.image-preview-collection img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.image-preview-collection strong {
  display: block;
  color: #071735;
  font-size: 0.88rem;
  line-height: 1.15;
}

.image-preview-collection p {
  margin: 4px 0 0;
  font-size: 0.75rem;
  line-height: 1.3;
}

.image-preview-modal.has-product-details .image-preview-caption {
  grid-column: 1 / -1;
}

@media (max-width: 720px) {
  .image-preview-modal.has-product-details .image-preview-dialog {
    grid-template-columns: 1fr;
    width: min(96vw, 520px);
  }

  .image-preview-details {
    max-height: 44vh;
    padding: 14px;
  }

  .image-preview-details p,
  .image-preview-details li {
    font-size: 0.82rem;
  }

  .image-preview-collections {
    grid-template-columns: 1fr;
  }
}

/* Cookie policy and consent controls */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 10px;
}

.footer-legal a,
.footer-legal button,
.legal-inline-button {
  padding: 0;
  color: #ffe675;
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.cookie-consent-banner[hidden],
.cookie-settings-overlay[hidden] {
  display: none !important;
}

.cookie-consent-banner {
  position: fixed;
  z-index: 10000;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  max-width: 940px;
  margin: 0 auto;
  padding: 20px;
  color: #071735;
  background: #ffffff;
  border: 3px solid #f6c62f;
  border-radius: 14px;
  box-shadow: 0 20px 55px rgba(4, 17, 38, 0.34);
  animation: cookie-banner-enter 280ms ease-out both;
}

@keyframes cookie-banner-enter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-consent-copy h2,
.cookie-settings-panel h2 {
  margin: 0 0 7px;
  color: #071735;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.cookie-consent-copy p,
.cookie-settings-panel > p {
  margin: 0;
  color: #263a64;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.48;
}

.cookie-consent-copy a,
.cookie-settings-panel a {
  color: #0d63d8;
  font-weight: 900;
}

.cookie-consent-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(145px, 1fr));
  gap: 9px;
  align-self: center;
}

.cookie-button {
  min-height: 46px;
  padding: 11px 15px;
  border: 2px solid #071735;
  border-radius: 8px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.15;
  cursor: pointer;
}

.cookie-button-primary,
.cookie-button-reject {
  color: #071735;
  background: #f6c62f;
  box-shadow: 0 3px 0 #9b6100;
}

.cookie-button-settings {
  color: #ffffff;
  background: #0d63d8;
  box-shadow: 0 3px 0 #063d86;
}

.cookie-button:hover,
.cookie-button:focus-visible {
  transform: translateY(-1px);
}

.cookie-settings-overlay {
  position: fixed;
  z-index: 10010;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(4, 17, 38, 0.76);
}

.cookie-settings-panel {
  position: relative;
  width: min(100%, 620px);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 24px;
  color: #071735;
  background: #ffffff;
  border: 3px solid #f6c62f;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.cookie-settings-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  color: #071735;
  background: #f6c62f;
  border: 2px solid #071735;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 900;
  cursor: pointer;
}

.cookie-settings-kicker {
  color: #0d63d8 !important;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.9rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-category-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.cookie-category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  background: #f8fbff;
  border: 2px solid #cad5e8;
  border-radius: 9px;
  cursor: pointer;
}

.cookie-category.is-essential {
  background: #fff7cf;
  border-color: #e0b52d;
  cursor: default;
}

.cookie-category span,
.cookie-category strong,
.cookie-category small {
  display: block;
}

.cookie-category strong {
  color: #071735;
  font-size: 1rem;
}

.cookie-category small {
  margin-top: 3px;
  color: #405375;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
}

.cookie-category input {
  width: 24px;
  height: 24px;
  accent-color: #0d63d8;
}

.cookie-settings-policy {
  margin: 0 0 16px !important;
  font-size: 0.84rem !important;
}

.cookie-settings-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

body.cookie-settings-open {
  overflow: hidden;
}

.legal-page {
  min-height: 100vh;
  color: #071735;
  background: linear-gradient(180deg, #071735 0%, #0b2f68 260px, #eef5ff 260px, #eef5ff 100%);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px clamp(18px, 5vw, 52px);
}

.legal-header .brand {
  color: #ffffff;
}

.legal-main {
  width: min(100% - 28px, 920px);
  margin: 22px auto 60px;
}

.legal-card {
  padding: clamp(22px, 5vw, 52px);
  background: #ffffff;
  border: 3px solid #f6c62f;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(4, 17, 38, 0.2);
}

.legal-card h1 {
  margin: 0;
  color: #071735;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.legal-updated {
  margin: 8px 0 28px;
  color: #526584;
  font-size: 0.86rem;
  font-weight: 800;
}

.legal-card section {
  padding: 20px 0;
  border-top: 1px solid #dce5f2;
}

.legal-card section:first-of-type {
  border-top: 0;
}

.legal-card h2 {
  margin: 0 0 8px;
  color: #0b4fa3;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  line-height: 1;
  text-transform: uppercase;
}

.legal-card p {
  margin: 0 0 10px;
  color: #263a64;
  font-weight: 650;
  line-height: 1.65;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a,
.legal-inline-button {
  color: #0d63d8;
  font-weight: 900;
}

.legal-page .site-footer {
  max-width: none;
}

@media (max-width: 840px) {
  .cookie-consent-banner {
    grid-template-columns: 1fr;
  }

  .cookie-consent-actions {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .cookie-consent-banner {
    right: 8px;
    bottom: 8px;
    left: 8px;
    gap: 13px;
    padding: 16px;
    border-width: 2px;
  }

  .cookie-consent-copy h2 {
    font-size: 1.65rem;
  }

  .cookie-consent-copy p {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .cookie-consent-actions,
  .cookie-settings-actions {
    grid-template-columns: 1fr;
  }

  .cookie-button {
    min-height: 42px;
    padding: 9px 12px;
  }

  .cookie-settings-overlay {
    place-items: end center;
    padding: 8px;
  }

  .cookie-settings-panel {
    max-height: calc(100vh - 16px);
    padding: 20px 16px;
  }

  .cookie-category {
    padding: 11px;
  }

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* Scrollable product preview fix. */
.image-preview-modal {
  align-items: start;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.image-preview-dialog {
  margin: auto 0;
}

.image-preview-details {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

@media (max-width: 720px) {
  .image-preview-modal {
    place-items: start center;
    padding: 12px;
  }

  .image-preview-dialog,
  .image-preview-modal.has-product-details .image-preview-dialog {
    max-height: none;
    margin: 0 auto;
  }

  .image-preview-modal.has-product-details .image-preview-image {
    max-height: 42vh;
    width: auto;
  }

  .image-preview-modal.has-product-details .image-preview-details {
    max-height: none;
    overflow: visible;
  }
}


/* Launch-readiness notices and consent controls. */
.launch-contact-warning { color: #14284a; }
.launch-contact-warning strong { display: block; margin-bottom: 8px; color: #14284a; }
.launch-contact-warning p { margin: 6px 0 0; color: #263a64; font-weight: 750; line-height: 1.45; }
.order-form .order-legal-agreement { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 10px; }
.order-form .order-legal-agreement input { width: 22px; height: 22px; margin-top: 2px; }
.order-form-status { margin: 12px 0 0; color: #263a64; font-weight: 800; line-height: 1.45; }

/* Responsive desktop layout. The phone-preview class remains available only
   for deliberate ?phone-view testing; ordinary visitors use these rules. */
@media (min-width: 901px) {
  .site-header {
    min-height: 66px;
    padding-inline: clamp(24px, 3.5vw, 64px);
  }

  .nav {
    align-items: center;
    justify-content: center;
    gap: 10px clamp(10px, 1.25vw, 20px);
  }

  .nav a {
    font-size: clamp(0.72rem, 0.75vw, 0.86rem);
  }

  .hero {
    grid-template-columns: minmax(220px, 0.72fr) minmax(520px, 1.5fr) minmax(220px, 0.72fr);
    gap: clamp(22px, 3vw, 54px);
    align-items: center;
    min-height: min(820px, calc(100vh - 66px));
    padding: clamp(28px, 4vw, 64px) clamp(24px, 4vw, 72px) clamp(36px, 5vw, 76px);
  }

  .hero-logo {
    width: min(100%, 620px);
  }

  .hero-copy {
    width: min(100%, 720px);
  }

  .hero-headline-lockup {
    grid-template-columns: minmax(0, 1fr) 130px;
  }

  .hero-headline-lockup h1 {
    font-size: clamp(3.25rem, 4.6vw, 4.8rem);
    line-height: 0.94;
  }

  .hero-franky-figure {
    width: 122%;
    transform: translateX(12px);
  }

  .hero-showcase,
  .hero-showcase-right {
    width: min(100%, 390px);
    max-width: 390px;
  }

  .hero-showcase > .tommy-card:nth-child(n + 3),
  .hero-showcase-right > .tommy-card:nth-child(n + 3) {
    display: none;
  }

  .hero-showcase .tommy-photo,
  .hero-showcase-right .tommy-photo {
    grid-template-columns: 108px minmax(0, 1fr);
    min-height: 112px;
  }

  .hero-art {
    grid-column: 1 / -1;
    width: min(100%, 980px);
    margin-inline: auto;
  }

  .hero-art .lineup-crop {
    display: none !important;
  }

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

  .order-section > div:first-child {
    grid-column: 1;
    grid-row: 1;
  }

  .order-section .order-basket {
    grid-column: 1;
    grid-row: 2;
  }

  .order-section .order-form {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 100%;
    max-width: 720px;
    justify-self: end;
  }
}
