:root {
  --campfire-black: #15130f;
  --campfire-ink: #252018;
  --campfire-ember: #e94f1c;
  --campfire-yellow: #f6bd32;
  --campfire-cream: #f1e7cf;
  --campfire-paper: #fff9e9;
  --campfire-moss: #24372c;
  --campfire-line: rgba(37, 32, 24, .3);
}

.hfg-event-lp,
.hfg-event-lp * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.hfg-event-lp {
  position: relative;
  overflow: clip;
  color: var(--campfire-ink);
  background: var(--campfire-paper);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.hfg-event-lp img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hfg-event-progress {
  position: fixed;
  z-index: 35;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  pointer-events: none;
  background: rgba(255, 255, 255, .18);
}

.hfg-event-progress span {
  display: block;
  width: calc(var(--event-progress, 0) * 100%);
  height: 100%;
  background: var(--campfire-ember);
}

.campfire-inner {
  width: min(1180px, calc(100% - 96px));
  margin-inline: auto;
}

.campfire-kicker {
  color: var(--campfire-ember);
  font-family: Jost, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.campfire-hero {
  position: relative;
  min-height: max(760px, 100svh);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: #090806;
}

.campfire-hero__media,
.campfire-hero__shade {
  position: absolute;
  inset: 0;
}

.campfire-hero__media {
  z-index: -3;
  inset: -6% 0;
  transform: translate3d(0, var(--event-parallax, 0px), 0) scale(1.04);
  will-change: transform;
}

.campfire-hero__media img {
  object-position: center center;
  animation: campfireHeroImage 1.8s cubic-bezier(.2, .72, .2, 1) both;
}

.campfire-hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 7, 5, .87) 0%, rgba(8, 7, 5, .57) 43%, rgba(8, 7, 5, .06) 76%),
    linear-gradient(0deg, rgba(8, 7, 5, .75) 0%, rgba(8, 7, 5, 0) 54%);
}

.campfire-hero__collage {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}

.campfire-hero__photo {
  position: absolute;
  margin: 0;
  padding: 8px;
  border: 2px solid var(--campfire-black);
  background: var(--campfire-paper);
  box-shadow: 9px 11px 0 rgba(21, 19, 15, .68);
  overflow: hidden;
}

.campfire-hero__photo--garden {
  top: 16%;
  right: 4%;
  width: min(19vw, 270px);
  height: 174px;
  transform: translate3d(var(--event-pointer-x-reverse, 0px), calc(var(--event-parallax, 0px) + var(--event-pointer-y-reverse, 0px)), 0) rotate(5deg);
}

.campfire-hero__photo--party {
  right: 7%;
  bottom: 4%;
  width: min(21vw, 310px);
  height: 198px;
  transform: translate3d(var(--event-pointer-x, 0px), calc(var(--event-parallax, 0px) + var(--event-pointer-y, 0px)), 0) rotate(-5deg);
}

.campfire-hero__signpost {
  position: absolute;
  right: 21%;
  bottom: 28%;
  width: 270px;
  font-family: Impact, "Arial Black", Jost, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transform: translate3d(var(--event-pointer-x-reverse, 0px), calc(var(--event-parallax, 0px) + var(--event-pointer-y-reverse, 0px)), 0) rotate(-2deg);
}

.campfire-hero__signpost::after {
  content: "";
  display: block;
  width: 14px;
  height: 160px;
  margin: -9px auto 0;
  border: 2px solid var(--campfire-black);
  background: #775433;
}

.campfire-hero__signpost span {
  position: relative;
  z-index: 1;
  display: block;
  width: 245px;
  margin: 0 auto 7px;
  padding: 13px 22px;
  border: 2px solid var(--campfire-black);
  background: var(--campfire-yellow);
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%, 7% 50%);
}

.campfire-hero__signpost span:nth-child(2) {
  margin-left: 27px;
  color: #fff;
  background: var(--campfire-ember);
  transform: rotate(4deg);
}

.campfire-hero__signpost span:nth-child(3) {
  margin-left: -11px;
  color: #fff;
  background: var(--campfire-moss);
  transform: rotate(-3deg);
}

.campfire-hero__spark {
  position: absolute;
  display: block;
  width: 8px;
  height: 18px;
  background: var(--campfire-yellow);
  transform: rotate(34deg);
  animation: campfireSpark 2.8s ease-in-out infinite;
}

.campfire-hero__spark--01 { right: 42%; bottom: 24%; }
.campfire-hero__spark--02 { right: 35%; bottom: 14%; animation-delay: -.7s; }
.campfire-hero__spark--03 { right: 18%; bottom: 19%; animation-delay: -1.4s; }
.campfire-hero__spark--04 { right: 29%; bottom: 8%; animation-delay: -2.1s; }
.campfire-hero__spark--05 { right: 13%; bottom: 31%; animation-delay: -.35s; }

.campfire-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 12px solid rgba(246, 189, 50, .1);
  pointer-events: none;
}

.campfire-hero__content {
  position: relative;
  z-index: 2;
  width: min(1060px, calc(100% - 14vw));
  margin: 0 auto;
  padding: 210px 0 88px;
}

.campfire-hero__edition {
  margin: 0 0 24px;
  color: var(--campfire-yellow);
  font-family: Jost, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.campfire-hero__title {
  position: relative;
  width: fit-content;
  margin: 0;
  font-family: Impact, "Arial Black", Jost, sans-serif;
  font-size: 104px;
  font-weight: 900;
  line-height: .78;
  text-transform: uppercase;
}

.campfire-hero__title span {
  display: block;
  width: fit-content;
  color: var(--campfire-yellow);
  text-shadow: 5px 5px 0 var(--campfire-ember);
  transform: translateX(-70px);
  opacity: 0;
}

.campfire-hero__title span:nth-child(2) {
  margin-left: 95px;
  color: #fff;
  text-shadow: 5px 5px 0 rgba(233, 79, 28, .9);
}

.campfire-hero__title small {
  position: absolute;
  right: -132px;
  bottom: 12px;
  display: block;
  padding: 8px 12px;
  color: var(--campfire-black);
  background: var(--campfire-yellow);
  font-family: Jost, Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-5deg);
}

.event-motion-ready.is-ready .campfire-hero__title span {
  animation: campfireTitleIn .85s cubic-bezier(.19, 1, .22, 1) forwards;
}

.event-motion-ready.is-ready .campfire-hero__title span:nth-child(2) { animation-delay: .14s; }

.campfire-hero__lead {
  margin: 34px 0 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.6;
}

.campfire-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(720px, 100%);
  margin: 35px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .35);
  border-bottom: 1px solid rgba(255, 255, 255, .35);
}

.campfire-hero__meta div {
  padding: 13px 18px 14px 0;
}

.campfire-hero__meta div + div {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, .35);
}

.campfire-hero__meta dt,
.campfire-hero__meta dd {
  font-family: Jost, Arial, sans-serif;
  line-height: 1.35;
}

.campfire-hero__meta dt {
  color: var(--campfire-yellow);
  font-size: 11px;
  font-weight: 800;
}

.campfire-hero__meta dd {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 600;
}

.campfire-hero__scroll {
  position: absolute;
  right: 36px;
  bottom: 54px;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 2px solid var(--campfire-yellow);
  border-radius: 50%;
  color: var(--campfire-yellow);
  font-family: Jost, Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  animation: campfirePulse 2.2s ease-in-out infinite;
}

.campfire-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 16px 0;
  color: var(--campfire-black);
  background: var(--campfire-yellow);
  border-top: 5px solid var(--campfire-ember);
  border-bottom: 5px solid var(--campfire-black);
}

.campfire-marquee div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: Impact, "Arial Black", Jost, sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  animation: campfireMarquee 22s linear infinite;
}

.campfire-marquee i {
  color: var(--campfire-ember);
  font-family: Georgia, serif;
  font-style: normal;
  font-weight: 700;
}

.campfire-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: #fff;
  background: var(--campfire-black);
}

.campfire-nav a {
  min-height: 68px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, .18);
  font-family: Jost, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  transition: color .25s ease, background-color .25s ease;
}

.campfire-nav a:last-child { border-right: 0; }

@media (any-hover: hover) {
  .campfire-nav a:hover {
    color: var(--campfire-black);
    background: var(--campfire-yellow);
  }
}

.campfire-page .pagetop a {
  width: 78px;
  height: 78px;
  right: 76px;
  bottom: 20px;
  font-size: 10px;
}

.campfire-page .pagetop a .ico_svg {
  width: 16px;
}

.campfire-about {
  padding: 150px 0 165px;
  color: var(--campfire-ink);
  background: var(--campfire-cream);
}

.campfire-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: 96px;
}

.campfire-about h2,
.campfire-heading h2,
.campfire-production h2,
.campfire-cta h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 700;
}

.campfire-about__heading .campfire-kicker { margin-bottom: 24px; }

.campfire-about h2 {
  font-size: 48px;
  line-height: 1.55;
}

.campfire-about__copy > p {
  margin: 52px 0 0;
  font-size: 16px;
  line-height: 2.15;
}

.campfire-about__facts {
  margin-top: 48px;
  border-top: 2px solid var(--campfire-ink);
}

.campfire-about__facts span {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid var(--campfire-line);
  font-family: Jost, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.campfire-about__facts b {
  color: var(--campfire-ember);
  font-size: 12px;
}

.campfire-poster {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: #090806;
}

.campfire-poster__media {
  position: absolute;
  z-index: -2;
  inset: -8% 0;
  transform: translate3d(0, var(--event-parallax, 0px), 0) scale(1.05);
}

.campfire-poster::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(10, 8, 5, .48);
}

.campfire-poster__word {
  position: absolute;
  top: 74px;
  left: 4vw;
  font-family: Impact, "Arial Black", Jost, sans-serif;
  font-size: 116px;
  font-weight: 900;
  line-height: .75;
  text-transform: uppercase;
  pointer-events: none;
}

.campfire-poster__word span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(246, 189, 50, .95);
}

.campfire-poster__word span:last-child {
  margin-left: 90px;
  color: var(--campfire-yellow);
  -webkit-text-stroke: 0;
  text-shadow: 5px 5px 0 var(--campfire-ember);
}

.campfire-poster__caption {
  width: min(690px, calc(100% - 96px));
  margin: 0 7vw 78px auto;
  padding: 30px 34px;
  border: 2px solid var(--campfire-yellow);
  color: #fff;
  background: rgba(21, 19, 15, .84);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.7;
}

.campfire-poster__caption b {
  display: block;
  margin-bottom: 10px;
  color: var(--campfire-yellow);
  font-family: Jost, Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.campfire-scenes {
  position: relative;
  padding: 160px 0 190px;
  background: var(--campfire-paper);
}

.campfire-scenes::before {
  content: "";
  position: absolute;
  top: -36px;
  left: 0;
  width: 100%;
  height: 72px;
  background: var(--campfire-paper);
  clip-path: polygon(0 50%, 8% 18%, 18% 62%, 30% 25%, 43% 67%, 57% 20%, 71% 63%, 84% 16%, 100% 52%, 100% 100%, 0 100%);
}

.campfire-heading {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 74px;
  margin-bottom: 86px;
}

.campfire-heading h2 {
  font-size: 50px;
  line-height: 1.45;
}

.campfire-scenes__list {
  display: grid;
  gap: 92px;
}

.campfire-scene {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  min-height: 620px;
  border: 3px solid var(--campfire-ink);
  background: var(--campfire-cream);
  box-shadow: 14px 14px 0 var(--campfire-yellow);
}

.campfire-scene:nth-child(even) {
  grid-template-columns: minmax(390px, .92fr) minmax(0, 1.08fr);
  box-shadow: -14px 14px 0 var(--campfire-ember);
}

.campfire-scene:nth-child(even) figure { order: 2; }

.campfire-scene figure {
  min-height: 620px;
  margin: 0;
  overflow: hidden;
}

.campfire-scene > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
}

.campfire-scene > div > span {
  margin-bottom: 24px;
  color: var(--campfire-ember);
  font-family: Jost, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.campfire-scene h3 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.55;
}

.campfire-scene p {
  margin: 25px 0 0;
  font-size: 15px;
  line-height: 2.05;
}

.campfire-scene ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 34px 0 0;
  padding: 0;
}

