:root {
  color-scheme: dark;
  --bg: #07110d;
  --surface: #101f18;
  --surface-raised: #162920;
  --text: #f6f3e8;
  --muted: #a7b7ae;
  --quiet: #75877e;
  --line: #294238;
  --sun: #ffc95c;
  --sun-deep: #e99d2b;
  --grass: #75d59a;
  --ball: #c95845;
  --paper: #efe8d5;
  --max: 74rem;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--text);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% -5%, rgba(255, 201, 92, 0.11), transparent 24rem),
    radial-gradient(circle at 8% 28%, rgba(39, 121, 78, 0.16), transparent 32rem),
    linear-gradient(180deg, #07110d 0%, #09140f 55%, #06100c 100%);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: var(--grass);
  text-underline-offset: 0.2em;
}

a:hover {
  color: #b1ebc6;
}

a:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
  border-radius: 0.35rem;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 30;
  padding: 0.7rem 1rem;
  background: var(--sun);
  color: #1a1307;
  border-radius: 0.55rem;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: relative;
  z-index: 10;
  width: min(calc(100% - 2rem), var(--max));
  min-height: 5.5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 201, 92, 0.38);
  border-radius: 50%;
  background: rgba(255, 201, 92, 0.08);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0.34rem;
  border: 1px solid rgba(255, 201, 92, 0.24);
  border-radius: 50%;
}

.brand-mark::after {
  inset: 0.12rem;
  border-style: dashed;
}

.brand-mark span {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe4a1, var(--sun-deep));
  box-shadow: 0 0 1.15rem rgba(255, 201, 92, 0.55);
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.brand small {
  margin-top: 0.28rem;
  color: var(--quiet);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem;
}

nav a {
  padding: 0.55rem 0.72rem;
  border-radius: 0.55rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

nav a[aria-current="page"],
nav a:hover {
  color: var(--text);
  background: var(--surface-raised);
}

.page-shell {
  width: min(calc(100% - 2rem), 52rem);
  margin: 0 auto;
  padding: 4.5rem 0 5.5rem;
}

.page-shell-wide {
  width: min(calc(100% - 2rem), var(--max));
}

.hero {
  margin-bottom: 3rem;
}

.kicker {
  margin: 0 0 0.65rem;
  color: var(--sun);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.65rem, 8vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4.4vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.lede {
  max-width: 43rem;
  margin: 1.15rem 0 0.55rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 3vw, 1.35rem);
}

.effective {
  color: var(--quiet);
  font-size: 0.86rem;
}

.studio-hero {
  min-height: 35rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  align-items: center;
  gap: clamp(2rem, 8vw, 7rem);
  padding: 3.5rem 0 5rem;
}

.studio-hero h1 {
  font-size: clamp(4.2rem, 14vw, 8.6rem);
}

.hero-detail {
  max-width: 39rem;
  margin: 1.15rem 0 0;
  color: var(--muted);
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin: 1.8rem 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1rem;
  border: 1px solid #f5bb45;
  border-radius: 0.65rem;
  background: linear-gradient(145deg, #ffd677, var(--sun));
  color: #1a1307;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 0.75rem 2rem rgba(255, 201, 92, 0.12);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  color: #1a1307;
  transform: translateY(-2px);
  box-shadow: 0 1rem 2.4rem rgba(255, 201, 92, 0.2);
}

.text-link {
  color: var(--paper);
  font-weight: 750;
  text-decoration-color: var(--line);
}

.sun-stage {
  position: relative;
  min-height: 25rem;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.sun-stage::before {
  content: "";
  position: absolute;
  width: 19rem;
  height: 19rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 201, 92, 0.17), transparent 67%);
  filter: blur(0.2rem);
}

.sun-disc {
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #fff2c4 0, #ffd36d 30%, #e99b28 100%);
  box-shadow:
    0 0 0 1.25rem rgba(255, 201, 92, 0.04),
    0 0 4rem rgba(255, 201, 92, 0.34);
}

.sun-orbit {
  position: absolute;
  border: 1px solid rgba(255, 201, 92, 0.28);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.sun-orbit-one {
  width: 15.5rem;
  height: 9rem;
}

.sun-orbit-two {
  width: 21rem;
  height: 13rem;
  border-color: rgba(117, 213, 154, 0.18);
  transform: rotate(28deg);
}

.sun-dot {
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  margin: -4.7rem 0 0 14.4rem;
  border-radius: 50%;
  background: var(--grass);
  box-shadow: 0 0 1rem rgba(117, 213, 154, 0.45);
}

.section-intro {
  margin: 2rem 0 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.8fr);
  align-items: end;
  gap: 2rem;
}

.section-intro > p {
  margin: 0;
  color: var(--muted);
}

.product-list {
  display: grid;
  gap: 1.25rem;
}

.product-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.2fr);
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: linear-gradient(145deg, rgba(22, 41, 32, 0.97), rgba(12, 27, 20, 0.97));
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.18);
}

.product-art {
  position: relative;
  min-height: 23rem;
  overflow: hidden;
  background: radial-gradient(circle at 68% 28%, rgba(255, 201, 92, 0.14), transparent 11rem), #14241c;
}

.product-art-cricket-legacy {
  background:
    linear-gradient(90deg, transparent 49.65%, rgba(239, 232, 213, 0.5) 49.65% 50.35%, transparent 50.35%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 2.4rem, transparent 2.4rem 4.8rem),
    linear-gradient(155deg, #2c6a43, #173b2a 55%, #0d251a);
}

.product-art-cricket-legacy::before,
.product-art-cricket-legacy::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 10rem;
  height: 2px;
  background: rgba(239, 232, 213, 0.7);
  transform: translateX(-50%);
}

