.page {
  --orange: #df2b11;
  --orange-deep: #b92812;
  --wood: #a85b22;
  --wood-dark: #6f3312;
  --cloth: #f7efe3;
  --ink: #151515;
  min-height: 100vh;
  color: var(--ink);
  background:
    repeating-linear-gradient(90deg, rgba(70, 31, 8, .18) 0 2px, transparent 2px 120px),
    linear-gradient(90deg, #9b4d18, #c87a35 22%, #9f501d 49%, #c47731 72%, #9d4a17);
  font-family: Arial, Helvetica, sans-serif;
  overflow: hidden;
  position: relative;
}

.page *,
.page *::before,
.page *::after { box-sizing: border-box; }

.page a { color: inherit; text-decoration: none; }

.page h1,
.page h2,
.page h3,
.page p { margin-top: 0; }

.nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 86px;
  padding: 16px clamp(22px, 5vw, 76px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--ink);
}

.brand {
  justify-self: start;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 1.7rem;
  letter-spacing: .02em;
}

.brand span { color: var(--orange); }

.navLinks {
  display: flex;
  gap: 30px;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.navLinks a { padding: 9px 0; border-bottom: 2px solid transparent; }
.navLinks a:hover,
.navLinks a:focus-visible { border-color: var(--orange); }

.navActions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.navHome { display: none; min-height: 46px; padding: 0 15px; align-items: center; border: 1px solid rgba(21,21,21,.28); font-size: .63rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.locationPill {
  min-height: 46px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: white !important;
  border-radius: 999px;
  background: var(--orange);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pin {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 28px;
  border: 5px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.pin i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.hero {
  position: relative;
  min-height: 980px;
  padding: 132px clamp(20px, 4vw, 64px) 60px;
  display: grid;
  grid-template-columns: minmax(350px, .77fr) minmax(630px, 1.23fr);
  gap: clamp(18px, 4vw, 72px);
  align-items: center;
  background: var(--cloth);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 95% 94%, 88% 92%, 80% 96%, 69% 93%, 59% 97%, 48% 94%, 38% 98%, 27% 94%, 14% 97%, 0 93%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .38;
  background:
    radial-gradient(ellipse at 15% 24%, rgba(160, 150, 139, .25), transparent 25%),
    radial-gradient(ellipse at 76% 66%, rgba(168, 157, 145, .2), transparent 32%),
    repeating-linear-gradient(13deg, rgba(90, 82, 75, .05) 0 1px, transparent 1px 8px);
  filter: blur(.3px);
}

.heroCopy {
  position: relative;
  z-index: 4;
  max-width: 700px;
}

.japanese {
  margin-bottom: 44px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .06em;
}

.japanese span { font-size: 1.4em; }

.eyebrow {
  margin-bottom: 16px;
  color: var(--orange);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1,
.welcome h2,
.responsibility h2,
.rulesIntro h2,
.locationSection h2 {
  margin-bottom: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: .9;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(4.5rem, 7.6vw, 9rem);
}

.hero h1 strong {
  display: block;
  color: var(--orange);
  font-weight: inherit;
}

.lead {
  max-width: 620px;
  margin: 30px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.02rem, 1.45vw, 1.26rem);
  line-height: 1.58;
}

.heroActions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}

.primaryButton,
.lightButton {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  background: var(--orange);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.primaryButton:hover,
.primaryButton:focus-visible,
.lightButton:hover,
.lightButton:focus-visible { transform: translateY(-3px); background: var(--ink); }

.textButton {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.textButton span { color: var(--orange); font-size: 1.3rem; }

.posterStage {
  position: relative;
  z-index: 3;
  height: min(780px, 68vw);
  min-height: 690px;
  border: 14px solid transparent;
  border-image: linear-gradient(90deg, #71300d, #b96b2d 21%, #76340f 45%, #bd6d2d 71%, #71300d) 1;
  border-radius: 38px;
}

.cloth {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 26% 28%, rgba(128,120,111,.15), transparent 27%),
    repeating-linear-gradient(15deg, rgba(88,80,73,.035) 0 1px, transparent 1px 8px),
    #f8f7f3;
  box-shadow: inset 0 8px 28px rgba(53,37,27,.3), 0 18px 45px rgba(82,38,12,.35);
}

.jokiMark {
  position: absolute;
  z-index: 5;
  left: 4%;
  top: 12%;
  display: flex;
  align-items: center;
  gap: 14px;
}

.jokiMark > span {
  color: var(--wood-dark);
  font-family: Georgia, serif;
  font-weight: 800;
  letter-spacing: .04em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.jokiMark strong {
  color: #dedddd;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(4.5rem, 7vw, 7.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .72;
  text-shadow: 3px 4px 0 #b8b6b5, -1px -1px 0 white;
  transform: rotate(-4deg);
}

.cloudWrap {
  position: absolute;
  z-index: 7;
  top: 7%;
  left: 42%;
  width: 270px;
  height: 150px;
}

.cloud {
  position: absolute;
  left: 44px;
  top: 34px;
  width: 185px;
  height: 70px;
  border-radius: 50px;
  background: #c8c9c5;
  box-shadow: inset 0 -8px 15px rgba(62,56,51,.15), 0 8px 20px rgba(68,59,52,.15);
}

.cloud i {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: inherit;
  box-shadow: inset 0 -7px 12px rgba(62,56,51,.13);
}

.cloud i:nth-child(1) { left: -14px; top: 14px; width: 72px; height: 72px; }
.cloud i:nth-child(2) { left: 40px; top: -28px; width: 90px; height: 90px; }
.cloud i:nth-child(3) { right: -8px; top: -10px; width: 82px; height: 82px; }
.cloud i:nth-child(4) { right: 37px; bottom: -16px; width: 55px; height: 55px; }

.daruma {
  position: absolute;
  z-index: 3;
  left: 10px;
  top: 45px;
  width: 48px;
  height: 57px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border-radius: 44% 44% 35% 35%;
  background: var(--orange);
  border: 3px solid var(--wood-dark);
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 900;
  transform: rotate(-10deg);
}

.daruma::before {
  position: absolute;
  left: 7px;
  top: 8px;
  width: 28px;
  height: 20px;
  content: "";
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #e7d6b3;
}

.daruma span { position: relative; z-index: 2; margin-top: 24px; }

.kanjiTag {
  position: absolute;
  right: 9px;
  bottom: -3px;
  padding: 10px 8px;
  color: white;
  background: var(--orange);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.1;
  writing-mode: vertical-rl;
  transform: rotate(4deg);
}

.petBadge {
  position: absolute;
  z-index: 8;
  left: 39%;
  top: 31%;
  width: 205px;
  aspect-ratio: 1;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: var(--wood-dark);
  border: 5px solid #793710;
  border-radius: 50%;
  background:
    repeating-linear-gradient(89deg, rgba(93,45,13,.15) 0 1px, transparent 1px 15px),
    linear-gradient(90deg, #a45a20, #c77938 50%, #9e541d);
  box-shadow: inset 0 0 0 4px rgba(239,164,94,.45), 0 14px 24px rgba(79,36,12,.28);
  transform: rotate(5deg);
}

.petBadge > span,
.petBadge > b {
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.petBadge > b { font-size: .9rem; }

.paw {
  position: relative;
  display: block;
  width: 58px;
  height: 52px;
  color: var(--orange);
}

.paw i,
.paw b {
  position: absolute;
  display: block;
  content: "";
  border-radius: 50%;
  background: currentColor;
}

.paw i:nth-child(1) { left: 5px; top: 8px; width: 14px; height: 19px; transform: rotate(-25deg); }
.paw i:nth-child(2) { left: 21px; top: 0; width: 14px; height: 20px; }
.paw i:nth-child(3) { right: 6px; top: 8px; width: 14px; height: 19px; transform: rotate(25deg); }
.paw i:nth-child(4) { right: 0; top: 24px; width: 12px; height: 16px; transform: rotate(30deg); }
.paw b { left: 12px; bottom: 0; width: 39px; height: 29px; border-radius: 52% 52% 45% 45%; }

.leashes {
  position: absolute;
  z-index: 9;
  top: 14%;
  right: -8%;
  width: 65%;
  pointer-events: none;
}

.petGroup {
  position: absolute;
  z-index: 10;
  right: 1%;
  bottom: 1%;
  width: 66%;
  filter: drop-shadow(0 17px 18px rgba(49,30,18,.22));
}

.orangeLabel {
  position: absolute;
  z-index: 12;
  left: 6%;
  bottom: 9%;
  padding: 18px 22px;
  color: white;
  border-radius: 0 0 26px 0;
  background:
    repeating-linear-gradient(90deg, rgba(81,32,5,.12) 0 1px, transparent 1px 19px),
    var(--orange);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 1.85rem;
  letter-spacing: .04em;
  line-height: .9;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.scrollLabel {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 2.5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--wood-dark);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scrollLabel i { width: 1px; height: 33px; background: currentColor; }

.welcome {
  min-height: 650px;
  padding: 110px clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: 72px minmax(330px, 1.15fr) minmax(280px, .65fr);
  gap: clamp(30px, 5vw, 86px);
  align-items: center;
  color: white;
}

.sectionIndex {
  align-self: start;
  padding-top: 5px;
  color: #ffd3b2;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .15em;
}

.welcome .eyebrow { color: #ffd3b2; }

.welcome h2 {
  max-width: 1000px;
  font-size: clamp(4rem, 7.2vw, 8rem);
}

.welcomeCopy > p {
  font-family: Georgia, serif;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.62;
}

.miniBadge {
  margin-top: 38px;
  padding-top: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,.35);
  color: #ffd3b2;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.miniBadge .paw { transform: scale(.72); transform-origin: left center; }

.responsibility {
  min-height: 840px;
  padding: 95px clamp(24px, 6vw, 94px);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: clamp(30px, 6vw, 100px);
  background: var(--cloth);
}

.responsibilityCopy { max-width: 700px; }

.responsibility h2,
.rulesIntro h2 {
  font-size: clamp(4rem, 7vw, 7.6rem);
}

.responsibilityCopy > p:not(.eyebrow) {
  max-width: 610px;
  margin-top: 28px;
  font-family: Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.62;
}

.woodQuote {
  margin-top: 40px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  color: white;
  background:
    repeating-linear-gradient(90deg, rgba(62,25,5,.2) 0 2px, transparent 2px 36px),
    linear-gradient(90deg, #884216, #bb6c2d 48%, #864015);
  box-shadow: 8px 10px 0 rgba(111,51,18,.16);
  transform: rotate(-1deg);
}

.woodQuote > span { color: #ffd1ad; font-family: Georgia, serif; font-size: 3rem; line-height: .7; }
.woodQuote p { margin: 0; font-family: Georgia, serif; font-size: 1.05rem; line-height: 1.45; }

.petsPortrait {
  position: relative;
  height: 640px;
  overflow: hidden;
}

.petsPortrait::after {
  position: absolute;
  left: 8%;
  right: 3%;
  bottom: 3%;
  height: 40px;
  content: "";
  border-radius: 50%;
  background: rgba(81,39,15,.18);
  filter: blur(15px);
}

.sun {
  position: absolute;
  top: 2%;
  right: -4%;
  width: 75%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f4b081;
  opacity: .72;
}

.petsPortrait img {
  position: absolute;
  z-index: 2;
  right: -4%;
  bottom: 4%;
  width: 98%;
  filter: drop-shadow(0 26px 24px rgba(79,39,17,.24));
}

.portraitTag {
  position: absolute;
  z-index: 4;
  left: 3%;
  top: 13%;
  padding: 14px 16px;
  color: white;
  background: var(--orange);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .13em;
  line-height: 1.45;
  text-transform: uppercase;
  transform: rotate(-7deg);
}

.rulesSection {
  padding: 115px clamp(24px, 6vw, 94px) 100px;
  color: white;
  background: var(--ink);
}

.rulesIntro {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 1fr .45fr;
  gap: 40px;
  align-items: end;
}

.rulesIntro .eyebrow,
.rulesIntro h2 { grid-column: 1; }

.rulesIntro h2 { max-width: 1050px; }

.rulesIntro > p:last-child {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
  max-width: 470px;
  margin-bottom: 8px;
  font-family: Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.55;
}

.rulesGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.25);
  border-left: 1px solid rgba(255,255,255,.25);
}

.ruleCard {
  position: relative;
  min-height: 390px;
  padding: clamp(32px, 4vw, 62px);
  border-right: 1px solid rgba(255,255,255,.25);
  border-bottom: 1px solid rgba(255,255,255,.25);
  transition: background 200ms ease, color 200ms ease;
}

.ruleCard:hover { background: var(--orange); }
.ruleCard:hover .paw { color: white; }

.ruleNumber {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(255,255,255,.45);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.ruleCard .paw { margin-bottom: 36px; }

.ruleCard h3 {
  margin-bottom: 17px;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .92;
  text-transform: uppercase;
}

.ruleCard > p {
  margin-bottom: 0;
  font-family: Georgia, serif;
  line-height: 1.55;
}

.exception {
  margin-top: 42px;
  padding-top: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  color: #d9d0ca;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.exception span { color: var(--orange); font-size: 1.3rem; }
.exception p { max-width: 980px; margin: 0; }

.locationSection {
  min-height: 500px;
  padding: 80px clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 54px;
  color: var(--ink);
  background: var(--orange);
}

.bigPin { color: white; transform: scale(4); transform-origin: center; }
.bigPin .pin { display: block; margin: auto; }

.locationSection .eyebrow { color: white; }

.locationSection h2 {
  font-size: clamp(5rem, 9vw, 10rem);
}

.locationSection h2 strong { color: white; font-weight: inherit; }

.locationSection div > p:last-child {
  max-width: 610px;
  margin: 20px 0 0;
  font-family: Georgia, serif;
  font-size: 1.1rem;
}

.lightButton { color: var(--ink) !important; background: white; }

.footer {
  min-height: 126px;
  padding: 28px clamp(24px, 5vw, 76px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: white;
  background: var(--wood-dark);
}

.footer p {
  margin: 0;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer > span {
  justify-self: end;
  color: #f0a570;
  font-family: Georgia, serif;
  font-size: 1.4rem;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 140px;
  }

  .heroCopy { max-width: 880px; }
  .posterStage { width: min(900px, 100%); height: 760px; margin: 0 auto 80px; }

  .welcome {
    grid-template-columns: 55px 1fr;
  }

  .welcomeCopy { grid-column: 2; max-width: 700px; }

  .locationSection { grid-template-columns: 120px 1fr; }
  .locationSection .lightButton { grid-column: 2; justify-self: start; }
}

@media (max-width: 820px) {
  .nav { grid-template-columns: 1fr auto; }
  .navLinks { display: none; }
  .navHome { display: inline-flex; }

  .responsibility { grid-template-columns: 1fr; }
  .responsibilityCopy { max-width: 780px; }

  .rulesIntro { grid-template-columns: 1fr; }
  .rulesIntro > p:last-child { grid-column: 1; grid-row: auto; }

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

@media (max-width: 620px) {
  .nav { min-height: 70px; padding: 12px 17px; }
  .brand { font-size: 1.4rem; }
  .navActions { gap: 6px; }
  .navHome { min-height: 40px; padding: 0 10px; font-size: .55rem; }
  .locationPill { min-height: 40px; padding: 0 12px; font-size: .6rem; }
  .locationPill .pin { width: 17px; height: 21px; border-width: 4px; }

  .hero { padding: 110px 16px 80px; }
  .japanese { margin-bottom: 30px; }
  .hero h1 { font-size: clamp(3.3rem, 15vw, 4.25rem); }
  .lead { font-size: 1rem; }

  .heroActions { display: grid; gap: 18px; }
  .primaryButton { width: 100%; }

  .posterStage {
    min-height: 0;
    height: 570px;
    margin-bottom: 30px;
    border-width: 8px;
  }

  .jokiMark { left: 3%; top: 12%; gap: 7px; }
  .jokiMark > span { font-size: .65rem; }
  .jokiMark strong { font-size: 4.3rem; }

  .cloudWrap { left: 40%; top: 5%; transform: scale(.66); transform-origin: top left; }
  .petBadge { left: 38%; top: 30%; width: 135px; padding: 11px; border-width: 3px; }
  .petBadge .paw { transform: scale(.72); }
  .petBadge > b { font-size: .62rem; }
  .petBadge > span { font-size: .48rem; }

  .leashes { top: 18%; right: -16%; width: 76%; }
  .petGroup { right: -7%; bottom: 2%; width: 82%; }
  .orangeLabel { left: 3%; bottom: 8%; padding: 12px 13px; font-size: 1.15rem; }
  .scrollLabel { display: none; }

  .welcome,
  .responsibility,
  .rulesSection { padding: 78px 20px; }

  .welcome { grid-template-columns: 1fr; }
  .sectionIndex { display: none; }
  .welcomeCopy { grid-column: 1; }

  .welcome h2,
  .responsibility h2,
  .rulesIntro h2 { font-size: clamp(3.6rem, 16vw, 5.2rem); }

  .petsPortrait { height: 470px; }
  .petsPortrait img { right: -10%; width: 112%; }
  .sun { right: -20%; width: 96%; }

  .rulesIntro { margin-bottom: 42px; }
  .ruleCard { padding: 42px 28px; }

  .locationSection {
    padding: 68px 22px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bigPin { transform: scale(2.7); transform-origin: left center; margin-left: 26px; }
  .locationSection h2 { font-size: clamp(5rem, 23vw, 7rem); }
  .locationSection .lightButton { grid-column: 1; width: 100%; }

  .footer { padding: 34px 22px; grid-template-columns: 1fr auto; gap: 18px; }
  .footer p { grid-column: 1 / -1; grid-row: 2; }
}

@media (prefers-reduced-motion: reduce) {
  .page *, .page *::before, .page *::after { scroll-behavior: auto; transition-duration: .01ms !important; }
}