.campfire-scene li {
  padding: 7px 10px;
  border: 1px solid currentColor;
  font-family: Jost, Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.campfire-scene--dark {
  color: #fff;
  background: var(--campfire-black);
}

.campfire-scene--dark p { color: rgba(255, 255, 255, .75); }
.campfire-scene--dark > div > span { color: var(--campfire-yellow); }

.campfire-flow {
  padding: 160px 0 180px;
  color: #fff;
  background: var(--campfire-moss);
}

.campfire-flow__grid {
  display: grid;
  grid-template-columns: minmax(330px, .76fr) minmax(0, 1.24fr);
  gap: 110px;
}

.campfire-heading--light {
  position: sticky;
  top: 90px;
  display: block;
  align-self: start;
  margin-bottom: 0;
}

.campfire-heading--light .campfire-kicker {
  color: var(--campfire-yellow);
  margin-bottom: 26px;
}

.campfire-heading--light h2 {
  font-size: 42px;
  line-height: 1.55;
}

.campfire-timeline {
  margin: 0;
  padding: 0;
}

.campfire-timeline li {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 34px;
  min-height: 205px;
  padding: 0 0 48px;
  border-top: 1px solid rgba(255, 255, 255, .32);
}

.campfire-timeline li > span {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-top: 26px;
  border-radius: 50%;
  color: var(--campfire-black);
  background: var(--campfire-yellow);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 21px;
}

.campfire-timeline li > div { padding-top: 26px; }

.campfire-timeline time {
  color: var(--campfire-yellow);
  font-family: Jost, Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.campfire-timeline h3 {
  margin: 8px 0 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}

.campfire-timeline p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.9;
}

.campfire-gallery {
  padding: 160px 0 180px;
  color: var(--campfire-ink);
  background: var(--campfire-yellow);
}

.campfire-gallery .campfire-kicker { color: var(--campfire-black); }

.campfire-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.campfire-gallery__grid figure {
  position: relative;
  grid-column: span 4;
  height: 390px;
  margin: 0;
  border: 3px solid var(--campfire-black);
  background: #d19b21;
  overflow: hidden;
}

.campfire-gallery__grid .campfire-gallery__hero {
  grid-column: span 8;
  height: 540px;
}

.campfire-gallery__grid .campfire-gallery__hero + figure { height: 540px; }

.campfire-gallery__grid .campfire-gallery__wide {
  grid-column: span 8;
  height: 390px;
}

.campfire-gallery__grid figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  min-width: 255px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  color: #fff;
  background: rgba(21, 19, 15, .9);
}

.campfire-gallery__grid figcaption b {
  color: var(--campfire-yellow);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 19px;
}

.campfire-gallery__grid figcaption span {
  font-size: 12px;
  font-weight: 700;
}

.campfire-production {
  padding: 150px 0 170px;
  color: var(--campfire-paper);
  background: var(--campfire-black);
}

.campfire-production__grid {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 74px;
}

.campfire-production .campfire-kicker { color: var(--campfire-yellow); }

.campfire-production h2 {
  font-size: 48px;
  line-height: 1.55;
}

.campfire-production ul {
  margin: 52px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.campfire-production li {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 34px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.campfire-production li b {
  color: var(--campfire-yellow);
  font-family: Jost, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.campfire-production li span {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.9;
}

.campfire-cta {
  position: relative;
  min-height: 700px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: #090806;
}

.campfire-cta__media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.campfire-cta__media img {
  filter: brightness(.42);
}

.campfire-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(12, 10, 7, .28);
}

.campfire-cta__inner {
  width: min(850px, calc(100% - 96px));
  padding: 80px 48px;
  border: 2px solid var(--campfire-yellow);
  background: rgba(21, 19, 15, .78);
  text-align: center;
}

.campfire-cta .campfire-kicker {
  margin-bottom: 23px;
  color: var(--campfire-yellow);
}

.campfire-cta h2 {
  font-size: 50px;
  line-height: 1.5;
}

.campfire-cta__inner > p:not(.campfire-kicker) {
  max-width: 610px;
  margin: 27px auto 0;
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  line-height: 2;
}

.campfire-cta__actions {
  display: flex;
  justify-content: center;
  gap: 13px;
  margin-top: 40px;
}

.campfire-cta__actions a {
  width: 260px;
  min-height: 62px;
  display: grid;
  place-items: center;
  border: 2px solid var(--campfire-yellow);
  color: var(--campfire-black);
  background: var(--campfire-yellow);
  font-size: 15px;
  font-weight: 800;
  transition: color .25s ease, background-color .25s ease;
}

.campfire-cta__actions a:last-child {
  color: #fff;
  background: transparent;
}

@media (any-hover: hover) {
  .campfire-cta__actions a:hover {
    color: #fff;
    background: var(--campfire-ember);
    border-color: var(--campfire-ember);
  }
}

.event-motion-ready .event-reveal {
  transform: translateY(52px);
  opacity: 0;
  transition: transform .9s cubic-bezier(.19, 1, .22, 1), opacity .72s ease;
}

.event-motion-ready .event-reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@keyframes campfireHeroImage {
  from { transform: scale(1.1); opacity: .3; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes campfireTitleIn {
  to { transform: translateX(0); opacity: 1; }
}

@keyframes campfirePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes campfireMarquee {
  to { transform: translateX(-50%); }
}

@keyframes campfireSpark {
  0%, 100% { transform: translateY(0) rotate(34deg); opacity: .35; }
  50% { transform: translateY(-24px) rotate(48deg); opacity: 1; }
}

@media screen and (max-width: 1024px) {
  #wrapper {
    width: 100%;
    min-width: 0;
  }

  #header .header__in {
    width: 100%;
    min-width: 0;
  }

  .menu {
    margin-left: auto;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .campfire-inner { width: min(100% - 64px, 980px); }
  .campfire-hero__title { font-size: 86px; }
  .campfire-hero__photo--garden { right: 2%; width: 220px; }
  .campfire-hero__photo--party { right: 4%; width: 250px; }
  .campfire-hero__signpost { right: 18%; transform: scale(.86) rotate(-2deg); }
  .campfire-about__grid { gap: 64px; }
  .campfire-scene { grid-template-columns: 1fr 1fr; }
  .campfire-scene:nth-child(even) { grid-template-columns: 1fr 1fr; }
  .campfire-scene > div { padding: 46px; }
  .campfire-flow__grid { gap: 72px; }
}

@media screen and (max-width: 767px) {
  .hfg-event-progress { height: 3px; }
  .campfire-inner { width: calc(100% - 40px); }

  .campfire-hero { min-height: 720px; }

  .campfire-hero__media {
    inset: -4% -58% -4% -55%;
  }

  .campfire-hero__media img { object-position: 52% center; }

  .campfire-hero__photo--garden,
  .campfire-hero__photo--party { display: none; }

  .campfire-hero__signpost {
    right: -82px;
    bottom: 31%;
    transform: scale(.6) rotate(-4deg);
    transform-origin: center bottom;
    opacity: .62;
  }

  .campfire-hero__spark--01,
  .campfire-hero__spark--03,
  .campfire-hero__spark--05 { display: none; }

  .campfire-hero__shade {
    background: linear-gradient(0deg, rgba(8, 7, 5, .94) 0%, rgba(8, 7, 5, .43) 64%, rgba(8, 7, 5, .12) 100%);
  }

  .campfire-hero::before { border-width: 7px; }

  .campfire-hero__content {
    width: calc(100% - 40px);
    padding: 180px 0 72px;
  }

  .campfire-hero__edition {
    max-width: 250px;
    font-size: 10px;
  }

  .campfire-hero__title {
    font-size: 57px;
    line-height: .82;
  }

  .campfire-hero__title span:nth-child(2) { margin-left: 43px; }

  .campfire-hero__title small {
    right: -72px;
    bottom: 4px;
    font-size: 11px;
  }

  .campfire-hero__lead { margin-top: 28px; font-size: 18px; }

  .campfire-hero__meta {
    grid-template-columns: 1fr;
    width: 270px;
    margin-top: 28px;
  }

  .campfire-hero__meta div {
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: center;
    padding: 9px 0;
  }

  .campfire-hero__meta div + div {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .3);
    border-left: 0;
  }

  .campfire-hero__meta dd { margin-top: 0; }
  .campfire-hero__scroll { display: none; }

  .campfire-marquee { padding: 11px 0; border-top-width: 3px; border-bottom-width: 3px; }
  .campfire-marquee div { gap: 18px; font-size: 22px; }

  .campfire-nav {
    grid-template-columns: repeat(4, 130px);
    overflow-x: auto;
  }

  .campfire-nav a { min-height: 58px; font-size: 11px; }

  .campfire-about,
  .campfire-scenes,
  .campfire-flow,
  .campfire-gallery,
  .campfire-production {
    padding: 92px 0 108px;
  }

  .campfire-about__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .campfire-about__heading .campfire-kicker { margin-bottom: 17px; }
  .campfire-about h2 { font-size: 29px; }
  .campfire-about__copy > p { margin-top: 20px; font-size: 14px; line-height: 2; }
  .campfire-about__facts { margin-top: 35px; }

  .campfire-poster { min-height: 650px; }
  .campfire-poster__media { inset: -4% -55%; }
  .campfire-poster__media img { object-position: 53% center; }

  .campfire-poster__word {
    top: 56px;
    left: 20px;
    font-size: 63px;
    line-height: .8;
  }

  .campfire-poster__word span:last-child { margin-left: 40px; }

  .campfire-poster__caption {
    width: calc(100% - 40px);
    margin: 0 20px 46px;
    padding: 22px 20px;
    font-size: 19px;
  }

  .campfire-heading {
    grid-template-columns: 1fr;
    gap: 19px;
    margin-bottom: 48px;
  }

  .campfire-heading h2 { font-size: 30px; }
  .campfire-scenes__list { gap: 65px; }

  .campfire-scene,
  .campfire-scene:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: 0;
    box-shadow: 8px 8px 0 var(--campfire-yellow);
  }

  .campfire-scene:nth-child(even) { box-shadow: -8px 8px 0 var(--campfire-ember); }
  .campfire-scene:nth-child(even) figure { order: 0; }
  .campfire-scene figure { min-height: 0; height: 340px; }
  .campfire-scene > div { padding: 34px 26px 38px; }
  .campfire-scene > div > span { margin-bottom: 18px; font-size: 10px; }
  .campfire-scene h3 { font-size: 24px; }
  .campfire-scene p { margin-top: 18px; font-size: 14px; line-height: 1.95; }
  .campfire-scene ul { margin-top: 25px; }

  .campfire-flow__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .campfire-heading--light {
    position: static;
    margin-bottom: 0;
  }

  .campfire-heading--light h2 { font-size: 29px; }
  .campfire-timeline li { grid-template-columns: 58px 1fr; gap: 18px; min-height: 180px; }
  .campfire-timeline li > span { width: 52px; height: 52px; margin-top: 22px; font-size: 16px; }
  .campfire-timeline li > div { padding-top: 21px; }
  .campfire-timeline h3 { font-size: 22px; }
  .campfire-timeline p { font-size: 13px; }

  .campfire-gallery__grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .campfire-gallery__grid figure,
  .campfire-gallery__grid .campfire-gallery__hero,
  .campfire-gallery__grid .campfire-gallery__hero + figure,
  .campfire-gallery__grid .campfire-gallery__wide {
    grid-column: span 1;
    height: 280px;
    border-width: 2px;
  }

  .campfire-gallery__grid .campfire-gallery__hero {
    grid-column: 1 / -1;
    height: 360px;
  }

  .campfire-gallery__grid .campfire-gallery__wide {
    grid-column: 1 / -1;
    height: 310px;
  }

  .campfire-gallery__grid figcaption {
    min-width: 0;
    width: 100%;
    gap: 8px;
    padding: 9px;
  }

  .campfire-gallery__grid figcaption b { font-size: 14px; }
  .campfire-gallery__grid figcaption span { font-size: 10px; }

  .campfire-production__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .campfire-production h2 { font-size: 29px; }
  .campfire-production ul { margin-top: 36px; }
  .campfire-production li { grid-template-columns: 1fr; gap: 9px; padding: 22px 0; }
  .campfire-production li span { font-size: 13px; }

  .campfire-cta { min-height: 650px; padding: 64px 0; }
  .campfire-cta__media { inset: 0 -54%; }
  .campfire-cta__media img { object-position: 52% center; }

  .campfire-cta__inner {
    width: calc(100% - 40px);
    padding: 54px 22px;
  }

  .campfire-cta h2 { font-size: 29px; }
  .campfire-cta__inner > p:not(.campfire-kicker) { font-size: 14px; line-height: 1.9; }
  .campfire-cta__actions { flex-direction: column; align-items: center; margin-top: 32px; }
  .campfire-cta__actions a { width: 100%; max-width: 300px; min-height: 56px; }
}

/* Campfire opening and persistent fire atmosphere */
body.campfire-opening-active {
  overflow: hidden;
  touch-action: none;
}

body.campfire-opening-active #header {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.campfire-opening {
  position: fixed;
  z-index: 10000;
  inset: 0;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #050402;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .5s ease, visibility 0s linear .5s, filter .8s ease, transform .8s cubic-bezier(.2, .75, .2, 1);
}