.product-art-cricket-legacy::before {
  top: 31%;
}

.product-art-cricket-legacy::after {
  bottom: 31%;
}

.pitch-mark {
  display: none;
  position: absolute;
  inset: 14% 29%;
  border: 1px solid rgba(239, 232, 213, 0.34);
  background: rgba(213, 187, 128, 0.12);
}

.ball-mark {
  display: none;
  position: absolute;
  right: 18%;
  top: 24%;
  width: 4.35rem;
  height: 4.35rem;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #e88470, var(--ball) 55%, #762a23);
  box-shadow: 0 1.1rem 2.5rem rgba(0, 0, 0, 0.35);
}

.ball-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 7%;
  width: 0.28rem;
  height: 86%;
  border-left: 1px dashed rgba(255, 235, 213, 0.8);
  border-right: 1px dashed rgba(255, 235, 213, 0.8);
  transform: translateX(-50%) rotate(31deg);
}

.product-art-cricket-legacy .pitch-mark,
.product-art-cricket-legacy .ball-mark {
  display: block;
}

.product-copy {
  align-self: center;
  padding: clamp(1.5rem, 5vw, 3.25rem);
}

.product-copy h3 {
  margin-top: 1rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.product-copy > p:not(.card-actions) {
  max-width: 36rem;
  color: var(--muted);
}

.meta-row,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.meta-row span,
.chip {
  padding: 0.28rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.meta-row span:last-child {
  border-color: rgba(255, 201, 92, 0.35);
  color: var(--sun);
}

.contact-summary,
.product-overview {
  margin-top: 4.5rem;
  padding: clamp(1.5rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.85fr);
  align-items: center;
  gap: clamp(1.5rem, 6vw, 5rem);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(16, 31, 24, 0.82);
}

.product-overview p {
  margin: 0;
  color: var(--muted);
}

.contact-summary {
  margin-top: 1.25rem;
}

address {
  color: var(--muted);
  font-style: normal;
}

address strong {
  color: var(--text);
}

article:not(.product-card) {
  display: grid;
  gap: 1rem;
}

article:not(.product-card) > section {
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 1.05rem;
  background: rgba(16, 31, 24, 0.9);
}

article h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.2rem, 4vw, 1.55rem);
  letter-spacing: -0.02em;
}

article p:first-of-type {
  margin-top: 0;
}

article p:last-child {
  margin-bottom: 0;
}

li + li {
  margin-top: 0.55rem;
}

ul,
ol {
  padding-left: 1.25rem;
}

.notice {
  border-color: #866a2d !important;
  background: linear-gradient(140deg, rgba(255, 201, 92, 0.09), var(--surface)) !important;
}

.action-card {
  border-color: #347951 !important;
  background: linear-gradient(140deg, rgba(117, 213, 154, 0.08), var(--surface)) !important;
}

.product-overview {
  margin-top: 0;
  background: linear-gradient(145deg, rgba(28, 57, 42, 0.82), rgba(14, 31, 23, 0.94));
}

.score-motif {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.35rem 1.5rem;
  padding: 1.4rem;
  border: 1px solid rgba(239, 232, 213, 0.18);
  border-radius: 0.8rem;
  background: #09130f;
  color: var(--paper);
  box-shadow: inset 0 0 2rem rgba(0, 0, 0, 0.28);
}

.score-motif span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.score-motif strong {
  font-size: 2rem;
  line-height: 1;
}

.score-motif i {
  grid-column: 1 / -1;
  height: 1px;
  background: var(--line);
}

.product-glyph {
  min-height: 10rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #09130f;
}

.product-glyph span {
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid var(--sun);
  border-radius: 50%;
  box-shadow: 0 0 2rem rgba(255, 201, 92, 0.18);
}

.highlight-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.highlight-grid article {
  min-height: 14rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
}

.highlight-grid article:last-child {
  background: linear-gradient(145deg, #3b1f1b, #1f1714);
  border-color: #674138;
}

.highlight-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.highlight-number {
  margin-bottom: auto;
  color: var(--sun);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.legal-intro {
  margin-top: 4.5rem;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.link-card {
  min-height: 10rem;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.link-card strong {
  color: var(--text);
  font-size: 1.15rem;
}

.link-card span {
  color: var(--muted);
}

.link-card:hover {
  transform: translateY(-3px);
  border-color: #4f755f;
  background: var(--surface-raised);
}

footer {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 0.82rem;
}

footer p {
  margin: 0;
}

footer strong {
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem 1rem;
}

.footer-links a {
  color: var(--muted);
}

@media (max-width: 800px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem 0;
  }

  nav {
    justify-content: flex-start;
    margin-left: -0.55rem;
  }

  .page-shell {
    padding-top: 3rem;
  }

  .studio-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 2rem;
  }

  .sun-stage {
    min-height: 19rem;
    order: -1;
  }

  .section-intro,
  .contact-summary,
  .product-overview {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-art {
    min-height: 16rem;
  }
}

@media (max-width: 560px) {
  .studio-hero h1 {
    font-size: clamp(3.6rem, 23vw, 5.5rem);
  }

  .sun-stage {
    transform: scale(0.82);
    margin: -2rem 0;
  }

  .highlight-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
