@font-face {
  font-family: Barlow;
  src: url("/fonts/barlow-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Barlow;
  src: url("/fonts/barlow-semibold.ttf") format("truetype");
  font-weight: 600 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("/fonts/barlow-condensed-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --paper: #eeece3;
  --ink: #192a27;
  --red: #c43b22;
  --rule: #b9c0b4;
  --muted: #55615a;
  --display: "Barlow Condensed", Impact, sans-serif;
  --page: clamp(22px, 5vw, 88px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    17px/1.5 Barlow,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 5px;
}
::selection {
  background: var(--red);
  color: var(--paper);
}
h1,
h2,
h3,
p {
  margin: 0;
}
h2 {
  font: 700 clamp(38px, 4.2vw, 64px)/0.98 var(--display);
  letter-spacing: -0.01em;
}
h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}
.skip {
  position: fixed;
  top: -70px;
  left: 20px;
  background: var(--ink);
  color: var(--paper);
  padding: 12px;
  z-index: 10;
}
.skip:focus {
  top: 10px;
}
.header {
  margin: 0 var(--page);
  padding: 24px 0;
  display: flex;
  align-items: center;
  gap: 26px;
  border-bottom: 1px solid var(--ink);
}
.small-brand {
  font: 700 36px/1 var(--display);
  letter-spacing: -1px;
}
.small-brand span {
  color: var(--red);
  margin-left: 3px;
}
.header-location {
  font-size: 12px;
  line-height: 1.35;
}
.header nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
  font-size: 14px;
}
.header nav a {
  padding: 10px 0;
}
.header nav a:last-child {
  color: var(--red);
  font-weight: 600;
}
.header nav a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.intro {
  padding: 0 var(--page);
}
.wordmark {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  font: 700 clamp(100px, 24.8vw, 420px)/0.87 var(--display);
  letter-spacing: -0.035em;
  padding: 28px 0 34px;
  isolation: isolate;
}
.wordmark > span:not(.brand-cut) {
  white-space: nowrap;
}
.brand-cut {
  display: block;
  width: 0.105em;
  height: 0.66em;
  background: var(--red);
  transform: skew(-19deg);
  margin: 0.04em 0.06em 0 0.09em;
  flex-shrink: 0;
}
.intro-bottom {
  display: grid;
  grid-template-columns: 1fr 1.8fr auto;
  gap: 30px;
  padding: 24px 0 38px;
  border-top: 1px solid var(--ink);
  align-items: center;
}
.intro-caption {
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}
.intro-description {
  font-size: clamp(19px, 2.2vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.text-link {
  font-size: 14px;
  white-space: nowrap;
  align-self: end;
  padding-bottom: 3px;
}
.text-link span {
  margin-left: 20px;
  color: var(--red);
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.web-section {
  margin: 20px var(--page) 0;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 35px;
  border-top: 1px solid var(--ink);
  padding: 38px 0 76px;
}
.section-margin {
  display: flex;
  align-items: baseline;
  gap: 15px;
  font-size: 13px;
}
.section-number {
  font: 700 24px/1 var(--display);
  color: var(--red);
}
.web-section > .section-margin {
  display: block;
}
.web-section > .section-margin span {
  display: block;
}
.web-section > .section-margin span + span {
  margin-top: 12px;
}
.web-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 45px;
  margin-bottom: 38px;
  align-items: end;
}
.web-heading > p {
  font-size: 16px;
  max-width: 365px;
  color: var(--muted);
}
.web-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 45px;
  align-items: start;
}
.services article {
  padding: 22px 0 25px;
  border-top: 1px solid var(--rule);
}
.services article:last-child {
  border-bottom: 1px solid var(--rule);
}
.services h3 {
  margin-bottom: 9px;
}
.services p {
  color: var(--muted);
  font-size: 16px;
  max-width: 400px;
}
.project-note {
  position: relative;
  padding: 23px 24px 16px;
  background: #e0e3d4;
  border: 1px solid #b6beaa;
  box-shadow: 5px 5px 0 #192a2712;
}
.note-top {
  font-size: 19px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 23px;
}
.note-corner {
  color: var(--red);
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 20px;
}
legend {
  font-size: 13px;
  margin-bottom: 13px;
}
fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  margin: 10px 0;
  cursor: pointer;
}
input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--ink);
  margin: 0;
  cursor: pointer;
}
.message-label {
  font-size: 12px;
  display: block;
  margin-bottom: 8px;
}
.message-label span {
  color: var(--muted);
}
textarea {
  resize: vertical;
  display: block;
  width: 100%;
  background: #eeece399;
  border: 1px solid #aab39f;
  border-radius: 0;
  padding: 10px;
  min-height: 84px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink);
}
textarea::placeholder {
  color: #64715d;
}
.send-note {
  margin-top: 15px;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--paper);
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 14px;
  width: 100%;
  font-size: 14px;
}
.send-note:hover {
  background: #2a423b;
}
.form-help {
  font-size: 11px;
  color: #4e5d48;
  line-height: 1.5;
  margin-top: 12px;
}
.form-help a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-status {
  font-size: 12px;
  line-height: 1.4;
  margin-top: 8px;
}
.form-status:empty {
  display: none;
}
.games-section {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  background: var(--ink);
  color: var(--paper);
  gap: clamp(40px, 7vw, 110px);
  padding: 54px var(--page) 55px;
  position: relative;
}
.game-description .section-margin {
  color: #c5cbbd;
  margin-bottom: 40px;
}
.games-section .section-number {
  color: #ed8c65;
}
.game-description h2 {
  font-size: clamp(68px, 7.5vw, 120px);
  line-height: 0.85;
  letter-spacing: -0.035em;
}
.game-period {
  color: #ed8c65;
}
.game-description .game-deck {
  font-size: 21px;
  line-height: 1.35;
  margin: 26px 0 17px;
  color: var(--paper);
}
.game-description > p {
  font-size: 15px;
  color: #b6c2b8;
  max-width: 350px;
  line-height: 1.65;
}
.game-link {
  display: inline-flex;
  gap: 38px;
  border-bottom: 1px solid #9fae9f;
  margin-top: 25px;
  padding-bottom: 9px;
  font-size: 15px;
}
.game-link span {
  color: #ed8c65;
}
.game-link:hover {
  color: #ed8c65;
}
.game-description .game-disclaimer {
  font-size: 11px;
  margin-top: 22px;
}
.practice {
  padding-top: 4px;
  min-width: 0;
}
.table-caption {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #d0d5c7;
  margin-bottom: 18px;
  gap: 15px;
}
.table-caption span:last-child {
  font-size: 11px;
  color: #9aaa9c;
}
.dice-table {
  position: relative;
  background: #30483e;
  min-height: 382px;
  border: 1px solid #70816a;
  box-shadow: inset 0 0 0 7px #223a30;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 28px 15px 25px;
  overflow: hidden;
}
.table-line {
  position: absolute;
  inset: 20px;
  border: 1px solid #7c90704d;
  border-radius: 44% 44% 30% 30%;
  pointer-events: none;
}
.table-lettering {
  font: 700 15px/1 var(--display);
  letter-spacing: 4px;
  color: #acb99d;
  z-index: 1;
}
.dice-set {
  height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.die {
  width: 82px;
  height: 82px;
  border-radius: 12px;
  background: #efead7;
  box-shadow:
    3px 6px 0 #bcb99c,
    9px 14px 12px #10241b88,
    inset 1px 1px 0 #fff9;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 7px;
  padding: 14px;
  transform: rotate(-13deg);
}
.die:nth-child(2) {
  transform: rotate(8deg) translateY(9px);
}
.die:nth-child(3) {
  transform: rotate(-4deg) translateY(-6px);
}
.pip {
  background: #c43b22;
  border-radius: 50%;
  box-shadow: inset 0 1px 2px #59190e;
  width: 100%;
  height: 100%;
}
.dice-set.is-rolling .die {
  animation: tumble 0.36s ease-out;
}
.dice-set.is-rolling .die:nth-child(2) {
  animation-delay: 0.035s;
}
.dice-set.is-rolling .die:nth-child(3) {
  animation-delay: 0.07s;
}
@keyframes tumble {
  0% {
    translate: 0 0;
    rotate: 0deg;
  }
  40% {
    translate: 0 -28px;
    rotate: 32deg;
  }
  80% {
    translate: 0 4px;
    rotate: -12deg;
  }
  100% {
    translate: 0 0;
    rotate: 0deg;
  }
}
.roll-result {
  position: relative;
  text-align: center;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.25;
  min-height: 62px;
}
.roll-result span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #c1cbb7;
  margin-top: 7px;
}
.roll-button {
  position: relative;
  background: #eee6cb;
  color: var(--ink);
  border: 1px solid #eee6cb;
  padding: 10px 22px;
  font-size: 14px;
  margin-top: 14px;
  min-width: 170px;
  display: flex;
  gap: 25px;
  justify-content: space-between;
}
.roll-button:hover {
  background: #fff7de;
}
.roll-button:disabled {
  cursor: wait;
  opacity: 0.7;
}
.games-section :focus-visible {
  outline-color: #f4a481;
}
.table-bottom {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 25px;
  margin-top: 17px;
  font-size: 11px;
  color: #b6c2b8;
}
.table-bottom summary {
  cursor: pointer;
  color: var(--paper);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
  list-style-position: inside;
}
.table-bottom ul {
  padding-left: 17px;
  line-height: 1.6;
}
.table-bottom li {
  margin: 7px 0;
}
.no-script {
  position: relative;
  font-size: 12px;
  margin-top: 12px;
}
.studio-section {
  display: grid;
  grid-template-columns: 190px 1fr 180px;
  gap: 35px;
  padding: 68px var(--page) 70px;
  align-items: start;
}
.studio-section > .section-margin {
  display: block;
}
.studio-section > .section-margin span {
  display: block;
}
.studio-section > .section-margin span + span {
  margin-top: 12px;
}
.studio-copy h2 {
  font-size: 46px;
  margin-bottom: 25px;
}
.studio-copy p {
  max-width: 560px;
  font-size: 17px;
  color: var(--muted);
  margin-top: 15px;
}
.studio-stamp {
  border: 2px solid var(--red);
  color: var(--red);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-8deg);
  margin-top: 16px;
  width: 150px;
}
.studio-stamp span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}
.studio-stamp b {
  font: 700 75px/1 var(--display);
}
.contact-section {
  margin: 0 var(--page);
  border-top: 1px solid var(--ink);
  padding: 29px 0 42px;
}
.contact-label {
  font-size: 15px;
}
.contact-email {
  font: 700 clamp(30px, 5.9vw, 92px)/1.15 var(--display);
  display: flex;
  justify-content: space-between;
  gap: 15px;
  letter-spacing: -0.025em;
  padding: 14px 0 27px;
  border-bottom: 1px solid var(--rule);
}
.contact-email > span {
  color: var(--red);
  font-family: Barlow, sans-serif;
  font-weight: 400;
}
.contact-email:hover {
  color: var(--red);
}
.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  padding-top: 24px;
  font-size: 14px;
}
.contact-details > a {
  text-decoration: underline;
  text-underline-offset: 4px;
  justify-self: center;
  align-self: start;
}
.contact-details address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.45;
}
footer {
  margin: 0 var(--page);
  padding: 22px 0 28px;
  border-top: 1px solid var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-size: 11px;
  color: var(--muted);
}
footer nav {
  display: flex;
  gap: 22px;
}
footer a:hover {
  text-decoration: underline;
}
@media (min-width: 1700px) {
  body {
    max-width: 1900px;
    margin: auto;
  }
  .wordmark {
    font-size: 420px;
  }
}
@media (max-width: 1100px) {
  .web-section {
    grid-template-columns: 120px 1fr;
    gap: 25px;
  }
  .web-heading,
  .web-body {
    gap: 26px;
    grid-template-columns: 1fr 1fr;
  }
  .studio-section {
    grid-template-columns: 120px 1fr 130px;
    gap: 25px;
  }
  .studio-stamp {
    width: 120px;
  }
  .studio-stamp b {
    font-size: 60px;
  }
  .games-section {
    gap: 35px;
    grid-template-columns: 0.85fr 1.2fr;
  }
  .die {
    width: 70px;
    height: 70px;
    padding: 12px;
    gap: 6px;
  }
  .dice-set {
    gap: 17px;
  }
  .intro-bottom {
    grid-template-columns: 1fr 2fr;
  }
  .intro-bottom .text-link {
    display: none;
  }
  .project-note {
    padding: 20px 18px;
  }
  .contact-email {
    font-size: 6.7vw;
  }
}
@media (max-width: 760px) {
  .header {
    gap: 15px;
    padding: 20px 0;
  }
  .header-location {
    display: none;
  }
  .header nav {
    gap: 20px;
    font-size: 13px;
  }
  .wordmark {
    font-size: 25vw;
    padding: 28px 0;
  }
  .intro-bottom {
    display: block;
    padding: 20px 0 26px;
  }
  .intro-caption {
    font-size: 12px;
    margin-bottom: 13px;
  }
  .intro-description {
    font-size: 23px;
  }
  .web-section {
    display: block;
    padding-top: 24px;
    margin-top: 12px;
    padding-bottom: 44px;
  }
  .web-section > .section-margin,
  .studio-section > .section-margin {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 25px;
  }
  .web-section > .section-margin span + span,
  .studio-section > .section-margin span + span {
    margin-top: 0;
  }
  .web-heading {
    display: block;
    margin-bottom: 26px;
  }
  .web-heading h2 {
    font-size: 46px;
  }
  .web-heading > p {
    margin-top: 22px;
    font-size: 16px;
    max-width: none;
  }
  .web-body {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .services article {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 18px;
    padding: 20px 0;
  }
  .services h3 {
    font-size: 17px;
  }
  .services p {
    font-size: 14px;
  }
  .project-note {
    padding: 25px;
    max-width: 520px;
    width: 100%;
    justify-self: center;
  }
  .games-section {
    grid-template-columns: 1fr;
    padding-block: 36px 38px;
    gap: 33px;
  }
  .game-description .section-margin {
    margin-bottom: 26px;
  }
  .game-description h2 {
    font-size: 76px;
  }
  .game-description > p {
    max-width: 100%;
  }
  .game-description .game-deck {
    font-size: 21px;
    margin-top: 20px;
  }
  .game-link {
    margin-top: 18px;
  }
  .table-caption {
    font-size: 12px;
  }
  .dice-table {
    min-height: 345px;
    padding-top: 24px;
  }
  .dice-set {
    height: 145px;
    gap: 22px;
  }
  .die {
    width: 72px;
    height: 72px;
    padding: 12px;
    gap: 6px;
  }
  .table-bottom {
    gap: 20px;
  }
  .studio-section {
    grid-template-columns: 1fr 90px;
    padding-block: 38px 42px;
    gap: 20px;
  }
  .studio-section > .section-margin {
    grid-column: 1/-1;
    margin-bottom: 4px;
  }
  .studio-copy h2 {
    font-size: 37px;
  }
  .studio-copy p {
    font-size: 16px;
  }
  .studio-stamp {
    width: 85px;
    margin-top: 5px;
  }
  .studio-stamp b {
    font-size: 42px;
  }
  .studio-stamp span {
    font-size: 8px;
    letter-spacing: 0.5px;
  }
  .contact-email {
    font-size: 7.9vw;
    padding: 18px 0 22px;
    gap: 6px;
  }
  .contact-details {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    font-size: 13px;
  }
  .contact-details > a {
    justify-self: start;
  }
  .contact-details address {
    grid-column: 1/-1;
  }
  footer {
    flex-wrap: wrap;
    gap: 18px;
    font-size: 11px;
  }
  footer > span:last-child {
    width: 100%;
  }
  footer nav {
    margin-left: auto;
    gap: 16px;
  }
}
@media (max-width: 370px) {
  .header nav {
    gap: 13px;
    font-size: 12px;
  }
  .small-brand {
    font-size: 30px;
  }
  .dice-set {
    gap: 16px;
  }
  .die {
    width: 62px;
    height: 62px;
    padding: 10px;
    gap: 5px;
  }
  .services article {
    grid-template-columns: 1fr;
  }
  .studio-section {
    grid-template-columns: 1fr;
  }
  .studio-stamp {
    display: none;
  }
  .table-bottom {
    grid-template-columns: 1fr;
  }
  .table-caption {
    font-size: 11px;
  }
  .project-note {
    padding: 20px;
  }
  .intro-description {
    font-size: 21px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

/* The graphic is the identity itself: layered, diagonally cut letterforms. */
.wordmark {
  overflow: hidden;
  cursor: default;
}
.cut-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: inherit;
  font: inherit;
  letter-spacing: inherit;
  background: var(--paper);
  pointer-events: none;
  will-change: transform;
}
.cut-layer > span:not(.brand-cut) {
  white-space: nowrap;
}
.wordmark-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 13px;
  font-size: 12px;
  color: var(--muted);
}
#cut-play {
  background: none;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 7px 0;
  font-size: 12px;
}
#cut-play:hover {
  color: var(--red);
  border-color: var(--red);
}
#cut-play span {
  margin-left: 12px;
  color: var(--red);
}
@media (max-width: 760px) {
  .wordmark-controls {
    font-size: 11px;
    padding-bottom: 12px;
  }
  #cut-play {
    font-size: 11px;
  }
}

.wordmark-controls > span {
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1px;
}
.studio-copy .brand-belief {
  font-size: 21px;
  line-height: 1.35;
  color: var(--ink);
  margin-top: 0;
}
.studio-copy .company-note {
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  margin-top: 25px;
  font-size: 14px;
}
@media (max-width: 760px) {
  .wordmark-controls > span {
    font-size: 13px;
  }
  .studio-copy .brand-belief {
    font-size: 19px;
  }
}