.campfire-opening.is-armed,
.campfire-opening.is-playing {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.campfire-opening.is-exiting {
  opacity: 0;
  visibility: visible;
  filter: brightness(1.8) saturate(1.3);
  transform: scale(1.045);
  pointer-events: none;
}

.campfire-opening__media,
.campfire-opening__shade,
.campfire-opening__heat,
.campfire-opening__sparks {
  position: absolute;
  inset: 0;
}

.campfire-opening__media {
  z-index: -4;
  margin: 0;
  opacity: .2;
  transform: scale(1.12);
  transition: opacity 1.8s ease, transform 5.8s cubic-bezier(.18, .72, .22, 1), filter 1.2s ease;
}

.campfire-opening__media img {
  filter: saturate(.72) brightness(.64) contrast(1.08);
}

.campfire-opening.is-playing .campfire-opening__media {
  opacity: .86;
  transform: scale(1.015);
}

.campfire-opening.is-exiting .campfire-opening__media {
  filter: brightness(1.35);
  transform: scale(1.08);
}

.campfire-opening__shade {
  z-index: -3;
  background:
    radial-gradient(circle at 50% 94%, rgba(255, 151, 33, .42), transparent 35%),
    linear-gradient(180deg, rgba(4, 4, 3, .54) 0%, rgba(4, 4, 3, .14) 52%, rgba(4, 3, 2, .46) 100%),
    linear-gradient(90deg, rgba(3, 3, 2, .44), transparent 28%, transparent 72%, rgba(3, 3, 2, .44));
}

.campfire-opening__heat {
  z-index: 1;
  top: 35%;
  left: 20%;
  right: 20%;
  bottom: -16%;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255, 204, 72, .22) 0%, rgba(255, 98, 17, .13) 28%, transparent 68%);
  filter: blur(18px);
  mix-blend-mode: screen;
  opacity: 0;
  transform: scale(.72, .45) translateY(18%);
  transition: opacity 1.1s ease .25s, transform 2s cubic-bezier(.16, .72, .18, 1) .15s;
  animation: campfireOpeningHeat 2.6s ease-in-out infinite alternate;
}

.campfire-opening.is-playing .campfire-opening__heat {
  opacity: 1;
  transform: scale(1.16, 1) translateY(0);
}

.campfire-opening__fire {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: -11%;
  width: min(760px, 78vw);
  height: min(690px, 78vh);
  opacity: 0;
  transform: translateX(-50%) translateY(34%) scale(.7, .2);
  transform-origin: 50% 100%;
  transition: opacity .28s ease .22s, transform 1.4s cubic-bezier(.16, .78, .18, 1) .22s;
  filter: drop-shadow(0 -10px 38px rgba(255, 93, 11, .5));
}

.campfire-opening.is-playing .campfire-opening__fire {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.campfire-opening.is-exiting .campfire-opening__fire {
  opacity: .15;
  transform: translateX(-50%) translateY(-68%) scale(1.55, 2.2);
  transition: opacity .72s ease, transform .85s cubic-bezier(.2, .82, .22, 1);
}

.campfire-opening__flame {
  position: absolute;
  z-index: 2;
  left: var(--flame-left);
  bottom: var(--flame-bottom);
  width: var(--flame-width);
  height: var(--flame-height);
  border-radius: 48% 52% 44% 56% / 76% 72% 28% 24%;
  clip-path: polygon(50% 0, 72% 27%, 94% 63%, 84% 100%, 16% 100%, 6% 63%, 28% 27%);
  background:
    radial-gradient(ellipse at 50% 82%, #fff8b8 0 8%, #ffd02d 20%, #ff7a16 51%, rgba(218, 40, 7, .86) 75%, rgba(112, 11, 2, 0) 100%);
  box-shadow: 0 0 22px rgba(255, 102, 16, .48);
  mix-blend-mode: screen;
  transform-origin: 50% 100%;
  animation: campfireOpeningFlame var(--flame-duration) ease-in-out var(--flame-delay) infinite alternate;
}

.campfire-opening__flame:nth-child(3n) {
  z-index: 1;
  opacity: .72;
  filter: blur(3px);
}

.campfire-opening__flame:nth-child(4n) {
  background: radial-gradient(ellipse at 50% 84%, #fffbd7 0 8%, #ffdc3d 25%, #ff5214 58%, rgba(121, 10, 3, 0) 100%);
}

.campfire-opening__logs {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 17%;
  width: 38%;
  height: 7%;
  border: 4px solid #1e0c04;
  border-radius: 999px;
  background: linear-gradient(90deg, #241006 0%, #713118 18%, #b65a2c 48%, #5c2412 82%, #1b0b04 100%);
  box-shadow: inset 0 5px 0 rgba(255, 195, 89, .17), 0 8px 28px rgba(0, 0, 0, .7);
  transform: translateX(-50%) rotate(9deg);
}

.campfire-opening__logs::before {
  content: "";
  position: absolute;
  inset: -4px;
  border: 4px solid #1e0c04;
  border-radius: inherit;
  background: linear-gradient(90deg, #1b0b04, #7d371b 22%, #c56a32 52%, #57200f 82%, #170903);
  transform: rotate(-21deg);
}

.campfire-opening__sparks {
  z-index: 4;
  pointer-events: none;
}

.campfire-opening__ember {
  position: absolute;
  left: var(--ember-left);
  bottom: var(--ember-bottom);
  width: var(--ember-size);
  height: calc(var(--ember-size) * 1.8);
  border-radius: 60% 40% 55% 45%;
  background: #ffd454;
  box-shadow: 0 0 8px #ff7b16, 0 0 16px rgba(255, 79, 13, .72);
  opacity: 0;
  transform: rotate(36deg) scale(.2);
}

.campfire-opening.is-playing .campfire-opening__ember {
  animation: campfireOpeningEmber var(--ember-duration) cubic-bezier(.18, .72, .28, 1) var(--ember-delay) infinite;
}

.campfire-opening__copy {
  position: absolute;
  z-index: 5;
  top: 9%;
  left: 50%;
  width: min(820px, calc(100% - 100px));
  color: #fff;
  text-align: center;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .82);
  opacity: 0;
  transform: translate(-50%, 28px);
}

.campfire-opening.is-playing .campfire-opening__copy {
  animation: campfireOpeningCopy 1s cubic-bezier(.2, .82, .2, 1) 1.05s forwards;
}

.campfire-opening__copy p,
.campfire-opening__copy small {
  margin: 0;
  font-family: Jost, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.campfire-opening__copy p {
  color: #ffd65a;
  font-size: 12px;
}

.campfire-opening__copy strong {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
  line-height: .9;
}

.campfire-opening__copy strong span:first-child {
  padding-bottom: 8px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 42px;
  font-weight: 700;
}

.campfire-opening__copy strong span:last-child {
  color: #ffb027;
  font-family: Impact, "Arial Black", Jost, sans-serif;
  font-size: 112px;
  font-weight: 900;
  text-shadow: 5px 6px 0 #b52b0b, 0 0 34px rgba(255, 101, 13, .78);
}

.campfire-opening__copy small {
  display: block;
  margin-top: 14px;
  font-size: 11px;
}

.campfire-opening__skip {
  position: absolute;
  z-index: 7;
  right: 24px;
  bottom: 22px;
  min-width: 92px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(255, 214, 90, .75);
  color: #fff;
  background: rgba(5, 4, 2, .5);
  font-family: Jost, Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}

.campfire-opening__skip span { color: #ffd65a; }

@media (any-hover: hover) {
  .campfire-opening__skip:hover {
    color: #171009;
    background: #ffd65a;
  }
}

.campfire-ambient {
  position: fixed;
  z-index: 32;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.campfire-ambient__ember {
  position: absolute;
  left: var(--ambient-left);
  bottom: -18px;
  width: var(--ambient-size);
  height: calc(var(--ambient-size) * 1.7);
  border-radius: 55% 45%;
  background: #ffbd37;
  box-shadow: 0 0 9px rgba(255, 91, 15, .8);
  opacity: 0;
  animation: campfireAmbientEmber var(--ambient-duration) linear var(--ambient-delay) infinite;
}

.campfire-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 24%;
  right: 24%;
  bottom: -18%;
  height: 56%;
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 178, 38, .28), rgba(255, 71, 12, .1) 36%, transparent 70%);
  filter: blur(12px);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: campfireHeroGlow 2.6s ease-in-out infinite alternate;
}

.campfire-hero__photo--party {
  width: min(14vw, 190px);
  height: min(25vw, 338px);
  right: 5%;
  bottom: 3%;
}

.campfire-hero__photo--party img { object-position: center center; }

@keyframes campfireOpeningHeat {
  0% { filter: blur(16px); transform: scale(1.08, .96) translateY(1%); }
  100% { filter: blur(24px); transform: scale(1.2, 1.05) translateY(-3%); }
}

@keyframes campfireOpeningFlame {
  0% { transform: translate3d(-3px, 2px, 0) rotate(var(--flame-lean)) scale(.82, .92); opacity: .74; }
  45% { transform: translate3d(4px, -10px, 0) rotate(var(--flame-lean-reverse)) scale(1.05, 1.12); opacity: 1; }
  100% { transform: translate3d(-2px, -3px, 0) rotate(var(--flame-lean)) scale(.92, 1.02); opacity: .86; }
}

@keyframes campfireOpeningEmber {
  0% { opacity: 0; transform: translate3d(0, 0, 0) rotate(28deg) scale(.25); }
  14% { opacity: 1; }
  70% { opacity: .72; }
  100% { opacity: 0; transform: translate3d(var(--ember-dx), var(--ember-rise), 0) rotate(220deg) scale(.65); }
}

@keyframes campfireOpeningCopy {
  from { opacity: 0; transform: translate(-50%, 28px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes campfireAmbientEmber {
  0% { opacity: 0; transform: translate3d(0, 0, 0) rotate(0deg) scale(.5); }
  12% { opacity: .55; }
  75% { opacity: .25; }
  100% { opacity: 0; transform: translate3d(var(--ambient-drift), -108vh, 0) rotate(300deg) scale(.15); }
}

@keyframes campfireHeroGlow {
  from { opacity: .55; transform: scale(.96, .9); }
  to { opacity: 1; transform: scale(1.08, 1.05); }
}

@media screen and (max-width: 767px) {
  .campfire-opening__media {
    inset: -2% -76%;
  }

  .campfire-opening__media img { object-position: 50% center; }

  .campfire-opening__shade {
    background:
      radial-gradient(circle at 50% 87%, rgba(255, 142, 23, .48), transparent 42%),
      linear-gradient(180deg, rgba(4, 4, 3, .58), rgba(4, 4, 3, .08) 52%, rgba(4, 3, 2, .42));
  }

  .campfire-opening__heat {
    left: -10%;
    right: -10%;
    top: 42%;
  }

  .campfire-opening__fire {
    bottom: -7%;
    width: 118vw;
    height: 61vh;
  }

  .campfire-opening__logs {
    width: 44%;
    height: 8%;
  }

  .campfire-opening__copy {
    top: 8%;
    width: calc(100% - 32px);
  }

  .campfire-opening__copy p { font-size: 9px; }

  .campfire-opening__copy strong {
    display: block;
    margin-top: 13px;
  }

  .campfire-opening__copy strong span {
    display: block;
  }

  .campfire-opening__copy strong span:first-child {
    padding-bottom: 6px;
    font-size: 25px;
  }

  .campfire-opening__copy strong span:last-child {
    font-size: 71px;
    text-shadow: 4px 4px 0 #a92508, 0 0 24px rgba(255, 101, 13, .7);
  }

  .campfire-opening__copy small {
    margin-top: 12px;
    font-size: 9px;
  }

  .campfire-opening__skip {
    right: 14px;
    bottom: 14px;
    min-width: 76px;
    min-height: 40px;
    padding: 0 11px;
  }

  .campfire-hero::after {
    left: -8%;
    right: -8%;
    height: 45%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .campfire-opening,
  .campfire-ambient { display: none !important; }
  .campfire-hero__media,
  .campfire-hero__photo,
  .campfire-hero__signpost,
  .campfire-poster__media { transform: none !important; }
  .campfire-hero__media img,
  .campfire-hero__scroll,
  .campfire-hero__spark,
  .campfire-marquee div,
  .event-motion-ready.is-ready .campfire-hero__title span { animation: none !important; }
  .campfire-hero__title span { transform: none; opacity: 1; }
  .event-motion-ready .event-reveal { transform: none; opacity: 1; transition: none; }
}

/* Campfire report editorial redesign / 2026-07-16 */
:root {
  --cf-night: #090b09;
  --cf-charcoal: #151814;
  --cf-green: #18392d;
  --cf-ember: #e85321;
  --cf-gold: #d8aa55;
  --cf-ivory: #f3efe5;
  --cf-paper: #fbf8f0;
  --cf-blue: #4e8793;
  --cf-line: rgba(21, 24, 20, .24);
  --cf-serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  --cf-sans: Jost, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

#main.hfg-campfire-lp {
  color: var(--cf-charcoal);
  background: var(--cf-paper);
  overflow: visible !important;
}

.hfg-campfire-lp section[id] {
  scroll-margin-top: 80px;
}

.hfg-campfire-lp h1,
.hfg-campfire-lp h2,
.hfg-campfire-lp h3,
.hfg-campfire-lp p,
.hfg-campfire-lp li,
.hfg-campfire-lp a,
.hfg-campfire-lp span,
.hfg-campfire-lp b,
.hfg-campfire-lp time,
.hfg-campfire-lp blockquote,
.hfg-campfire-lp figcaption {
  letter-spacing: 0;
}

.cf-shell {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}

.cf-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  color: var(--cf-ember);
  font-family: var(--cf-sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.cf-label span {
  display: inline-grid;
  width: 40px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
}

.cf-hero {
  position: relative;
  min-height: max(780px, 100svh);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--cf-night);
}

.cf-hero__media,
.cf-hero__shade {
  position: absolute;
  inset: 0;
}

.cf-hero__media {
  z-index: -3;
  inset: -5%;
  transform: translate3d(0, var(--event-parallax, 0px), 0) scale(1.08);
  will-change: transform;
}

.cf-hero__media img {
  object-position: center 54%;
  animation: cfHeroDrift 18s ease-out both;
}

.cf-hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 6, 5, .82) 0%, rgba(4, 6, 5, .28) 52%, rgba(4, 6, 5, .08) 78%),
    linear-gradient(0deg, rgba(4, 6, 5, .78) 0%, rgba(4, 6, 5, 0) 55%),
    linear-gradient(180deg, rgba(4, 6, 5, .45) 0%, rgba(4, 6, 5, 0) 35%);
}

.cf-hero__shade::after {
  content: "";
  position: absolute;
  left: 41%;
  bottom: -18%;
  width: 46%;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 104, 34, .28), rgba(216, 170, 85, .09) 38%, transparent 72%);
  filter: blur(18px);
  mix-blend-mode: screen;
  animation: cfHeroHeat 2.7s ease-in-out infinite alternate;
}

.cf-hero__frame {
  position: absolute;
  z-index: 2;
  inset: 24px;
  pointer-events: none;
}

.cf-hero__frame span {
  position: absolute;
  background: rgba(255, 255, 255, .46);
}

.cf-hero__frame span:nth-child(1),
.cf-hero__frame span:nth-child(2) {
  top: 0;
  bottom: 0;
  width: 1px;
}

.cf-hero__frame span:nth-child(1) { left: 0; }
.cf-hero__frame span:nth-child(2) { right: 0; }

.cf-hero__frame span:nth-child(3),
.cf-hero__frame span:nth-child(4) {
  right: 0;
  left: 0;
  height: 1px;
}

.cf-hero__frame span:nth-child(3) { top: 0; }
.cf-hero__frame span:nth-child(4) { bottom: 0; }

.cf-hero__content {
  position: absolute;
  z-index: 3;
  left: clamp(72px, 8vw, 150px);
  top: 50%;
  width: min(750px, 60vw);
  transform: translateY(-46%);
}

.cf-hero__eyebrow {
  margin: 0 0 22px;
  color: #f0c368;
  font-family: var(--cf-sans);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(16px);
}

.cf-hero__title {
  display: grid;
  width: fit-content;
  margin: 0;
  color: #fff;
  font-family: var(--cf-sans);
  font-size: clamp(112px, 12.5vw, 190px);
  font-weight: 400;
  line-height: .72;
}

.cf-hero__title span {
  display: block;
  width: fit-content;
  overflow: hidden;
  text-shadow: 0 12px 38px rgba(0, 0, 0, .44);
  opacity: 0;
  transform: translateY(70%);
}

.cf-hero__title span:nth-child(2) {
  margin-left: .45em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .9);
}

.cf-hero__title small {
  position: absolute;
  left: 60%;
  top: 44%;
  display: block;
  padding: 9px 16px;
  color: var(--cf-night);
  background: var(--cf-gold);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  transform: rotate(-7deg) translateY(14px);
}

.cf-hero__jp {
  margin: 40px 0 0 7px;
  font-family: var(--cf-serif);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 600;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
}

.event-motion-ready.is-ready .cf-hero__eyebrow {
  animation: cfHeroCopy .85s cubic-bezier(.19, 1, .22, 1) .12s forwards;
}

.event-motion-ready.is-ready .cf-hero__title span {
  animation: cfHeroTitle 1.1s cubic-bezier(.16, 1, .3, 1) .24s forwards;
}

.event-motion-ready.is-ready .cf-hero__title span:nth-child(2) { animation-delay: .36s; }

.event-motion-ready.is-ready .cf-hero__title small {
  animation: cfHeroTag .7s cubic-bezier(.19, 1, .22, 1) .78s forwards;
}

.event-motion-ready.is-ready .cf-hero__jp {
  animation: cfHeroCopy .9s cubic-bezier(.19, 1, .22, 1) .72s forwards;
}

.cf-hero__data {
  position: absolute;
  z-index: 3;
  right: clamp(62px, 6vw, 110px);
  bottom: 66px;
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  width: min(550px, 44vw);
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, .5);
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  opacity: 0;
}

.event-motion-ready.is-ready .cf-hero__data {
  animation: cfHeroCopy .9s cubic-bezier(.19, 1, .22, 1) .9s forwards;
}

.cf-hero__data div {
  padding: 17px 18px 16px;
  border-right: 1px solid rgba(255, 255, 255, .28);
}

.cf-hero__data div:last-child { border-right: 0; }

.cf-hero__data dt,
.cf-hero__data dd {
  margin: 0;
  font-family: var(--cf-sans);
}

.cf-hero__data dt {
  margin-bottom: 6px;
  color: var(--cf-gold);
  font-size: 10px;
  font-weight: 700;
}

.cf-hero__data dd {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.cf-hero__seal {
  position: absolute;
  z-index: 3;
  top: 150px;
  right: clamp(76px, 7.5vw, 142px);
  display: grid;
  width: 118px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 50%;
  font-family: var(--cf-sans);
  opacity: 0;
}

.event-motion-ready.is-ready .cf-hero__seal {
  animation: cfHeroCopy .9s cubic-bezier(.19, 1, .22, 1) 1s forwards;
}

.cf-hero__seal::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
}

.cf-hero__seal span {
  position: absolute;
  top: 24px;
  font-size: 9px;
  font-weight: 700;
}

.cf-hero__seal b {
  color: var(--cf-gold);
  font-size: 34px;
  font-weight: 400;
}

.cf-hero__scroll {
  position: absolute;
  z-index: 4;
  left: 39px;
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  font-family: var(--cf-sans);
  font-size: 10px;
  font-weight: 700;
  writing-mode: vertical-rl;
}

.cf-hero__scroll i {
  display: block;
  width: 1px;
  height: 62px;
  background: rgba(255, 255, 255, .65);
  overflow: hidden;
}

.cf-hero__scroll i::after {
  content: "";
  display: block;
  width: 100%;
  height: 36%;
  background: var(--cf-gold);
  animation: cfScroll 2.1s ease-in-out infinite;
}

.cf-chapters {
  position: sticky;
  z-index: 24;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 110px 0 190px;
  border-bottom: 1px solid rgba(21, 24, 20, .16);
  color: var(--cf-charcoal);
  background: rgba(251, 248, 240, .94);
  backdrop-filter: blur(14px);
}

.cf-chapters__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--cf-sans);
  font-size: 11px;
  font-weight: 700;
}

.cf-chapters__brand span {
  display: grid;
  width: 36px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--cf-charcoal);
  border-radius: 50%;
  font-size: 9px;
}

.cf-chapters > div {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.8vw, 48px);
}

.cf-chapters > div a {
  position: relative;
  padding: 27px 0 24px;
  font-family: var(--cf-sans);
  font-size: 11px;
  font-weight: 700;
}

.cf-chapters > div a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 1px;
  background: var(--cf-ember);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

@media (any-hover: hover) {
  .cf-chapters > div a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

.cf-concept {
  position: relative;
  padding: 180px 0 210px;
  overflow: hidden;
  background: var(--cf-paper);
}

.cf-ghost {
  position: absolute;
  left: -1vw;
  top: 24px;
  margin: 0;
  color: transparent;
  font-family: var(--cf-sans);
  font-size: clamp(150px, 19vw, 300px);
  font-weight: 400;
  line-height: .9;
  -webkit-text-stroke: 1px rgba(21, 24, 20, .09);
  pointer-events: none;
}

.cf-concept__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(480px, 1.15fr);
  gap: clamp(70px, 8vw, 140px);
  align-items: center;
}

.cf-concept__copy {
  padding-top: 70px;
}

.cf-concept__copy h2 {
  margin: 43px 0 36px;
  font-family: var(--cf-serif);
  font-size: clamp(40px, 4vw, 62px);
  font-weight: 600;
  line-height: 1.48;
}

.cf-concept__copy > p:last-of-type {
  width: min(500px, 100%);
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25;
}

.cf-concept__copy blockquote {
  position: relative;
  margin: 52px 0 0;
  padding: 30px 0 0 54px;
  border-top: 1px solid var(--cf-line);
  color: var(--cf-green);
  font-family: var(--cf-serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.9;
}

.cf-concept__copy blockquote span {
  position: absolute;
  left: 0;
  top: 21px;
  color: var(--cf-gold);
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 1;
}

.cf-concept__visual {
  position: relative;
  min-height: 720px;
}

.cf-concept__portrait,
.cf-concept__landscape {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #ddd;
}

.cf-concept__portrait {
  z-index: 2;
  right: 0;
  top: 0;
  width: 54%;
  aspect-ratio: 3 / 5;
}

.cf-concept__portrait img { object-position: center 34%; }

.cf-concept__landscape {
  left: 0;
  bottom: 30px;
  width: 68%;
  aspect-ratio: 4 / 3;
  border: 14px solid var(--cf-paper);
}

.cf-concept__visual > p {
  position: absolute;
  z-index: 3;
  right: 2%;
  bottom: 52px;
  margin: 0;
  color: var(--cf-ember);
  font-family: var(--cf-sans);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
  writing-mode: vertical-rl;
}

.cf-marquee {
  position: relative;
  overflow: hidden;
  color: var(--cf-ivory);
  background: var(--cf-ember);
}

.cf-marquee div {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 116px;
  animation: cfMarquee 27s linear infinite;
}

.cf-marquee span,
.cf-marquee i,
.cf-marquee b {
  display: inline-block;
  margin-right: 34px;
  font-family: var(--cf-sans);
  font-style: normal;
  line-height: 1;
}

.cf-marquee span {
  font-size: 72px;
  font-weight: 400;
}

.cf-marquee i {
  color: var(--cf-night);
  font-family: var(--cf-serif);
  font-size: 26px;
}

.cf-marquee b {
  display: grid;
  width: 48px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
}

.cf-scenes {
  padding: 170px 0 0;
  background: var(--cf-ivory);
}

.cf-section-head {
  display: grid;
  grid-template-columns: 1fr 1.35fr .75fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 110px;
}

.cf-section-head h2 {
  margin: 0;
  font-family: var(--cf-serif);
  font-size: clamp(42px, 4.2vw, 66px);
  font-weight: 600;
  line-height: 1.45;
}

.cf-section-head > p:last-child {
  margin: 0;
  font-size: 15px;
  line-height: 2.05;
}

.cf-scene {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(360px, .8fr);
  min-height: 680px;
}

.cf-scene:nth-of-type(even) {
  grid-template-columns: minmax(360px, .8fr) minmax(0, 1.65fr);
}

.cf-scene:nth-of-type(even) .cf-scene__media { grid-column: 2; }
.cf-scene:nth-of-type(even) .cf-scene__copy { grid-column: 1; grid-row: 1; }

.cf-scene__media {
  position: relative;
  min-height: 680px;
  margin: 0;
  overflow: hidden;
  transition: opacity .65s ease, transform .9s cubic-bezier(.19, 1, .22, 1) !important;
}

.cf-scene__media::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: var(--cf-paper);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1.15s cubic-bezier(.19, 1, .22, 1) .08s;
}

.cf-scene:nth-of-type(even) .cf-scene__media::after {
  transform-origin: left;
}

.cf-scene--table .cf-scene__media::after { background: var(--cf-green); }
.cf-scene--night .cf-scene__media::after { background: var(--cf-night); }

.cf-scene__media.is-visible::after { transform: scaleX(0); }

.cf-scene__media img {
  transition: transform 1.3s cubic-bezier(.19, 1, .22, 1);
}

.cf-scene__media.is-visible img { transform: scale(1.025); }

.cf-scene--day .cf-scene__media img { object-position: 50% center; }
.cf-scene--table .cf-scene__media img { object-position: 63% center; }
.cf-scene--night .cf-scene__media img { object-position: 48% center; }

.cf-scene__copy {
  display: flex;
  min-height: 680px;
  padding: 88px clamp(54px, 5vw, 100px);
  flex-direction: column;
  justify-content: center;
  color: var(--cf-charcoal);
  background: var(--cf-paper);
}

.cf-scene--table .cf-scene__copy {
  color: var(--cf-ivory);
  background: var(--cf-green);
}

.cf-scene--night .cf-scene__copy {
  color: var(--cf-ivory);
  background: var(--cf-night);
}

.cf-scene__copy time {
  display: block;
  margin-bottom: auto;
  color: var(--cf-gold);
  font-family: var(--cf-sans);
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
}

.cf-scene__copy > p:first-of-type {
  margin: 54px 0 18px;
  color: var(--cf-ember);
  font-family: var(--cf-sans);
  font-size: 12px;
  font-weight: 700;
}

.cf-scene__copy h3 {
  margin: 0;
  font-family: var(--cf-serif);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 600;
  line-height: 1.55;
}

.cf-scene__copy > p:last-child {
  margin: 34px 0 0;
  font-size: 15px;
  line-height: 2.05;
}

.cf-fire-circle {
  position: relative;
  min-height: max(760px, 92svh);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--cf-night);
}

.cf-fire-circle__media,
.cf-fire-circle__shade {
  position: absolute;
  inset: 0;
}

.cf-fire-circle__media {
  z-index: -2;
  inset: -5% 0;
  transform: translate3d(0, var(--event-parallax, 0px), 0) scale(1.06);
}

.cf-fire-circle__media img { object-position: center 54%; }

.cf-fire-circle__shade {
  z-index: -1;
  background: rgba(5, 7, 5, .54);
}

.cf-fire-circle__shade::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 5, .65), transparent 40%, rgba(5, 7, 5, .52));
}

.cf-fire-circle__number {
  position: absolute;
  left: -12px;
  bottom: -38px;
  margin: 0;
  color: transparent;
  font-family: var(--cf-sans);
  font-size: min(36vw, 550px);
  font-weight: 400;
  line-height: .75;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .22);
}

.cf-fire-circle__copy {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 120px));
  padding: 70px 0;
  text-align: center;
}

.cf-fire-circle__copy > p {
  margin: 0 0 34px;
  color: var(--cf-gold);
  font-family: var(--cf-sans);
  font-size: 12px;
  font-weight: 700;
}

.cf-fire-circle__copy h2 {
  margin: 0;
  font-family: var(--cf-serif);
  font-size: clamp(44px, 5.2vw, 78px);
  font-weight: 600;
  line-height: 1.55;
  text-shadow: 0 4px 36px rgba(0, 0, 0, .72);
}

.cf-fire-circle__copy span {
  display: inline-block;
  margin-top: 48px;
  padding: 14px 24px;
  border-top: 1px solid rgba(255, 255, 255, .48);
  border-bottom: 1px solid rgba(255, 255, 255, .48);
  font-family: var(--cf-sans);
  font-size: 11px;
  font-weight: 700;
}

.cf-food {
  padding: 180px 0 200px;
  background: var(--cf-paper);
}

.cf-section-head--food {
  grid-template-columns: .65fr 1.2fr .9fr;
}

.cf-food__visuals {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  grid-template-rows: 330px 330px;
  gap: 16px;
}

.cf-food__visuals figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #ddd;
}

.cf-food__main {
  grid-row: 1 / 3;
}

.cf-food__main img { object-position: center center; }
.cf-food__detail img { object-position: 60% center; }
.cf-food__people img { object-position: 54% center; }

.cf-food__visuals figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  color: #fff;
  background: rgba(7, 9, 7, .7);
  font-family: var(--cf-sans);
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(9px);
}

.cf-food__visuals figcaption b { color: var(--cf-gold); }

.cf-food__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 70px 0 0;
  border-top: 1px solid var(--cf-line);
  border-bottom: 1px solid var(--cf-line);
}

.cf-food__points li {
  min-height: 170px;
  padding: 34px 36px;
  border-right: 1px solid var(--cf-line);
}

.cf-food__points li:last-child { border-right: 0; }

.cf-food__points b {
  display: block;
  margin-bottom: 21px;
  color: var(--cf-ember);
  font-family: var(--cf-sans);
  font-size: 13px;
}

.cf-food__points span {
  font-size: 14px;
  line-height: 1.9;
}

.cf-timeline {
  padding: 180px 0 200px;
  color: var(--cf-ivory);
  background: var(--cf-green);
}

.cf-section-head--light .cf-label { color: var(--cf-gold); }

.cf-timeline__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding-top: 54px;
  border-top: 1px solid rgba(243, 239, 229, .38);
}

.cf-timeline__list::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 25%;
  height: 3px;
  background: var(--cf-ember);
  animation: cfTimelineGlow 3.2s ease-in-out infinite alternate;
}

.cf-timeline__list li {
  position: relative;
  min-height: 310px;
  padding: 0 36px;
  border-right: 1px solid rgba(243, 239, 229, .25);
}

.cf-timeline__list li:first-child { padding-left: 0; }
.cf-timeline__list li:last-child { padding-right: 0; border-right: 0; }

.cf-timeline__list time {
  display: block;
  color: var(--cf-gold);
  font-family: var(--cf-sans);
  font-size: 56px;
  line-height: 1;
}

.cf-timeline__list li > span {
  position: absolute;
  right: 22px;
  top: -42px;
  display: grid;
  width: 32px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: var(--cf-night);
  background: var(--cf-gold);
  font-family: var(--cf-sans);
  font-size: 9px;
}

.cf-timeline__list div {
  margin-top: 100px;
}

.cf-timeline__list b {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-family: var(--cf-sans);
  font-size: 14px;
}

.cf-timeline__list p {
  margin: 0;
  color: rgba(243, 239, 229, .8);
  font-size: 13px;
  line-height: 1.95;
}

.cf-gallery {
  padding: 190px 0 220px;
  background: var(--cf-ivory);
}

.cf-gallery__head {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 100px;
}

.cf-gallery__head h2 {
  margin: 39px 0 0;
  font-family: var(--cf-serif);
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 600;
  line-height: 1.35;
}

.cf-gallery__head > p {
  margin: 0;
  padding-bottom: 10px;
  font-family: var(--cf-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
}

.cf-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 130px;
  gap: 16px;
}

.cf-gallery__grid figure {
  position: relative;
  grid-column: span 4;
  grid-row: span 3;
  margin: 0;
  overflow: hidden;
  background: #ddd;
}

.cf-gallery__grid .cf-gallery__wide {
  grid-column: span 8;
  grid-row: span 4;
}

.cf-gallery__grid .cf-gallery__tall {
  grid-column: span 4;
  grid-row: span 5;
}

.cf-gallery__grid .cf-gallery__large {
  grid-column: span 8;
  grid-row: span 5;
}

.cf-gallery__tall img { object-position: center 30%; }

.cf-gallery__grid img {
  transition: transform .9s cubic-bezier(.19, 1, .22, 1), filter .5s ease;
}

.cf-gallery__grid figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 8px 11px;
  color: #fff;
  background: rgba(7, 9, 7, .68);
  font-family: var(--cf-sans);
  font-size: 9px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

@media (any-hover: hover) {
  .cf-gallery__grid figure:hover img {
    transform: scale(1.035);
    filter: saturate(1.05) contrast(1.03);
  }
}

.cf-voice {
  padding: 175px 0 190px;
  color: var(--cf-ivory);
  background: var(--cf-ember);
}

.cf-voice__inner {
  text-align: center;
}

.cf-voice__inner > p,
.cf-voice__inner > span {
  margin: 0;
  font-family: var(--cf-sans);
  font-size: 11px;
  font-weight: 700;
}

.cf-voice__inner blockquote {
  margin: 56px 0 0;
  font-family: var(--cf-serif);
  font-size: clamp(40px, 5vw, 74px);
  font-weight: 600;
  line-height: 1.45;
}

.cf-voice__inner blockquote + blockquote {
  margin-top: 30px;
  color: var(--cf-night);
}

.cf-voice__inner > span {
  display: inline-block;
  margin-top: 70px;
  padding-top: 18px;
  border-top: 1px solid rgba(243, 239, 229, .56);
}

.cf-production {
  padding: 190px 0 210px;
  background: var(--cf-paper);
}

.cf-production__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(80px, 10vw, 170px);
}

.cf-production header h2 {
  margin: 44px 0 0;
  font-family: var(--cf-serif);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 600;
  line-height: 1.52;
}

.cf-production ul {
  margin: 0;
  border-top: 1px solid var(--cf-line);
}

.cf-production li {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 9px 28px;
  padding: 39px 0;
  border-bottom: 1px solid var(--cf-line);
}

.cf-production li b {
  grid-row: 1 / 3;
  color: var(--cf-ember);
  font-family: var(--cf-sans);
  font-size: 11px;
}

.cf-production li h3 {
  margin: 0;
  font-family: var(--cf-serif);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.5;
}

.cf-production li p {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
}

.cf-cta {
  position: relative;
  min-height: max(720px, 90svh);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--cf-night);
}

.cf-cta__media,
.cf-cta__shade {
  position: absolute;
  inset: 0;
}

.cf-cta__media {
  z-index: -2;
}

.cf-cta__media img {
  object-position: center center;
  transform: scale(1.02);
}

.cf-cta__shade {
  z-index: -1;
  background: rgba(5, 7, 5, .66);
}

.cf-cta__shade::before {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(255, 255, 255, .45);
}

.cf-cta__inner {
  width: min(900px, calc(100% - 100px));
  padding: 90px 0;
  text-align: center;
}

.cf-cta__inner > p {
  margin: 0 0 34px;
  color: var(--cf-gold);
  font-family: var(--cf-sans);
  font-size: 11px;
  font-weight: 700;
}

.cf-cta__inner h2 {
  margin: 0;
  font-family: var(--cf-serif);
  font-size: clamp(48px, 5.3vw, 80px);
  font-weight: 600;
  line-height: 1.45;
}

.cf-cta__inner > span {
  display: block;
  margin-top: 35px;
  font-size: 14px;
  line-height: 1.8;
}

.cf-cta__inner > div {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 60px;
}

.cf-cta__inner a {
  display: flex;
  width: 260px;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 24px;
  border: 1px solid rgba(255, 255, 255, .78);
  color: #fff;
  background: rgba(7, 9, 7, .34);
  font-size: 14px;
  font-weight: 700;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}

.cf-cta__inner a:first-child {
  color: var(--cf-night);
  border-color: var(--cf-gold);
  background: var(--cf-gold);
}

.cf-cta__inner a i {
  font-family: var(--cf-sans);
  font-size: 19px;
  font-style: normal;
}

@media (any-hover: hover) {
  .cf-cta__inner a:hover {
    color: #fff;
    border-color: var(--cf-ember);
    background: var(--cf-ember);
  }
}

@keyframes cfHeroDrift {
  from { transform: scale(1.08); opacity: .45; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes cfHeroHeat {
  from { opacity: .55; transform: scale(.94, .86); }
  to { opacity: 1; transform: scale(1.08, 1.03); }
}

@keyframes cfHeroCopy {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cfHeroTitle {
  from { opacity: 0; transform: translateY(70%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cfHeroTag {
  from { opacity: 0; transform: rotate(-7deg) translateY(14px); }
  to { opacity: 1; transform: rotate(-7deg) translateY(0); }
}

@keyframes cfScroll {
  0% { transform: translateY(-110%); }
  55%, 100% { transform: translateY(300%); }
}

@keyframes cfMarquee {
  to { transform: translateX(-50%); }
}

@keyframes cfTimelineGlow {
  from { width: 17%; opacity: .65; }
  to { width: 31%; opacity: 1; }
}

@media screen and (max-width: 1180px) {
  .cf-shell { width: min(1080px, calc(100% - 72px)); }
  .cf-chapters { padding-left: 176px; padding-right: 90px; }
  .cf-chapters__brand { display: none; }
  .cf-chapters { justify-content: flex-end; }
  .cf-hero__content { left: 72px; }
  .cf-hero__data { right: 54px; width: 520px; }
  .cf-concept__grid { grid-template-columns: minmax(0, .85fr) minmax(440px, 1.15fr); gap: 70px; }
  .cf-section-head { gap: 40px; }
  .cf-scene { grid-template-columns: minmax(0, 1.35fr) minmax(340px, .75fr); }
  .cf-scene:nth-of-type(even) { grid-template-columns: minmax(340px, .75fr) minmax(0, 1.35fr); }
  .cf-scene__copy { padding-inline: 48px; }
}

@media screen and (max-width: 767px) {
  .cf-shell {
    width: calc(100% - 40px);
  }

  .cf-label {
    gap: 11px;
    font-size: 10px;
  }

  .cf-label span { width: 31px; font-size: 8px; }

  .cf-hero {
    min-height: max(680px, 100svh);
  }

  .cf-hero__media {
    inset: -4% -54%;
  }

  .cf-hero__media img { object-position: 54% center; }

  .cf-hero__shade {
    background:
      linear-gradient(0deg, rgba(4, 6, 5, .9) 0%, rgba(4, 6, 5, .15) 60%),
      linear-gradient(90deg, rgba(4, 6, 5, .5), rgba(4, 6, 5, .06));
  }

  .cf-hero__frame { inset: 10px; }

  .cf-hero__content {
    left: 24px;
    right: 24px;
    top: auto;
    bottom: 170px;
    width: auto;
    transform: none;
  }

  .cf-hero__eyebrow {
    margin-bottom: 17px;
    font-size: 9px;
  }

  .cf-hero__title {
    font-size: clamp(76px, 25vw, 108px);
    line-height: .76;
  }

  .cf-hero__title span:nth-child(2) { margin-left: .2em; }

  .cf-hero__title small {
    left: 57%;
    top: 43%;
    padding: 7px 10px;
    font-size: 9px;
  }

  .cf-hero__jp {
    margin-top: 28px;
    font-size: 20px;
    line-height: 1.7;
  }

  .cf-hero__data {
    left: 24px;
    right: 24px;
    bottom: 34px;
    grid-template-columns: repeat(3, 1fr);
    width: auto;
  }

  .cf-hero__data div {
    padding: 11px 8px 10px;
  }

  .cf-hero__data dt { margin-bottom: 4px; font-size: 7px; }
  .cf-hero__data dd { font-size: 7px; line-height: 1.35; }

  .cf-hero__seal {
    top: 92px;
    right: 24px;
    width: 76px;
  }

  .cf-hero__seal span { top: 16px; font-size: 6px; }
  .cf-hero__seal b { font-size: 24px; }
  .cf-hero__scroll { display: none; }

  .cf-chapters {
    position: fixed;
    top: 80px;
    right: 0;
    left: 0;
    min-height: 48px;
    padding: 0 74px 0 14px;
    overflow: visible;
    justify-content: flex-start;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-120%);
    transition: opacity .3s ease, transform .45s cubic-bezier(.19, 1, .22, 1);
  }

  .hfg-campfire-lp.cf-nav-visible .cf-chapters {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .cf-chapters > div {
    width: 100%;
    gap: 0;
    justify-content: space-between;
  }

  .cf-chapters > div a {
    padding: 18px 0 16px;
    font-size: 8px;
  }

  .cf-chapters > div a::after { bottom: 10px; }

  .cf-concept {
    padding: 148px 0 120px;
  }

  .hfg-campfire-lp section[id] {
    scroll-margin-top: 136px;
  }

  .cf-ghost {
    top: 18px;
    font-size: 84px;
  }

  .cf-concept__grid {
    display: flex;
    gap: 72px;
    flex-direction: column;
  }

  .cf-concept__copy { padding-top: 18px; }

  .cf-concept__copy h2 {
    margin: 31px 0 25px;
    font-size: 34px;
    line-height: 1.52;
  }

  .cf-concept__copy > p:last-of-type {
    font-size: 13px;
    line-height: 2.05;
  }

  .cf-concept__copy blockquote {
    margin-top: 38px;
    padding: 25px 0 0 38px;
    font-size: 16px;
    line-height: 1.9;
  }

  .cf-concept__copy blockquote span {
    top: 19px;
    font-size: 48px;
  }

  .cf-concept__visual {
    width: 100%;
    min-height: 520px;
  }

  .cf-concept__portrait { width: 62%; }

  .cf-concept__landscape {
    width: 72%;
    bottom: 18px;
    border-width: 8px;
  }

  .cf-concept__visual > p {
    right: 0;
    bottom: 31px;
    font-size: 8px;
  }

  .cf-marquee div { min-height: 74px; }
  .cf-marquee span { margin-right: 22px; font-size: 42px; }
  .cf-marquee i { margin-right: 22px; font-size: 17px; }
  .cf-marquee b { width: 34px; margin-right: 22px; font-size: 7px; }

  .cf-scenes { padding-top: 100px; }

  .cf-section-head,
  .cf-section-head--food {
    display: block;
    margin-bottom: 64px;
  }

  .cf-section-head h2 {
    margin-top: 30px;
    font-size: 34px;
    line-height: 1.48;
  }

  .cf-section-head > p:last-child {
    margin-top: 25px;
    font-size: 13px;
    line-height: 1.95;
  }

  .cf-scene,
  .cf-scene:nth-of-type(even) {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .cf-scene:nth-of-type(even) .cf-scene__media,
  .cf-scene:nth-of-type(even) .cf-scene__copy {
    grid-column: auto;
    grid-row: auto;
  }

  .cf-scene__media {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .cf-scene--night .cf-scene__media { aspect-ratio: 3 / 2; }

  .cf-scene__copy {
    min-height: 420px;
    padding: 46px 24px 54px;
  }

  .cf-scene__copy time {
    margin-bottom: 50px;
    font-size: 48px;
  }

  .cf-scene__copy > p:first-of-type {
    margin: 0 0 14px;
    font-size: 9px;
  }

  .cf-scene__copy h3 {
    font-size: 29px;
    line-height: 1.55;
  }

  .cf-scene__copy > p:last-child {
    margin-top: 24px;
    font-size: 12px;
    line-height: 1.95;
  }

  .cf-fire-circle {
    min-height: 620px;
  }

  .cf-fire-circle__media {
    inset: -4% -75%;
  }

  .cf-fire-circle__media img { object-position: 50% center; }

  .cf-fire-circle__copy {
    width: calc(100% - 40px);
    padding: 70px 0;
  }

  .cf-fire-circle__copy > p {
    margin-bottom: 28px;
    font-size: 9px;
  }

  .cf-fire-circle__copy h2 {
    font-size: 33px;
    line-height: 1.65;
  }

  .cf-fire-circle__copy span {
    margin-top: 35px;
    padding: 11px 12px;
    font-size: 7px;
  }

  .cf-fire-circle__number {
    bottom: -12px;
    font-size: 180px;
  }

  .cf-food {
    padding: 105px 0 120px;
  }

  .cf-food__visuals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 170px;
    gap: 8px;
  }

  .cf-food__main {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .cf-food__detail,
  .cf-food__people {
    grid-row: 2;
  }

  .cf-food__visuals figcaption {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 8px;
    font-size: 7px;
  }

  .cf-food__points {
    display: block;
    margin-top: 44px;
  }

  .cf-food__points li {
    min-height: 0;
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--cf-line);
  }

  .cf-food__points li:last-child { border-bottom: 0; }
  .cf-food__points b { margin-bottom: 11px; font-size: 10px; }
  .cf-food__points span { font-size: 12px; line-height: 1.8; }

  .cf-timeline {
    padding: 105px 0 120px;
  }

  .cf-timeline__list {
    display: block;
    padding: 0 0 0 30px;
    border-top: 0;
    border-left: 1px solid rgba(243, 239, 229, .38);
  }

  .cf-timeline__list::before {
    left: -2px;
    top: 0;
    width: 3px;
    height: 25%;
    animation: cfTimelineGlowMobile 3.2s ease-in-out infinite alternate;
  }

  .cf-timeline__list li,
  .cf-timeline__list li:first-child,
  .cf-timeline__list li:last-child {
    min-height: 0;
    padding: 0 0 52px;
    border-right: 0;
  }

  .cf-timeline__list li:last-child { padding-bottom: 0; }

  .cf-timeline__list time { font-size: 42px; }

  .cf-timeline__list li > span {
    left: -43px;
    right: auto;
    top: 4px;
    width: 25px;
    font-size: 7px;
  }

  .cf-timeline__list div { margin-top: 27px; }
  .cf-timeline__list b { margin-bottom: 11px; font-size: 11px; }
  .cf-timeline__list p { font-size: 11px; line-height: 1.85; }

  .cf-gallery {
    padding: 105px 0 120px;
  }

  .cf-gallery__head {
    display: block;
    margin-bottom: 58px;
  }

  .cf-gallery__head h2 {
    margin-top: 30px;
    font-size: 38px;
    line-height: 1.4;
  }

  .cf-gallery__head > p {
    margin-top: 28px;
    font-size: 14px;
    line-height: 1.9;
  }

  .cf-gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 138px;
    gap: 8px;
  }

  .cf-gallery__grid figure,
  .cf-gallery__grid .cf-gallery__wide,
  .cf-gallery__grid .cf-gallery__large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .cf-gallery__grid .cf-gallery__tall {
    grid-column: span 1;
    grid-row: span 3;
  }

  .cf-gallery__grid figure:nth-child(3),
  .cf-gallery__grid figure:nth-child(4),
  .cf-gallery__grid figure:nth-child(6) {
    grid-column: span 1;
    grid-row: span 2;
  }

  .cf-gallery__grid figcaption {
    left: 8px;
    bottom: 8px;
    padding: 6px 7px;
    font-size: 6px;
  }

  .cf-voice {
    padding: 105px 0 115px;
  }

  .cf-voice__inner blockquote {
    margin-top: 38px;
    font-size: 29px;
    line-height: 1.6;
  }

  .cf-voice__inner blockquote + blockquote { margin-top: 20px; }
  .cf-voice__inner > p, .cf-voice__inner > span { font-size: 8px; }
  .cf-voice__inner > span { margin-top: 48px; }

  .cf-production {
    padding: 105px 0 120px;
  }

  .cf-production__grid {
    display: block;
  }

  .cf-production header h2 {
    margin-top: 30px;
    font-size: 34px;
    line-height: 1.55;
  }

  .cf-production ul { margin-top: 54px; }

  .cf-production li {
    display: block;
    padding: 30px 0;
  }

  .cf-production li b { display: block; margin-bottom: 14px; font-size: 9px; }
  .cf-production li h3 { font-size: 20px; }
  .cf-production li p { margin-top: 12px; font-size: 11px; line-height: 1.85; }

  .cf-cta {
    min-height: 650px;
  }

  .cf-cta__media { inset: 0 -72%; }
  .cf-cta__media img { object-position: 50% center; }
  .cf-cta__shade::before { inset: 10px; }

  .cf-cta__inner {
    width: calc(100% - 40px);
    padding: 70px 0;
  }

  .cf-cta__inner > p { margin-bottom: 28px; font-size: 8px; }

  .cf-cta__inner h2 {
    font-size: 34px;
    line-height: 1.6;
  }

  .cf-cta__inner > span {
    margin-top: 25px;
    font-size: 11px;
    line-height: 1.8;
  }

  .cf-cta__inner > div {
    display: grid;
    gap: 8px;
    margin-top: 42px;
  }

  .cf-cta__inner a {
    width: min(280px, 100%);
    min-height: 54px;
    margin-inline: auto;
    font-size: 12px;
  }

  .campfire-page .pagetop a {
    right: 20px;
    bottom: 16px;
    width: 62px;
    height: 62px;
    font-size: 8px;
  }

  .campfire-page .pagetop a .ico_svg { width: 12px; }
}

@keyframes cfTimelineGlowMobile {
  from { height: 17%; opacity: .65; }
  to { height: 31%; opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .cf-hero__media,
  .cf-fire-circle__media { transform: none !important; }
  .cf-hero__media img,
  .cf-hero__shade::after,
  .cf-hero__scroll i::after,
  .cf-marquee div,
  .cf-timeline__list::before { animation: none !important; }
  .cf-hero__eyebrow,
  .cf-hero__title span,
  .cf-hero__title small,
  .cf-hero__jp,
  .cf-hero__data,
  .cf-hero__seal { opacity: 1; transform: none; animation: none !important; }
  .cf-hero__title small { transform: rotate(-7deg); }
  .cf-scene__media::after { display: none; }
}

/* Romantic cinematic opening / 2026-07-16 */
.campfire-opening--romantic {
  background: #080a08;
  transition: opacity 1.05s ease, visibility 0s linear 1.05s, filter 1.05s ease, transform 1.05s ease;
}

.campfire-opening--romantic.is-armed,
.campfire-opening--romantic.is-playing {
  transition-delay: 0s;
}

.campfire-opening--romantic.is-exiting {
  filter: blur(8px) brightness(1.08);
  transform: scale(1.018);
}

.campfire-opening--romantic .campfire-opening__media {
  z-index: -6;
  inset: -4%;
  opacity: 0;
  filter: blur(8px);
  transform: scale(1.12);
  transition: opacity 2.1s ease .15s, filter 2.2s ease .15s, transform 7s cubic-bezier(.18, .72, .22, 1);
}

.campfire-opening--romantic .campfire-opening__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.campfire-opening--romantic .campfire-opening__media img {
  object-position: center 55%;
  filter: saturate(.76) brightness(.52) contrast(1.04);
}

.campfire-opening--romantic.is-playing .campfire-opening__media {
  opacity: 1;
  filter: blur(0);
  transform: scale(1.015);
}

.campfire-opening--romantic.is-exiting .campfire-opening__media {
  filter: blur(4px) brightness(.82);
  transform: scale(1.04);
}

.campfire-opening--romantic .campfire-opening__shade {
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(6, 8, 6, .83) 0%, rgba(6, 8, 6, .5) 34%, rgba(6, 8, 6, .08) 68%, rgba(6, 8, 6, .2) 100%),
    linear-gradient(0deg, rgba(5, 6, 5, .62) 0%, transparent 52%, rgba(5, 6, 5, .34) 100%);
}

.campfire-opening__veil {
  position: absolute;
  z-index: 8;
  top: 0;
  bottom: 0;
  width: calc(50% + 1px);
  background: #090b09;
  transition: transform 1.55s cubic-bezier(.72, 0, .2, 1) .2s;
}

.campfire-opening__veil::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(218, 177, 106, .52);
  box-shadow: 0 0 28px rgba(218, 177, 106, .22);
}

.campfire-opening__veil--left { left: 0; }
.campfire-opening__veil--right { right: 0; }
.campfire-opening__veil--left::after { right: 0; }
.campfire-opening__veil--right::after { left: 0; }

.campfire-opening--romantic.is-playing .campfire-opening__veil--left {
  transform: translateX(-101%);
}

.campfire-opening--romantic.is-playing .campfire-opening__veil--right {
  transform: translateX(101%);
}

.campfire-opening__mark {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 16px;
  color: rgba(247, 239, 221, .82);
  font-family: Jost, Arial, sans-serif;
  transform: translate(-50%, -50%);
}

.campfire-opening__mark span {
  display: grid;
  width: 58px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(215, 174, 104, .72);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 500;
}

.campfire-opening__mark b {
  font-size: 8px;
  font-weight: 500;
}

.campfire-opening--romantic.is-playing .campfire-opening__mark {
  animation: campfireRomanticMark .8s ease .68s forwards;
}

.campfire-opening__glow {
  position: absolute;
  z-index: 1;
  left: 8%;
  bottom: -20%;
  width: 62%;
  height: 66%;
  background: radial-gradient(ellipse at 48% 78%, rgba(242, 183, 91, .24), rgba(192, 83, 37, .11) 31%, transparent 67%);
  filter: blur(18px);
  mix-blend-mode: screen;
  opacity: 0;
  transform: scale(.86);
  transition: opacity 1.8s ease 1.1s, transform 3.5s ease 1.1s;
}

.campfire-opening--romantic.is-playing .campfire-opening__glow {
  opacity: 1;
  transform: scale(1.08);
  animation: campfireRomanticGlow 2.8s ease-in-out 2.2s infinite alternate;
}

.campfire-opening__frame {
  position: absolute;
  z-index: 5;
  inset: 24px;
  border: 1px solid rgba(246, 230, 197, .42);
  opacity: 0;
  transform: scale(.985);
}

.campfire-opening__frame span {
  position: absolute;
  top: -1px;
  left: 8%;
  width: 17%;
  height: 3px;
  background: #d7ae68;
  transform: scaleX(0);
  transform-origin: left;
}

.campfire-opening--romantic.is-playing .campfire-opening__frame {
  animation: campfireRomanticFrame .9s ease 1.12s forwards;
}

.campfire-opening--romantic.is-playing .campfire-opening__frame span {
  animation: campfireRomanticLine 1.15s cubic-bezier(.19, 1, .22, 1) 1.45s forwards;
}

.campfire-opening__rings {
  position: absolute;
  z-index: 5;
  right: 8vw;
  bottom: 10vh;
  width: 128px;
  height: 78px;
  opacity: 0;
}

.campfire-opening__rings i {
  position: absolute;
  top: 0;
  width: 76px;
  aspect-ratio: 1;
  border: 1px solid rgba(234, 204, 147, .76);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(234, 204, 147, .05), 0 0 18px rgba(0, 0, 0, .24);
}

.campfire-opening__rings i:first-child { left: 0; }
.campfire-opening__rings i:last-child { right: 0; }

.campfire-opening--romantic.is-playing .campfire-opening__rings {
  animation: campfireRomanticRings 1.2s cubic-bezier(.19, 1, .22, 1) 1.85s forwards;
}

.campfire-opening--romantic .campfire-opening__sparks {
  z-index: 4;
}

.campfire-opening--romantic .campfire-opening__ember {
  height: var(--ember-size);
  border-radius: 50%;
  background: #f2c47a;
  box-shadow: 0 0 7px rgba(234, 164, 70, .74);
  filter: blur(.2px);
}

.campfire-opening--romantic.is-playing .campfire-opening__ember {
  animation-name: campfireRomanticEmber;
  animation-timing-function: ease-out;
}

.campfire-opening--romantic .campfire-opening__copy {
  z-index: 7;
  top: auto;
  bottom: 11vh;
  left: 8vw;
  width: min(760px, 60vw);
  text-align: left;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .68);
  transform: translateY(32px);
}

.campfire-opening--romantic.is-playing .campfire-opening__copy {
  animation: campfireRomanticCopy 1.2s cubic-bezier(.19, 1, .22, 1) 1.15s forwards;
}

.campfire-opening--romantic .campfire-opening__copy p {
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, .84);
  font-family: Jost, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.campfire-opening--romantic .campfire-opening__copy p::before {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  background: #d7ae68;
}

.campfire-opening--romantic .campfire-opening__copy p b {
  display: grid;
  width: 28px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(215, 174, 104, .72);
  border-radius: 50%;
  color: #e2bd79;
  font-size: 8px;
}

.campfire-opening--romantic .campfire-opening__copy strong {
  display: block;
  margin-top: 23px;
  line-height: .82;
}

.campfire-opening--romantic .campfire-opening__copy strong span {
  display: block;
  color: #f7f3e9;
  font-family: Georgia, "Times New Roman", var(--cf-serif);
  font-size: clamp(70px, 8vw, 116px);
  font-style: italic;
  font-weight: 400;
}

.campfire-opening--romantic .campfire-opening__copy strong em {
  display: block;
  margin-top: 22px;
  color: #d9b26e;
  font-family: Jost, Arial, sans-serif;
  font-size: clamp(15px, 1.45vw, 22px);
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
}

.campfire-opening__jp {
  display: block;
  margin-top: 28px;
  color: #fff;
  font-family: var(--cf-serif);
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 500;
  line-height: 1.75;
}

.campfire-opening--romantic .campfire-opening__copy small {
  display: block;
  margin-top: 26px;
  color: rgba(255, 255, 255, .62);
  font-family: Jost, Arial, sans-serif;
  font-size: 9px;
  font-weight: 500;
}

.campfire-opening--romantic .campfire-opening__skip {
  right: 38px;
  bottom: 36px;
  min-width: 82px;
  min-height: 40px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(235, 211, 164, .66);
  color: rgba(255, 255, 255, .78);
  background: transparent;
  font-size: 9px;
  font-weight: 600;
}

.campfire-opening--romantic .campfire-opening__skip span { color: #d7ae68; }

@media (any-hover: hover) {
  .campfire-opening--romantic .campfire-opening__skip:hover {
    color: #fff;
    background: transparent;
    border-color: #d7ae68;
  }
}

@media screen and (max-width: 767px) {
  .campfire-opening--romantic .campfire-opening__media {
    inset: 0;
  }

  .campfire-opening--romantic .campfire-opening__media img {
    object-position: center center;
    filter: saturate(.82) brightness(.64) contrast(1.02);
  }

  .campfire-opening--romantic .campfire-opening__shade {
    background:
      linear-gradient(180deg, rgba(6, 8, 6, .46) 0%, rgba(6, 8, 6, .08) 48%, rgba(6, 8, 6, .36) 100%),
      linear-gradient(90deg, rgba(6, 8, 6, .52), transparent 78%);
  }

  .campfire-opening__frame { inset: 10px; }

  .campfire-opening__mark { gap: 13px; }
  .campfire-opening__mark span { width: 48px; font-size: 9px; }
  .campfire-opening__mark b { font-size: 7px; }

  .campfire-opening__frame span {
    left: 14px;
    width: 34%;
  }

  .campfire-opening--romantic .campfire-opening__copy {
    top: 102px;
    bottom: auto;
    left: 24px;
    width: calc(100% - 48px);
  }

  .campfire-opening--romantic .campfire-opening__copy p {
    gap: 10px;
    font-size: 8px;
  }

  .campfire-opening--romantic .campfire-opening__copy p::before { width: 28px; }
  .campfire-opening--romantic .campfire-opening__copy p b { width: 24px; font-size: 7px; }

  .campfire-opening--romantic .campfire-opening__copy strong {
    margin-top: 20px;
  }

  .campfire-opening--romantic .campfire-opening__copy strong span {
    font-size: clamp(56px, 19vw, 74px);
  }

  .campfire-opening--romantic .campfire-opening__copy strong em {
    margin-top: 16px;
    font-size: 13px;
  }

  .campfire-opening__jp {
    margin-top: 25px;
    font-size: 19px;
    line-height: 1.75;
  }

  .campfire-opening--romantic .campfire-opening__copy small {
    margin-top: 21px;
    font-size: 7px;
  }

  .campfire-opening__rings {
    display: none;
  }

  .campfire-opening__glow {
    left: -20%;
    bottom: -10%;
    width: 120%;
    height: 58%;
  }

  .campfire-opening--romantic .campfire-opening__skip {
    right: 18px;
    bottom: 16px;
    min-width: 66px;
    min-height: 34px;
  }
}

@keyframes campfireRomanticCopy {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes campfireRomanticMark {
  from { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  to { opacity: 0; transform: translate(-50%, -50%) scale(.94); }
}

@keyframes campfireRomanticFrame {
  from { opacity: 0; transform: scale(.985); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes campfireRomanticLine {
  to { transform: scaleX(1); }
}

@keyframes campfireRomanticRings {
  from { opacity: 0; transform: translateY(18px) rotate(-8deg); }
  to { opacity: 1; transform: translateY(0) rotate(-8deg); }
}

@keyframes campfireRomanticGlow {
  from { opacity: .62; transform: scale(1); }
  to { opacity: 1; transform: scale(1.1); }
}

@keyframes campfireRomanticEmber {
  0% { opacity: 0; transform: translate3d(0, 0, 0) scale(.4); }
  18% { opacity: .76; }
  72% { opacity: .32; }
  100% { opacity: 0; transform: translate3d(var(--ember-dx), var(--ember-rise), 0) scale(.12); }
}

/* Real HFG film opening: camera passes through the live fire into the report. */
.campfire-opening--fire-dive {
  --fire-x: 18%;
  --fire-y: 72%;
  --fire-dive-x: 32vw;
  --fire-dive-y: -22vh;
  --fire-dive-scale: 7.2;
  z-index: 100001;
  background: #080402;
  transition: opacity .88s cubic-bezier(.22, .61, .36, 1), visibility 0s linear .88s;
}

.campfire-opening--fire-dive.is-exiting {
  opacity: 0;
  visibility: visible;
  filter: none;
  transform: none;
  pointer-events: none;
}

.campfire-opening--fire-dive .campfire-opening__scene {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  transform: scale(1.012);
  transform-origin: var(--fire-x) var(--fire-y);
  filter: brightness(.78) saturate(.92) contrast(1.08);
  will-change: transform, filter;
  transition:
    transform 2s cubic-bezier(.2, .62, .28, 1),
    filter 1.1s ease;
}

.campfire-opening--fire-dive.is-playing .campfire-opening__scene {
  transform: scale(1.055);
  filter: brightness(.92) saturate(1.04) contrast(1.06);
}

.campfire-opening--fire-dive.is-plunging .campfire-opening__scene {
  transform: translate3d(var(--fire-dive-x), var(--fire-dive-y), 0) scale(var(--fire-dive-scale));
  filter: brightness(1.48) saturate(1.24) contrast(1.03) blur(.35px);
  transition:
    transform 1.22s cubic-bezier(.12, .72, .18, 1),
    filter 1.05s cubic-bezier(.12, .72, .18, 1);
}

.campfire-opening--fire-dive.is-crossing .campfire-opening__scene {
  transform: translate3d(var(--fire-dive-x), var(--fire-dive-y), 0) scale(calc(var(--fire-dive-scale) * 1.45));
  filter: brightness(2.8) saturate(1.38) contrast(.94) blur(1.4px);
  transition:
    transform .6s cubic-bezier(.12, .72, .18, 1),
    filter .45s ease;
}

.campfire-opening--fire-dive .campfire-opening__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  margin: 0;
  opacity: 1;
  transform: none;
  transition: none;
}

.campfire-opening--fire-dive .campfire-opening__media picture,
.campfire-opening--fire-dive .campfire-opening__media img,
.campfire-opening--fire-dive .campfire-opening__video,
.campfire-opening--fire-dive .campfire-opening__video video {
  display: block;
  width: 100%;
  height: 100%;
}

.campfire-opening--fire-dive .campfire-opening__media img,
.campfire-opening--fire-dive .campfire-opening__video video {
  object-fit: cover;
  object-position: center center;
  filter: none;
}

.campfire-opening--fire-dive .campfire-opening__video {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  background: transparent;
  opacity: 0;
  transition: opacity .26s ease;
}

.campfire-opening--fire-dive.is-video-ready .campfire-opening__video {
  opacity: 1;
}

.campfire-opening--fire-dive.is-video-fallback .campfire-opening__video {
  display: none;
}

.campfire-opening__vignette,
.campfire-opening__flash {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.campfire-opening__vignette {
  z-index: 2;
  background:
    radial-gradient(ellipse at var(--fire-x) var(--fire-y), transparent 0 16%, rgba(5, 2, 1, .08) 39%, rgba(5, 2, 1, .5) 100%),
    linear-gradient(180deg, rgba(5, 3, 2, .48) 0%, transparent 45%, rgba(5, 2, 1, .14) 100%);
  opacity: 1;
  transition: opacity .72s ease;
}

.campfire-opening--fire-dive.is-plunging .campfire-opening__vignette {
  opacity: .1;
}

.campfire-opening__heat-core {
  position: absolute;
  z-index: 3;
  top: var(--fire-y);
  left: var(--fire-x);
  width: 18vmax;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 246, 1) 0 4%, rgba(255, 224, 148, .94) 15%, rgba(255, 130, 38, .52) 40%, rgba(255, 91, 20, 0) 72%);
  mix-blend-mode: screen;
  opacity: .12;
  filter: blur(9px);
  transform: translate(-50%, -50%) scale(.48);
  will-change: transform, opacity;
  transition: transform 1.2s cubic-bezier(.12, .72, .18, 1), opacity .5s ease;
}

.campfire-opening--fire-dive.is-playing .campfire-opening__heat-core {
  opacity: .28;
  transform: translate(-50%, -50%) scale(.76);
}

.campfire-opening--fire-dive.is-plunging .campfire-opening__heat-core {
  opacity: .72;
  transform: translate(-50%, -50%) scale(2.8);
}

.campfire-opening--fire-dive.is-crossing .campfire-opening__heat-core {
  opacity: 1;
  transform: translate(-50%, -50%) scale(18);
  transition: transform .58s cubic-bezier(.14, .75, .22, 1), opacity .18s ease;
}

.campfire-opening__flash {
  z-index: 4;
  background: #fff8e8;
  opacity: 0;
  transition: opacity .52s ease .08s;
}

.campfire-opening--fire-dive.is-crossing .campfire-opening__flash {
  opacity: .98;
}

.campfire-opening__fire-copy {
  position: absolute;
  z-index: 5;
  top: 9.5vh;
  left: 50%;
  width: min(900px, calc(100% - 80px));
  color: #fff;
  text-align: center;
  text-shadow: 0 3px 28px rgba(0, 0, 0, .72);
  opacity: 0;
  transform: translate(-50%, 22px);
}

.campfire-opening--fire-dive.is-playing:not(.is-plunging) .campfire-opening__fire-copy {
  animation: campfireFireDiveCopyIn .9s cubic-bezier(.19, 1, .22, 1) .25s forwards;
}

.campfire-opening--fire-dive.is-plunging .campfire-opening__fire-copy {
  opacity: 0;
  transform: translate(-50%, -18px) scale(.97);
  animation: none;
  transition: opacity .32s ease, transform .42s ease;
}

.campfire-opening__fire-copy p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
  font-family: Jost, Arial, sans-serif;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
}

.campfire-opening__fire-copy p i {
  display: block;
  width: 38px;
  height: 1px;
  background: #ddb66e;
}

.campfire-opening__fire-copy strong {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: .84;
}

.campfire-opening__fire-copy strong span {
  font-size: clamp(22px, 2.2vw, 34px);
  font-style: italic;
  font-weight: 400;
}

.campfire-opening__fire-copy strong em {
  color: #f8e4b8;
  font-size: clamp(66px, 8.6vw, 132px);
  font-style: italic;
  font-weight: 400;
}

.campfire-opening__fire-copy small {
  display: block;
  margin-top: 27px;
  font-family: var(--cf-serif);
  font-size: clamp(15px, 1.3vw, 20px);
  font-weight: 500;
  line-height: 1.8;
}

.campfire-opening__film-mark {
  position: absolute;
  z-index: 5;
  top: 30px;
  left: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .78);
  font-family: Jost, Arial, sans-serif;
  opacity: 0;
  transition: opacity .6s ease .35s;
}

.campfire-opening--fire-dive.is-playing .campfire-opening__film-mark {
  opacity: 1;
}

.campfire-opening--fire-dive.is-plunging .campfire-opening__film-mark {
  opacity: 0;
  transition-delay: 0s;
}

.campfire-opening__film-mark span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
}

.campfire-opening__film-mark b {
  display: grid;
  width: 29px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(221, 182, 110, .65);
  border-radius: 50%;
  color: #e3c282;
  font-size: 8px;
}

.campfire-opening--fire-dive .campfire-opening__skip {
  right: 30px;
  bottom: 25px;
  min-width: 76px;
  min-height: 38px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(235, 211, 164, .68);
  color: rgba(255, 255, 255, .82);
  background: transparent;
  font-size: 9px;
  font-weight: 600;
  transition: color .2s ease, border-color .2s ease, opacity .2s ease;
}

.campfire-opening--fire-dive .campfire-opening__skip span {
  color: #ddb66e;
}

.campfire-opening--fire-dive.is-plunging .campfire-opening__skip,
.campfire-opening--fire-dive.is-crossing .campfire-opening__skip {
  opacity: 0;
  pointer-events: none;
}

@media (any-hover: hover) {
  .campfire-opening--fire-dive .campfire-opening__skip:hover {
    color: #fff;
    border-color: #ddb66e;
    background: transparent;
  }
}

@media screen and (max-width: 767px) {
  .campfire-opening--fire-dive {
    --fire-x: 31%;
    --fire-y: 68%;
    --fire-dive-x: 19vw;
    --fire-dive-y: -18vh;
    --fire-dive-scale: 8.2;
  }

  .campfire-opening--fire-dive .campfire-opening__media {
    inset: 0;
  }

  .campfire-opening__vignette {
    background:
      radial-gradient(ellipse at var(--fire-x) var(--fire-y), transparent 0 13%, rgba(5, 2, 1, .1) 42%, rgba(5, 2, 1, .48) 100%),
      linear-gradient(180deg, rgba(5, 3, 2, .5) 0%, transparent 44%, rgba(5, 2, 1, .1) 100%);
  }

  .campfire-opening__fire-copy {
    top: 10vh;
    width: calc(100% - 38px);
  }

  .campfire-opening__fire-copy p {
    gap: 9px;
    font-size: 7px;
  }

  .campfire-opening__fire-copy p i { width: 23px; }

  .campfire-opening__fire-copy strong {
    display: block;
    margin-top: 18px;
  }

  .campfire-opening__fire-copy strong span {
    display: block;
    font-size: 21px;
  }

  .campfire-opening__fire-copy strong em {
    display: block;
    margin-top: 8px;
    font-size: clamp(58px, 19vw, 78px);
  }

  .campfire-opening__fire-copy small {
    margin-top: 23px;
    font-size: 14px;
  }

  .campfire-opening__film-mark {
    top: 17px;
    left: 18px;
    gap: 9px;
  }

  .campfire-opening__film-mark span { font-size: 14px; }
  .campfire-opening__film-mark b { width: 25px; font-size: 7px; }

  .campfire-opening--fire-dive .campfire-opening__skip {
    right: 16px;
    bottom: 14px;
    min-width: 64px;
    min-height: 34px;
  }
}

@keyframes campfireFireDiveCopyIn {
  from { opacity: 0; transform: translate(-50%, 22px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* Japanese headline rhythm: keep each authored phrase as one readable unit. */
@media screen and (min-width: 768px) {
  .cf-scene__copy h3 {
    font-size: clamp(26px, 2.2vw, 32px);
  }

  .cf-section-head h2 {
    font-size: clamp(32px, 2.8vw, 42px);
  }

  .cf-production header h2 {
    font-size: clamp(32px, 2.5vw, 36px);
  }
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .cf-gallery__head > p {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .cf-section-head h2,
  .cf-fire-circle__copy h2 {
    font-size: 30px;
  }

  .cf-gallery__head h2 {
    font-size: 31px;
  }

  .cf-production header h2 {
    font-size: 28px;
  }

  #cf-scenes-title {
    font-size: 24px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  #cf-scenes-title {
    font-size: 27px;
  }
}

@media screen and (min-width: 1200px) {
  #cf-scenes-title {
    font-size: 34px;
  }
}

/* Balance prose so Japanese sentence endings never sit alone. */
#main .cf-scene__copy > p:last-child,
#main .cf-food__points li,
#main .cf-timeline__list p,
#main .cf-production li p {
  text-wrap: balance;
}
