@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;500;600;700&family=Noto+Serif+JP:wght@400;500;600;700&family=PT+Serif:wght@400;700&family=Quicksand:wght@500;600;700&family=Zen+Maru+Gothic:wght@400;500;700&display=swap');

:root {
  --bg: #fffdf8;
  --ivory: #fff6e8;
  --yellow: #f4c75a;
  --orange: #f29c45;
  --orange-light: #fbe2bd;
  --green: #6f9b61;
  --green-dark: #3f6848;
  --text: #493f37;
  --muted: #7d726a;
  --line: rgba(73, 63, 55, .14);
  --shell: min(1200px, calc(100% - clamp(80px, 12vw, 192px)));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font: 400 15px/1.95 'Zen Maru Gothic', sans-serif;
}

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

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

button {
  color: inherit;
  font: inherit;
}

::selection {
  color: var(--text);
  background: var(--yellow);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: 92px;
  padding: 0 clamp(24px, 4vw, 68px);
  display: flex;
  align-items: center;
  color: #fff;
}

.brand {
  width: 190px;
  height: 66px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 235px;
  max-width: none;
  filter: brightness(0) invert(1);
  transform: translateX(-10px);
}

.global-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(17px, 2.1vw, 36px);
}

.global-nav>a:not(.header-cta) {
  min-height: 44px;
  display: grid;
  align-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-shadow: 0 1px 12px rgba(32, 45, 26, .28);
}

.global-nav small {
  display: block;
  color: #f8dfa0;
  font: 600 8px/1.4 Quicksand, sans-serif;
  letter-spacing: .16em;
}

.header-cta {
  min-height: 52px;
  padding: 0 21px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 17px;
  background: rgba(255, 255, 255, .94);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(35, 48, 29, .14);
}

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

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  height: clamp(700px, 88vh, 920px);
  min-height: 700px;
  overflow: hidden;
  color: #fff;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.01);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31, 50, 27, .52) 0%, rgba(31, 50, 27, .12) 53%, rgba(31, 50, 27, .03) 100%), linear-gradient(0deg, rgba(32, 45, 27, .22), transparent 45%);
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: clamp(30px, 8vw, 132px);
  bottom: clamp(92px, 13vh, 138px);
  max-width: 740px;
}

.hero-label {
  margin: 0 0 21px;
  display: flex;
  align-items: center;
  gap: 14px;
  font: 600 11px/1 Quicksand, sans-serif;
  letter-spacing: .24em;
}

.hero-label::before {
  content: '';
  width: 42px;
  height: 1px;
  background: var(--yellow);
}

.hero h1 {
  margin: 0;
  font-size: clamp(41px, 5vw, 70px);
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: .1em;
}

.hero h1 span {
  display: table;
}

.hero-copy>p:last-of-type {
  margin: 22px 0 30px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .08em;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  min-height: 54px;
  min-width: 224px;
  padding: 0 20px 0 25px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 13px 28px rgba(43, 47, 34, .18);
}

.button-fill {
  color: #fff;
  background: var(--orange);
}

.button-fill i {
  color: var(--orange);
  background: #fff;
}

.button-glass {
  border: 1px solid rgba(255, 255, 255, .6);
  color: #fff;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
}

.button-glass i {
  background: rgba(255, 255, 255, .18);
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 52px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  writing-mode: vertical-rl;
  font: 600 9px Quicksand, sans-serif;
  letter-spacing: .22em;
}

.hero-scroll span {
  width: 1px;
  height: 55px;
  background: rgba(255, 255, 255, .8);
}

.open-badge {
  position: absolute;
  z-index: 2;
  right: clamp(46px, 8vw, 130px);
  bottom: 105px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: rgba(255, 253, 248, .94);
  transform: rotate(6deg);
  box-shadow: 0 12px 32px rgba(32, 45, 27, .2);
}

.open-badge small {
  color: var(--green-dark);
  font: 700 9px Quicksand, sans-serif;
  letter-spacing: .2em;
}

.open-badge strong {
  font: 700 24px Quicksand, sans-serif;
}

.open-badge span {
  font: 600 10px Quicksand, sans-serif;
}

.notice-pickup {
  position: relative;
  z-index: 3;
  width: min(760px, calc(100% - 40px));
  min-height: 88px;
  margin: -36px auto 0;
  padding: 15px 22px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 80px 110px 1fr 40px;
  gap: 20px;
  align-items: center;
  background: #fff;
  box-shadow: 0 16px 42px rgba(62, 52, 43, .1);
}

.notice-pickup p {
  margin: 0;
  color: var(--orange);
  font: 700 10px Quicksand, sans-serif;
  letter-spacing: .18em;
}

.notice-pickup time {
  font: 600 11px Quicksand, sans-serif;
}

.notice-pickup>a:not(.circle-arrow) {
  font-weight: 700;
  font-size: 13px;
}

.circle-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--orange);
}

.section-index {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--orange);
  font-family: Quicksand, sans-serif;
}

.section-index b {
  font-size: 12px;
}

.section-index::after {
  content: '';
  order: 1;
  width: 48px;
  height: 1px;
  background: currentColor;
}

.section-index span {
  order: 2;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font: 700 11px Quicksand, 'Zen Maru Gothic', sans-serif;
  letter-spacing: .18em;
}

.eyebrow::before {
  content: '✦';
  margin-right: 9px;
}

.about {
  position: relative;
  padding: 150px 0 120px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  column-gap: 9%;
}

.about>.section-index {
  position: absolute;
  top: 104px;
  left: 0;
}

.about-visual {
  position: relative;
  min-height: 650px;
}

.about-visual figure {
  width: 88%;
  height: 570px;
  margin: 0;
  border-radius: 45% 45% 26px 26px;
  overflow: hidden;
  transform: rotate(-1.5deg);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 53%;
  transform: scale(1.2);
}

.about-visual::before {
  content: '';
  position: absolute;
  top: -18px;
  left: -20px;
  z-index: -1;
  width: 88%;
  height: 570px;
  border: 2px solid var(--yellow);
  border-radius: 45% 45% 26px 26px;
}

.photo-caption {
  position: absolute;
  right: -10px;
  bottom: 18px;
  margin: 0;
  color: var(--orange);
  font: 600 italic 42px/1.05 Quicksand, sans-serif;
  letter-spacing: -.05em;
  transform: rotate(-7deg);
}

.sun-mark {
  position: absolute;
  right: 1%;
  top: 18%;
  width: 82px;
  height: 82px;
  border: 1px dashed var(--orange);
  border-radius: 50%;
}

.sun-mark::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: var(--yellow);
}

.about-copy {
  align-self: center;
  padding-top: 40px;
}

.about-copy h2,
.experience-copy h2,
.map-copy h2,
.news-heading h2 {
  margin: 0 0 30px;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.52;
  letter-spacing: .07em;
}

h2 em {
  position: relative;
  color: var(--orange);
  font-style: normal;
}

h2 em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 6c50-5 143-5 198-1' fill='none' stroke='%23f29c45' stroke-width='2'/%3E%3C/svg%3E") center/100% 100% no-repeat;
}

.about-copy>p:not(.eyebrow),
.experience-copy>p:not(.eyebrow),
.map-copy>p:not(.eyebrow) {
  margin: 0 0 16px;
  color: var(--muted);
}

.text-link {
  min-height: 50px;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 25px;
  font-weight: 700;
}

.text-link span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--orange);
  transition: transform .25s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.about-values {
  grid-column: 1 / -1;
  margin-top: 75px;
  padding-top: 35px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.about-values article {
  min-height: 150px;
  padding: 0 7%;
  border-right: 1px solid var(--line);
}

.about-values article:last-child {
  border: 0;
}

.about-values b {
  color: var(--orange);
  font: 600 23px Quicksand, sans-serif;
}

.about-values h3 {
  margin: 8px 0;
  font-size: 18px;
}

.about-values p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.fruits {
  position: relative;
  margin-top: 70px;
  padding: 130px 0 180px;
  color: #fff;
  background: var(--green-dark);
}

.wave {
  position: absolute;
  left: -2%;
  width: 104%;
  height: 120px;
  background: var(--bg);
}

.wave-top {
  top: -65px;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  transform: rotate(-1.5deg);
}

.wave-bottom {
  bottom: -65px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: rotate(1.2deg);
}

.fruit-inner {
  position: relative;
  z-index: 1;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 8%;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .08em;
}

.section-heading>p {
  color: rgba(255, 255, 255, .7);
}

.fruits .eyebrow {
  color: var(--yellow);
}

.fruit-list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 55px);
}

.fruit {
  min-width: 0;
}

.fruit:nth-child(2) {
  margin-top: 90px;
}

.fruit-art {
  position: relative;
  height: 410px;
  margin-bottom: 22px;
  border-radius: 180px 180px 24px 24px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #f4d870;
}

.fruit:nth-child(2) .fruit-art {
  background: #ead8e8;
}

.fruit:nth-child(3) .fruit-art {
  background: #e1dfa2;
}

.fruit-art::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: inherit;
}

.fruit-art b {
  position: absolute;
  left: 22px;
  bottom: 15px;
  color: rgba(73, 63, 55, .38);
  font: 700 40px Quicksand, sans-serif;
  letter-spacing: .08em;
}

.fruit-shape {
  position: relative;
  z-index: 1;
  width: 170px;
  height: 160px;
  border-radius: 48% 52% 50% 46%;
  background: #df7150;
  box-shadow: inset -22px -14px rgba(139, 57, 45, .13), inset 12px 10px rgba(255, 255, 255, .18);
  transform: rotate(-7deg);
}

.fruit-shape::before {
  content: '';
  position: absolute;
  top: -45px;
  left: 88px;
  width: 9px;
  height: 56px;
  border-radius: 8px;
  background: #70553a;
  transform: rotate(12deg);
}

.fruit-pear .fruit-shape {
  width: 156px;
  height: 188px;
  border-radius: 42% 42% 52% 50% / 35% 35% 62% 62%;
  background: #c7b958;
}

.leaf-shape {
  position: absolute;
  z-index: 2;
  top: 111px;
  left: 54%;
  width: 58px;
  height: 31px;
  border-radius: 100% 0 100% 0;
  background: var(--green-dark);
  transform: rotate(-18deg);
}

.grape-dots {
  position: relative;
  width: 185px;
  height: 205px;
}

.grape-dots i {
  position: absolute;
  width: 77px;
  height: 77px;
  border-radius: 50%;
  background: #796087;
  box-shadow: inset -10px -8px rgba(45, 34, 59, .15), inset 7px 6px rgba(255, 255, 255, .12);
}

.grape-dots i:nth-child(1) {
  left: 25px;
  top: 0;
}

.grape-dots i:nth-child(2) {
  right: 25px;
  top: 5px;
}

.grape-dots i:nth-child(3) {
  left: 2px;
  top: 55px;
}

.grape-dots i:nth-child(4) {
  left: 55px;
  top: 58px;
}

.grape-dots i:nth-child(5) {
  right: 0;
  top: 60px;
}

.grape-dots i:nth-child(6) {
  left: 28px;
  top: 115px;
}

.grape-dots i:nth-child(7) {
  right: 27px;
  top: 120px;
}

.fruit-grape .leaf-shape {
  top: 88px;
  left: 53%;
}

.fruit-info {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 12px;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.fruit-info>span {
  color: var(--yellow);
  font: 600 19px Quicksand, sans-serif;
}

.fruit-info h3 {
  margin: 2px 0 10px;
  font-size: 27px;
}

.fruit-info p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.fruit-info div>p:first-child {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
}

.fruit-info>i {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  transition: background .25s, color .25s;
}

.fruit:hover .fruit-info>i {
  color: var(--green-dark);
  background: #fff;
}

.experience {
  padding: 170px 0 150px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 8%;
  align-items: center;
}

.experience-photo {
  position: relative;
}

.experience-photo img {
  width: 100%;
  height: 690px;
  object-fit: cover;
  border-radius: 48% 48% 28px 28px;
}

.experience-photo::before {
  content: '';
  position: absolute;
  inset: -18px 22px 18px -18px;
  z-index: -1;
  border: 2px solid var(--yellow);
  border-radius: 49% 49% 30px 30px;
}

.experience-photo span {
  position: absolute;
  top: 60px;
  right: -52px;
  color: var(--orange);
  font: 600 38px Quicksand, sans-serif;
  transform: rotate(-8deg);
}

.experience-copy .section-index {
  margin-bottom: 34px;
}

.experience-copy dl {
  margin: 35px 0;
  border-top: 1px solid var(--line);
}

.experience-copy dl div {
  min-height: 53px;
  display: grid;
  grid-template-columns: 105px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.experience-copy dt {
  color: var(--green-dark);
  font-weight: 700;
}

.experience-copy dd {
  margin: 0;
}

.people {
  position: relative;
  padding: 145px 0;
  overflow: hidden;
  background: var(--ivory);
}

.people::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  top: -210px;
  right: -130px;
  border: 2px dashed rgba(242, 156, 69, .25);
  border-radius: 50%;
}

.people-heading {
  max-width: 560px;
  margin-bottom: 80px;
}

.people-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(36px, 4vw, 55px);
  font-weight: 500;
}

.people-heading>p:last-child {
  color: var(--muted);
}

.owner {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 8%;
  align-items: center;
}

.owner figure,
.vice figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.owner figure {
  height: 650px;
  border-radius: 44% 44% 25px 25px;
}

.owner img,
.vice img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner figcaption,
.vice figcaption {
  position: absolute;
  top: 35px;
  right: 28px;
  width: 91px;
  height: 91px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: rgba(255, 253, 248, .92);
  font: 700 9px Quicksand, sans-serif;
  letter-spacing: .13em;
}

.owner h2 {
  margin: 0 0 27px;
  font-size: clamp(34px, 3.5vw, 49px);
  font-weight: 500;
  line-height: 1.5;
}

.owner h2 span {
  display: block;
  white-space: nowrap;
}

.person-name {
  margin: 0 0 25px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.person-name b {
  font-size: 25px;
  letter-spacing: .08em;
}

.person-name span {
  color: var(--muted);
  font-size: 12px;
}

.owner dl {
  display: flex;
  gap: 30px;
  margin: 0 0 24px;
}

.owner dl div {
  display: flex;
  gap: 10px;
}

.owner dt {
  color: var(--muted);
  font-size: 12px;
}

.owner dd {
  margin: 0;
  font-weight: 700;
}

.owner>div>p:not(.eyebrow, .person-name) {
  color: var(--muted);
}

.owner blockquote {
  position: relative;
  margin: 28px 0 0;
  padding: 23px 25px;
  border-left: 3px solid var(--orange);
  background: #fff;
  font-weight: 500;
}

.vice {
  width: 72%;
  margin: 110px 0 0 auto;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 7%;
  align-items: center;
}

.vice figure {
  height: 390px;
  border-radius: 160px 160px 20px 20px;
}

.vice figcaption {
  width: 76px;
  height: 76px;
  top: 22px;
  right: 18px;
  text-align: center;
}

.vice>div>p:last-child {
  color: var(--muted);
}

.farm-map {
  padding: 150px 0;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 7%;
  align-items: center;
}

.map-copy .section-index {
  margin-bottom: 35px;
}

.map-copy ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.map-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.map-copy li i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.map-copy li:nth-child(2) i {
  background: var(--green);
}

.map-copy li:nth-child(3) i {
  background: var(--yellow);
}

.map-copy li:nth-child(4) i {
  background: var(--orange-light);
}

.map-copy li:nth-child(5) i {
  background: #9c8068;
}

.map-image {
  position: relative;
  margin: 0;
  padding: 17px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 23px 50px rgba(73, 63, 55, .11);
  transform: rotate(1.5deg);
}

.map-image img {
  width: 100%;
  border-radius: 20px;
}

.map-image figcaption {
  position: absolute;
  top: 50%;
  right: -34px;
  writing-mode: vertical-rl;
  color: var(--muted);
  font: 700 9px Quicksand, sans-serif;
  letter-spacing: .2em;
}

.news {
  padding: 60px 0 150px;
}

.news-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
}

.news-heading h2 {
  margin-bottom: 0;
}

.news-heading>p {
  color: var(--muted);
}

.news-list {
  margin-top: 50px;
  border-top: 1px solid var(--line);
}

.news-list article {
  min-height: 104px;
  padding: 18px 5px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 115px 95px 1fr 40px;
  gap: 24px;
  align-items: center;
  transition: background .25s, padding .25s;
}

.news-list article:hover {
  padding-left: 18px;
  background: var(--ivory);
}

.news-list time b {
  display: block;
  font: 600 29px Quicksand, sans-serif;
}

.news-list time span {
  color: var(--muted);
  font: 600 9px Quicksand, sans-serif;
  letter-spacing: .1em;
}

.news-list em {
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 99px;
  text-align: center;
  font-size: 10px;
  font-style: normal;
}

.news-list h3 {
  margin: 0;
  font-size: 15px;
}

.news-list i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green-dark);
  font-style: normal;
}

.access {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  color: #fff;
  background: var(--orange);
}

.access::before {
  content: '';
  position: absolute;
  top: -55%;
  right: -12%;
  width: 680px;
  height: 680px;
  border: 2px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, .04), 0 0 0 140px rgba(255, 255, 255, .035);
}

.access-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 9%;
  align-items: center;
}

.access .eyebrow {
  color: #fff2cd;
}

.access h2 {
  margin: 0 0 20px;
  font-size: clamp(37px, 4.5vw, 60px);
  font-weight: 500;
  line-height: 1.5;
}

.access-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button-white {
  color: var(--text);
  background: #fff;
}

.button-white i {
  color: #fff;
  background: var(--orange);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, .6);
  color: #fff;
}

.button-outline i {
  background: rgba(255, 255, 255, .18);
}

.access-info {
  margin: 0;
  padding: 30px 35px;
  border-radius: 25px;
  color: var(--text);
  background: rgba(255, 253, 248, .96);
}

.access-info div {
  min-height: 59px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 105px 1fr;
}

.access-info div:last-child {
  border: 0;
}

.access-info dt {
  color: var(--orange);
  font-weight: 700;
}

.access-info dd {
  margin: 0;
}

.site-footer {
  padding: 80px 0 25px;
  color: #fff;
  background: var(--green-dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr .6fr;
  gap: 9%;
}

.footer-brand img {
  width: 220px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
}

.site-footer nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 25px;
  align-content: start;
  font-size: 12px;
}

.footer-fruits {
  display: grid;
  gap: 7px;
  align-content: start;
  font-size: 12px;
}

.footer-fruits p {
  margin: 0 0 8px;
  color: var(--yellow);
  font: 700 10px Quicksand, sans-serif;
  letter-spacing: .2em;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  justify-content: space-between;
}

.footer-bottom p {
  margin: 0;
  font-size: 11px;
  letter-spacing: .2em;
}

.footer-bottom small {
  color: rgba(255, 255, 255, .5);
  font: 500 9px Quicksand, sans-serif;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1000px) {
  :root {
    --shell: min(920px, calc(100% - 64px));
  }

  .global-nav {
    gap: 18px;
  }

  .global-nav>a:not(.header-cta) {
    display: none;
  }

  .hero-copy {
    left: 55px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .about {
    column-gap: 5%;
  }

  .photo-caption {
    right: 0;
    font-size: 31px;
  }

  .fruit-list {
    gap: 25px;
  }

  .fruit-art {
    height: 350px;
  }

  .fruit-art b {
    font-size: 30px;
  }

  .experience-photo img {
    height: 590px;
  }

  .experience-photo span {
    right: -20px;
    font-size: 30px;
  }

  .vice {
    width: 85%;
  }

  .footer-inner {
    gap: 5%;
  }
}

@media (max-width: 800px) {
  :root {
    --shell: calc(100% - 40px);
  }

  body {
    font-size: 14px;
  }

  .site-header {
    position: fixed;
    height: 70px;
    padding: 0 20px;
    background: rgba(255, 253, 248, .94);
    color: var(--text);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px rgba(73, 63, 55, .08);
  }

  .brand {
    width: 145px;
    height: 55px;
  }

  .brand img {
    width: 185px;
    filter: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    background: transparent;
  }

  .menu-toggle span {
    width: 26px;
    height: 1px;
    display: block;
    background: var(--text);
    transition: transform .25s;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .global-nav {
    position: fixed;
    inset: 70px 0 0;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    color: var(--text);
    background: var(--bg);
    transform: translateX(100%);
    transition: transform .35s ease;
  }

  .menu-open .global-nav {
    transform: none;
  }

  .menu-open {
    overflow: hidden;
  }

  .global-nav>a:not(.header-cta) {
    min-height: 62px;
    border-bottom: 1px solid var(--line);
    display: grid;
    font-size: 16px;
    text-shadow: none;
  }

  .global-nav small {
    color: var(--orange);
  }

  .header-cta {
    margin-top: 25px;
    justify-content: center;
    color: #fff;
    background: var(--orange);
  }

  .hero {
    height: 76vh;
    min-height: 620px;
    margin-top: 70px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(31, 50, 27, .64), transparent 75%);
  }

  .hero-copy {
    left: 20px;
    right: 20px;
    bottom: 42px;
  }

  .hero-label {
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(27px, 7.8vw, 34px);
    line-height: 1.52;
    letter-spacing: .05em;
  }

  .hero-copy>p:last-of-type {
    margin: 13px 0 18px;
    font-size: 12px;
    line-height: 1.8;
  }

  .hero-buttons {
    gap: 8px;
  }

  .button {
    min-width: 0;
    min-height: 49px;
    font-size: 12px;
  }

  .hero-buttons .button {
    width: 100%;
    padding: 0 12px 0 18px;
    gap: 8px;
  }

  .hero-buttons .button-glass {
    width: 72%;
  }

  .open-badge {
    width: 82px;
    height: 82px;
    right: 18px;
    bottom: 225px;
  }

  .open-badge strong {
    font-size: 18px;
  }

  .hero-scroll {
    display: none;
  }

  .notice-pickup {
    min-height: 78px;
    margin-top: -18px;
    padding: 12px 15px;
    grid-template-columns: 48px 1fr 34px;
    gap: 9px;
  }

  .notice-pickup time {
    display: none;
  }

  .notice-pickup>a:not(.circle-arrow) {
    font-size: 11px;
  }

  .about {
    padding: 110px 0 85px;
    display: block;
  }

  .about>.section-index {
    top: 72px;
  }

  .about-visual {
    min-height: 440px;
  }

  .about-visual figure,
  .about-visual::before {
    width: 93%;
    height: 390px;
  }

  .about-visual::before {
    left: -8px;
  }

  .photo-caption {
    right: 3px;
    bottom: 7px;
    font-size: 25px;
  }

  .sun-mark {
    width: 55px;
    height: 55px;
    right: 0;
  }

  .about-copy {
    padding-top: 35px;
  }

  .about-copy h2,
  .experience-copy h2,
  .map-copy h2,
  .news-heading h2 {
    font-size: 31px;
  }

  .about-values {
    margin-top: 60px;
    display: block;
  }

  .about-values article {
    min-height: 0;
    padding: 23px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fruits {
    margin-top: 30px;
    padding: 95px 0 130px;
  }

  .wave {
    height: 70px;
  }

  .wave-top {
    top: -38px;
  }

  .wave-bottom {
    bottom: -38px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    font-size: 33px;
  }

  .section-heading>p {
    margin-top: 25px;
  }

  .fruit-list {
    margin-top: 50px;
    display: block;
  }

  .fruit,
  .fruit:nth-child(2) {
    display: block;
    margin: 0 0 65px;
  }

  .fruit-art {
    height: 390px;
  }

  .fruit-info {
    grid-template-columns: 30px 1fr 38px;
  }

  .experience {
    padding: 125px 0 95px;
    display: block;
  }

  .experience-photo img {
    height: 470px;
  }

  .experience-photo::before {
    inset: -10px 10px 10px -8px;
  }

  .experience-photo span {
    right: 0;
    top: 35px;
    font-size: 25px;
  }

  .experience-copy {
    margin-top: 70px;
  }

  .people {
    padding: 95px 0;
  }

  .people-heading {
    margin-bottom: 50px;
  }

  .people-heading h2 {
    font-size: 34px;
  }

  .owner {
    display: block;
  }

  .owner figure {
    height: 480px;
  }

  .owner>div {
    margin-top: 45px;
  }

  .owner h2 {
    font-size: 31px;
  }

  .person-name {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .owner dl {
    display: block;
  }

  .owner dl div {
    margin-bottom: 6px;
  }

  .vice {
    width: 100%;
    margin-top: 90px;
    display: block;
  }

  .vice figure {
    width: 80%;
    height: 360px;
    margin-left: auto;
  }

  .vice>div {
    margin-top: 35px;
  }

  .farm-map {
    padding: 100px 0;
    display: block;
  }

  .map-image {
    margin-top: 50px;
    padding: 9px;
  }

  .map-image figcaption {
    display: none;
  }

  .news {
    padding: 20px 0 95px;
  }

  .news-heading {
    display: block;
  }

  .news-heading>p {
    margin-top: 20px;
  }

  .news-list article {
    min-height: 95px;
    grid-template-columns: 58px 55px 1fr;
    gap: 10px;
  }

  .news-list h3 {
    font-size: 12px;
  }

  .news-list i {
    display: none;
  }

  .news-list time b {
    font-size: 22px;
  }

  .news-list em {
    font-size: 8px;
  }

  .access {
    padding: 90px 0;
  }

  .access-inner {
    display: block;
  }

  .access h2 {
    font-size: 33px;
  }

  .access-info {
    margin-top: 50px;
    padding: 22px;
  }

  .access-info div {
    grid-template-columns: 90px 1fr;
  }

  .site-footer {
    padding: 65px 0 22px;
  }

  .footer-inner {
    display: block;
  }

  .footer-brand img {
    width: 190px;
  }

  .site-footer nav {
    margin: 40px 0;
  }

  .footer-fruits {
    grid-template-columns: auto 1fr 1fr 1fr;
    align-items: center;
  }

  .footer-fruits p {
    margin: 0;
  }

  .footer-bottom {
    margin-top: 40px;
    align-items: flex-end;
  }

  .footer-bottom p {
    font-size: 9px;
  }

  .footer-bottom small {
    max-width: 140px;
    text-align: right;
  }
}

/* Requested refinements --------------------------------------------------- */
.brand {
  overflow: visible;
}

.brand img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  transform: none;
}

.notice-pickup {
  grid-template-columns: 80px 110px minmax(0, 1fr);
}

.about-copy h2>span,
.experience-copy h2>span {
  display: block;
  white-space: nowrap;
}

.about-copy h2,
.experience-copy h2 {
  font-size: clamp(32px, 3.35vw, 47px);
  letter-spacing: .045em;
}

.about-visual img {
  object-position: center;
}

.photo-caption {
  display: none;
}

.fruits {
  margin-top: 0;
  padding-top: 125px;
  padding-bottom: 125px;
}

.wave {
  display: none;
}

.person-meta {
  margin: 28px 0 !important;
  padding: 20px 22px;
  border: 2px solid var(--orange-light);
  border-radius: 16px;
  display: grid !important;
  grid-template-columns: 1fr .7fr;
  gap: 0 !important;
  background: #fffdf8;
}

.person-meta div {
  display: block !important;
  margin: 0 !important;
  padding: 0 20px;
}

.person-meta div:first-child {
  padding-left: 0;
  border-right: 1px solid var(--line);
}

.person-meta dt {
  margin-bottom: 3px;
  color: var(--orange) !important;
  font-size: 14px !important;
  font-weight: 700;
}

.person-meta dd {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
}

.news-list article {
  grid-template-columns: 115px 95px minmax(0, 1fr);
}

.vice {
  width: 100%;
  margin: 100px 0 0;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
}

.vice figure {
  width: 100%;
  max-width: 440px;
}

.vice>div {
  max-width: 560px;
}

.owner h2 {
  font-size: clamp(31px, 3.1vw, 43px);
  letter-spacing: .035em;
}

@media (max-width: 800px) {
  .brand {
    width: 154px;
  }

  .notice-pickup {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .about,
  .experience,
  .farm-map {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .about-values {
    margin-top: 42px;
  }

  .fruits {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .fruit-list {
    margin-top: 42px;
    gap: 44px;
  }

  .people {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .people-heading {
    margin-bottom: 40px;
  }

  .owner>div {
    margin-top: 36px;
  }

  .vice {
    margin-top: 65px;
  }

  .vice figure,
  .vice>div {
    max-width: none;
  }

  .owner h2 {
    font-size: clamp(27px, 7.2vw, 31px);
    letter-spacing: .015em;
  }

  .news {
    padding-top: 0;
    padding-bottom: 76px;
  }

  .news-list {
    margin-top: 34px;
  }

  .access {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .site-footer {
    padding-top: 54px;
  }

  .about-copy h2,
  .experience-copy h2 {
    font-size: clamp(27px, 7.4vw, 32px);
    letter-spacing: .02em;
  }

  .person-meta {
    grid-template-columns: 1fr 1fr;
    padding: 17px;
  }

  .person-meta div {
    padding: 0 14px;
  }

  .person-meta dd {
    font-size: 18px;
  }

  .news-list article {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .news-list h3 {
    font-size: 14px;
  }
}

@media (max-width: 380px) {

  .about-copy h2,
  .experience-copy h2 {
    font-size: 26px;
  }
}

/* Final restricted-page palette overrides */
body.archive-page,
body.revelation-page {
  font-family: "Noto Serif JP", "Noto Serif", serif;
  font-feature-settings: "palt";
}

body.archive-page {
  color: #c9c7bb;
  background: #10130f;
}

body.archive-page .archive-header {
  color: #c9c7bb;
  border-color: rgba(176, 45, 35, .28);
  background: rgba(10, 13, 10, .97);
}

body.archive-page .archive-header .brand img {
  filter: grayscale(1) brightness(.8);
}

body.archive-page .archive-header>div a {
  border-color: rgba(201, 199, 187, .3);
  color: #c9c7bb;
}

body.archive-page .archive-cover {
  color: #d7d4c7;
  background: radial-gradient(circle at 76% 28%, rgba(113, 26, 22, .13), transparent 27%), #171c16;
}

body.archive-page .archive-cover::before {
  opacity: .09;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, .14) 4px);
}

body.archive-page main>.file:nth-child(odd):not(.file-04):not(.file-06):not(.file-07) {
  background: #171a16;
}

body.archive-page main>.file:nth-child(even):not(.file-04):not(.file-06):not(.file-07) {
  background: #111410;
}

body.archive-page main .file h2 {
  color: #d9d6ca;
}

body.archive-page main .file p,
body.archive-page main .file dt,
body.archive-page main .file figcaption {
  color: #aaa99f;
}

body.archive-page .observation-sheet,
body.archive-page .growth-compare,
body.archive-page .operation-conclusion {
  border-color: rgba(135, 34, 27, .7);
  color: #c9c7bb;
  background: #1d211c;
}

body.archive-page .photo-mount,
body.archive-page .file-08 figure {
  background: #262a24;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .48);
}

body.archive-page .table-row {
  border-color: rgba(201, 199, 187, .17);
  background: #181c17;
}

body.archive-page .table-row:first-child {
  color: #d3d0c4;
  background: #272c25;
}

body.archive-page .operation-cycle li {
  border-color: rgba(201, 199, 187, .18);
  color: #c9c7bb;
  background: #191d18;
}

body.archive-page .archive-footer {
  background: #050705;
}

body.revelation-page {
  color: #d8d4c8;
  background: #090c09;
}

body.revelation-page .revelation-shade {
  background: linear-gradient(90deg, rgba(2, 5, 3, .96), rgba(3, 6, 4, .63)), linear-gradient(0deg, rgba(2, 4, 3, .94), transparent 55%);
}

body.revelation-page .truth-identity,
body.revelation-page .truth-fruit,
body.revelation-page .clues {
  background: #0b0e0b;
}

body.revelation-page .truth-people,
body.revelation-page .orchard-role,
body.revelation-page .still-running {
  color: #c8c5b9;
  background: #131712;
}

body.revelation-page .truth-people h2,
body.revelation-page .orchard-role h2,
body.revelation-page .still-running h2 {
  color: #d8d4c8;
}

body.revelation-page .energy-trace span {
  border-color: rgba(177, 53, 43, .42);
  color: #cfcbbf;
  background: #0d100d;
}

body.revelation-page .truth-fruit figure {
  background: #181c17;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .55);
}

body.revelation-page .ending-transition {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  isolation: isolate;
  background: #090b09;
}

body.revelation-page .ending-transition::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(circle, rgba(88, 18, 14, .18), transparent 55%), #000;
  transition: opacity .8s;
}

body.revelation-page .ending-transition.is-active::before {
  opacity: 1;
}

body.revelation-page .ending-transition p {
  position: relative;
  z-index: 2;
  font-family: "Noto Serif", "Noto Serif JP", serif;
  text-shadow: 0 0 18px rgba(151, 35, 28, .65);
}

body.revelation-page .reservation-ending {
  color: #d1cec2;
  background: #020302;
}

body.revelation-page .reservation-card {
  border-color: rgba(159, 44, 36, .55);
  color: #d1cec2;
  background: rgba(12, 15, 12, .98);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .8), 0 30px 90px #000;
}

body.revelation-page .reservation-main>p:first-child,
body.revelation-page .reservation-card dt {
  color: #85887f;
}

body.revelation-page .ending-actions button,
body.revelation-page .ending-actions a {
  border-color: rgba(209, 206, 194, .26);
  color: #c9c7bb;
}

body.revelation-page .ending-actions .x-share {
  color: #ddd9cc;
  background: #242922;
}

@media(max-width:800px) {
  body.archive-page main .file {
    overflow: hidden;
  }

  body.revelation-page .ending-transition {
    min-height: 62vh;
  }

  body.revelation-page .reservation-card {
    width: 100%;
  }
}

/* Restricted pages: readability and single-column refinement */
body.archive-page {
  color: #eeeade;
}

body.archive-page main .file p,
body.archive-page main .file dt,
body.archive-page main .file figcaption,
body.archive-page .archive-footer {
  color: #d1cec2;
}

body.archive-page main .file dd,
body.archive-page main .file li,
body.archive-page main .file span {
  color: #e2ded2;
}

body.archive-page .cover-main>p:last-child,
body.archive-page .cover-meta dt {
  color: #d4d0c5;
}

body.revelation-page {
  color: #f0ece1;
}

body.revelation-page .truth-shell {
  width: min(980px, calc(100% - 64px));
}

body.revelation-page .revelation-shade {
  display: none;
}

body.revelation-page .revelation-hero>img {
  filter: none;
  object-position: center;
}

body.revelation-page .revelation-hero-inner {
  width: min(980px, calc(100% - 64px));
  padding: 38px 42px 70px;
  background: linear-gradient(90deg, rgba(5, 7, 5, .9), rgba(5, 7, 5, .62) 76%, transparent);
}

body.revelation-page .revelation-hero-inner>p {
  color: #eeeade;
}

body.revelation-page .truth-index {
  color: #e89b83;
}

body.revelation-page .truth-identity,
body.revelation-page .truth-fruit,
body.revelation-page .orchard-role .truth-shell {
  display: block;
}

body.revelation-page .truth-identity>div,
body.revelation-page .people-reason,
body.revelation-page .truth-fruit>div,
body.revelation-page .orchard-role .truth-shell>div,
body.revelation-page .still-running .truth-shell>div {
  width: 100%;
  max-width: none;
  margin-left: 0;
}

body.revelation-page .truth-identity>.truth-index,
body.revelation-page .orchard-role .truth-index {
  margin-bottom: 22px;
}

body.revelation-page .truth-identity p,
body.revelation-page .truth-fruit>div>p:not(.truth-index),
body.revelation-page .truth-people p,
body.revelation-page .orchard-role p:not(.truth-index),
body.revelation-page .still-running p:not(.truth-index) {
  color: #d5d2c8;
}

/* Definitive restricted-page contrast and ending layer */
body.archive-page main .file {
  color: #f4f0e5 !important;
  background-color: #10130f !important;
}

body.archive-page main .file h2,
body.archive-page main .file h3,
body.archive-page main .file strong,
body.archive-page main .file b,
body.archive-page main .file dd,
body.archive-page main .file li,
body.archive-page main .file span,
body.archive-page main .file em {
  color: #f4f0e5 !important;
}

body.archive-page main .file p,
body.archive-page main .file dt,
body.archive-page main .file small,
body.archive-page main .file figcaption {
  color: #ddd9cd !important;
}

body.archive-page .fruit-report,
body.archive-page .fruit-report aside,
body.archive-page .observation-sheet,
body.archive-page .growth-compare,
body.archive-page .finding,
body.archive-page .registered-subject {
  color: #f4f0e5 !important;
  background-color: #1b201a !important;
}

body.revelation-page main>section:not(.revelation-hero):not(.reservation-ending),
body.revelation-page .truth-people,
body.revelation-page .orchard-role,
body.revelation-page .still-running {
  color: #f4f0e5 !important;
  background-color: #0d100d !important;
}

body.revelation-page main h2,
body.revelation-page main strong,
body.revelation-page main b,
body.revelation-page main dd {
  color: #f4f0e5 !important;
}

body.revelation-page main p:not(.truth-index),
body.revelation-page main dt,
body.revelation-page main small,
body.revelation-page main figcaption {
  color: #ddd9cd !important;
}

body.revelation-page .truth-index,
body.revelation-page .confidential-line,
body.revelation-page .cancel-note {
  color: #ffad96 !important;
}

body.revelation-page .ending-transition {
  position: fixed !important;
  z-index: 900;
  inset: 0;
  min-height: 0 !important;
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: #000 !important;
  transition: opacity .18s, visibility 0s .2s;
}

body.revelation-page .ending-transition.is-active {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

body.revelation-page .ending-transition .ending-noise {
  position: absolute;
  inset: -30%;
}

body.revelation-page .reservation-ending {
  position: fixed !important;
  z-index: 910;
  inset: 0;
  min-height: 0 !important;
  padding: 24px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, .9) !important;
  transition: opacity .45s, visibility 0s .45s;
}

body.revelation-page .reservation-ending.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

body.revelation-page.reservation-open {
  overflow: hidden;
}

body.revelation-page .reservation-card {
  margin: auto;
}

body.revelation-page .reservation-card p,
body.revelation-page .reservation-card dd {
  color: #eeeade !important;
}

@media(max-width:800px) {
  body.revelation-page .reservation-ending {
    padding: 14px;
    align-items: start;
  }

  body.revelation-page .reservation-card {
    margin-block: 14px;
  }
}

/* Final readability pass — record and truth only */
body.archive-page,
body.revelation-page {
  font-size: 16px;
}

body.archive-page main .file p,
body.archive-page main .file li,
body.archive-page main .file dd,
body.archive-page main .file span,
body.archive-page main .file em,
body.archive-page main .file aside {
  font-size: 15px;
  line-height: 1.9;
}

body.archive-page main .file dt,
body.archive-page main .file small,
body.archive-page main .file figcaption {
  font-size: 14px;
  line-height: 1.75;
}

body.archive-page .file-header>div>span,
body.archive-page .file-ticket>span,
body.archive-page .file-tag,
body.archive-page .data-heading>div>span,
body.archive-page .ledger-title>p,
body.archive-page .dossier-label>span,
body.archive-page .fruit-evidence-label>span {
  font: 700 13px Quicksand, sans-serif;
  letter-spacing: .1em;
}

body.archive-page .file-header dd,
body.archive-page .data-heading dd,
body.archive-page .ledger-title>span,
body.archive-page .file-ticket small,
body.archive-page .dossier-label small,
body.archive-page .fruit-evidence-label small {
  font-size: 14px;
  line-height: 1.6;
}

body.archive-page .observation-sheet ul b {
  font-size: 16px;
}

body.archive-page .result-numbers b {
  font-size: clamp(32px, 3.2vw, 42px) !important;
  line-height: 1.15;
}

body.archive-page .result-numbers span {
  margin-top: 8px;
  display: block;
  font-size: 14px;
  line-height: 1.55;
}

body.archive-page .growth-compare strong {
  font-size: 16px;
  color: #f1efe6 !important;
}

body.archive-page .growth-compare span {
  font-size: 15px;
}

body.archive-page .photo-mount figcaption {
  padding-top: 4px;
  color: #f1efe6 !important;
}

body.archive-page .photo-mount figcaption small {
  color: #d9d6cb !important;
}

body.archive-page .table-row {
  min-height: 62px;
}

body.archive-page .table-row>* {
  font-size: 15px;
}

body.archive-page .fruit-report {
  padding-top: 58px;
  padding-bottom: 70px;
}

body.revelation-page main p:not(.truth-index),
body.revelation-page main li,
body.revelation-page main dd {
  font-size: 16px;
  line-height: 1.9;
}

body.revelation-page main small,
body.revelation-page main figcaption,
body.revelation-page main dt {
  font-size: 14px;
  line-height: 1.75;
}

body.revelation-page .truth-index {
  font: 700 13px Quicksand, sans-serif;
  letter-spacing: .1em;
}

body.revelation-page .truth-identity p,
body.revelation-page .truth-people p,
body.revelation-page .truth-fruit>div>p:not(.truth-index),
body.revelation-page .orchard-role p:not(.truth-index),
body.revelation-page .still-running p:not(.truth-index) {
  color: #e8e7df !important;
}

body.revelation-page .truth-cycle .operation-cycle {
  gap: 2px;
  background: #31352f;
}

body.revelation-page .truth-cycle .operation-cycle li {
  min-height: 96px;
  border: 0;
  color: #2f332e !important;
  background: #e8e5db !important;
  font-size: 15px;
  line-height: 1.65;
}

body.revelation-page .truth-cycle .operation-cycle li::after {
  color: #773d34;
}

body.revelation-page .truth-cycle .operation-conclusion {
  border-left-color: #9d382f;
  color: #2f332e !important;
  background: #dedbd1 !important;
}

body.revelation-page .truth-cycle .operation-conclusion p {
  color: #2f332e !important;
  font-size: 16px;
  line-height: 1.9;
}

body.revelation-page .truth-cycle .operation-conclusion strong {
  color: #71342d !important;
  font-size: 17px;
}

body.revelation-page .truth-cycle figure {
  background: #242821;
}

body.revelation-page .truth-cycle figcaption {
  color: #e8e7df !important;
}

body.revelation-page .clue-timeline article {
  min-height: 118px;
  grid-template-columns: 64px minmax(0, 1fr) 48px minmax(0, 1.25fr);
  column-gap: 18px;
}

body.revelation-page .clue-timeline article>span {
  font-size: 14px;
  color: #f09a82;
}

body.revelation-page .clue-timeline article p {
  margin: 0;
  color: #e8e7df !important;
  font-size: 16px;
  font-weight: 500;
}

body.revelation-page .clue-timeline article strong {
  color: #f1efe6 !important;
  font-size: 17px;
  line-height: 1.7;
}

@media(max-width:800px) {

  body.archive-page,
  body.revelation-page {
    font-size: 15px;
  }

  body.archive-page main .file p,
  body.archive-page main .file li,
  body.archive-page main .file dd,
  body.archive-page main .file span,
  body.archive-page main .file em,
  body.archive-page main .file aside {
    font-size: 15px;
  }

  body.archive-page .archive-shell {
    width: calc(100% - 32px);
  }

  body.archive-page .file-header,
  body.archive-page .file-02,
  body.archive-page .file-03,
  body.archive-page .file-04,
  body.archive-page .file-05,
  body.archive-page .file-07 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  body.archive-page .subject-table {
    width: 100%;
    overflow: visible;
  }

  body.archive-page .table-row {
    min-width: 0;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
    padding: 14px;
  }

  body.revelation-page main p:not(.truth-index),
  body.revelation-page main li,
  body.revelation-page main dd {
    font-size: 15px;
  }

  body.revelation-page .truth-cycle .operation-cycle {
    grid-template-columns: 1fr;
  }

  body.revelation-page .truth-cycle .operation-cycle li {
    min-height: 62px;
    font-size: 15px;
  }

  body.revelation-page .clue-timeline article {
    min-height: 0;
    padding: 24px 0;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 7px 12px;
  }

  body.revelation-page .clue-timeline article i {
    display: none;
  }

  body.revelation-page .clue-timeline article strong {
    grid-column: 2;
    font-size: 16px;
  }
}

/* All restricted-page surfaces use dark backgrounds and light text */
html body.archive-page main .file.file-01,
html body.archive-page main .file.file-02,
html body.archive-page main .file.file-03,
html body.archive-page main .file.file-05,
html body.archive-page main .file.file-06 .fruit-report {
  color: #f7f4eb !important;
  background: #0d100d !important;
}

html body.archive-page .file.file-01 :is(h2, h3, p, span, b, strong, small, dt, dd, li, aside, figcaption),
html body.archive-page .file.file-02 :is(h2, h3, p, span, b, strong, small, dt, dd, li, aside, figcaption),
html body.archive-page .file.file-03 :is(h2, h3, p, span, b, strong, small, dt, dd, li, aside, figcaption),
html body.archive-page .file.file-05 :is(h2, h3, p, span, b, strong, small, dt, dd, li, aside, figcaption),
html body.archive-page .file.file-06 .fruit-report :is(h2, h3, p, span, b, strong, small, dt, dd, li, aside, figcaption) {
  color: #f7f4eb !important;
}

html body.archive-page .file.file-06 .fruit-report aside {
  color: #f7f4eb !important;
  background: #191e18 !important;
}

html body.archive-page main :is(.photo-mount.photo-mount, .observation-sheet.observation-sheet, .file-ticket.file-ticket, .experiment-grid figure, .experiment-copy aside, .growth-compare.growth-compare, .particle-layout figure, .table-row.table-row, .finding.finding) {
  color: #f7f4eb !important;
  background-color: #191e18 !important;
}

html body.archive-page main :is(.photo-mount.photo-mount, .observation-sheet.observation-sheet, .file-ticket.file-ticket, .experiment-grid figure, .experiment-copy aside, .growth-compare.growth-compare, .particle-layout figure, .table-row.table-row, .finding.finding) :is(h2, h3, p, span, b, strong, small, dt, dd, li, aside, figcaption, em) {
  color: #f7f4eb !important;
}

html body.revelation-page main .truth-people.truth-people,
html body.revelation-page main .orchard-role.orchard-role,
html body.revelation-page main .still-running.still-running {
  color: #f7f4eb !important;
  background: #0d100d !important;
}

html body.revelation-page main :is(.truth-people.truth-people, .orchard-role.orchard-role, .still-running.still-running) :is(h2, h3, p, span, b, strong, small, dt, dd, li, figcaption) {
  color: #f7f4eb !important;
}

html body.revelation-page main .truth-people.truth-people .energy-trace span {
  color: #f7f4eb !important;
  background: #191e18 !important;
}

/* Final contrast correction and modal ending */
body.archive-page main>.file,
body.archive-page .fruit-report,
body.archive-page .file-01,
body.archive-page .file-02,
body.archive-page .file-03,
body.archive-page .file-04,
body.archive-page .file-05,
body.archive-page .file-06,
body.archive-page .file-07 {
  color: #f4f0e5 !important;
  background-color: #10130f !important;
}

body.archive-page main .file h2,
body.archive-page main .file h3,
body.archive-page main .file strong,
body.archive-page main .file b,
body.archive-page main .file dd,
body.archive-page main .file li,
body.archive-page main .file span,
body.archive-page main .file em {
  color: #f4f0e5 !important;
}

body.archive-page main .file p,
body.archive-page main .file dt,
body.archive-page main .file small,
body.archive-page main .file figcaption {
  color: #ddd9cd !important;
}

body.archive-page .fruit-report aside,
body.archive-page .observation-sheet,
body.archive-page .growth-compare,
body.archive-page .finding,
body.archive-page .registered-subject,
body.archive-page .operation-conclusion {
  color: #f4f0e5 !important;
  background: #1b201a !important;
}

body.archive-page .file-tag,
body.archive-page .file-ticket span,
body.archive-page .dossier-note {
  color: #ffad96 !important;
}

body.revelation-page main>section:not(.revelation-hero):not(.reservation-ending),
body.revelation-page .truth-people,
body.revelation-page .orchard-role,
body.revelation-page .still-running {
  color: #f4f0e5 !important;
  background-color: #0d100d !important;
}

body.revelation-page main h2,
body.revelation-page main strong,
body.revelation-page main b,
body.revelation-page main dd {
  color: #f4f0e5 !important;
}

body.revelation-page main p:not(.truth-index),
body.revelation-page main dt,
body.revelation-page main small,
body.revelation-page main figcaption {
  color: #ddd9cd !important;
}

body.revelation-page .truth-index,
body.revelation-page .confidential-line,
body.revelation-page .cancel-note {
  color: #ffad96 !important;
}

body.revelation-page .ending-transition {
  position: fixed;
  z-index: 900;
  inset: 0;
  min-height: 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: #000;
  transition: opacity .18s, visibility 0s .2s;
}

body.revelation-page .ending-transition.is-active {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

body.revelation-page .ending-noise {
  position: absolute;
  inset: -30%;
}

body.revelation-page .reservation-ending {
  position: fixed;
  z-index: 910;
  inset: 0;
  min-height: 0;
  padding: 24px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, .88) !important;
  transition: opacity .45s, visibility 0s .45s;
}

body.revelation-page .reservation-ending.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

body.revelation-page.reservation-open {
  overflow: hidden;
}

body.revelation-page .reservation-card {
  margin: auto;
}

body.revelation-page .reservation-card p,
body.revelation-page .reservation-card dd {
  color: #eeeade !important;
}

@media(max-width:800px) {
  body.revelation-page .reservation-ending {
    padding: 14px;
    align-items: start;
  }

  body.revelation-page .reservation-card {
    margin-block: 14px;
  }
}

/* Absolute contrast correction for restricted pages */
body.archive-page main>.file,
body.archive-page .file-01,
body.archive-page .file-02,
body.archive-page .file-03,
body.archive-page .file-04,
body.archive-page .file-05,
body.archive-page .file-06,
body.archive-page .file-07,
body.archive-page .fruit-report {
  color: #f4f0e5 !important;
  background-color: #10130f !important;
}

body.archive-page main .file h2,
body.archive-page main .file h3,
body.archive-page main .file strong,
body.archive-page main .file b,
body.archive-page main .file dd,
body.archive-page main .file li,
body.archive-page main .file span {
  color: #f4f0e5 !important;
}

body.archive-page main .file p,
body.archive-page main .file dt,
body.archive-page main .file small,
body.archive-page main .file figcaption {
  color: #ddd9ce !important;
}

body.archive-page .fruit-report aside,
body.archive-page .observation-sheet,
body.archive-page .growth-compare,
body.archive-page .finding,
body.archive-page .registered-subject,
body.archive-page .operation-conclusion {
  color: #f4f0e5 !important;
  background-color: #1a1e18 !important;
}

body.archive-page .file-tag,
body.archive-page .dossier-note,
body.archive-page .file-ticket span,
body.archive-page .data-heading>div>span {
  color: #f09a82 !important;
}

body.revelation-page main>section:not(.revelation-hero):not(.reservation-ending),
body.revelation-page .truth-cycle,
body.revelation-page .truth-identity,
body.revelation-page .truth-people,
body.revelation-page .truth-fruit,
body.revelation-page .orchard-role,
body.revelation-page .clues,
body.revelation-page .still-running {
  color: #f4f0e5 !important;
  background-color: #0d100d !important;
}

body.revelation-page main h2,
body.revelation-page main h3,
body.revelation-page main strong,
body.revelation-page main b,
body.revelation-page main dd {
  color: #f4f0e5 !important;
}

body.revelation-page main p:not(.truth-index),
body.revelation-page main li,
body.revelation-page main dt,
body.revelation-page main small,
body.revelation-page main figcaption {
  color: #ddd9ce !important;
}

body.revelation-page .truth-index,
body.revelation-page .confidential-line,
body.revelation-page .cancel-note {
  color: #f09a82 !important;
}

body.revelation-page .ending-transition {
  position: fixed;
  z-index: 900;
  inset: 0;
  min-height: 0;
  display: grid;
  visibility: hidden;
  opacity: 0;
  place-items: center;
  pointer-events: none;
  background: #000 !important;
  transition: opacity .16s, visibility .16s;
}

body.revelation-page .ending-transition.is-active {
  visibility: visible;
  opacity: 1;
}

body.revelation-page .ending-transition .ending-noise {
  position: absolute;
  inset: -30%;
}

body.revelation-page .reservation-ending {
  position: fixed;
  z-index: 910;
  inset: 0;
  min-height: 0;
  padding: 32px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, .9) !important;
  transition: opacity .45s, visibility .45s;
}

body.revelation-page .reservation-ending.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

body.revelation-page.reservation-open {
  overflow: hidden;
}

body.revelation-page .reservation-card {
  margin: auto;
}

@media(max-width:800px) {
  body.revelation-page .reservation-ending {
    padding: 16px;
    align-items: start;
  }

  body.revelation-page .reservation-card {
    margin-block: 16px;
  }
}

body.revelation-page .truth-identity strong {
  color: #f1ede2;
  background: #171b16;
}

body.revelation-page .truth-fruit figure {
  width: 100%;
  margin: 0 0 56px;
  transform: none;
}

body.revelation-page .truth-fruit figure img {
  max-height: 620px;
  object-fit: cover;
}

body.revelation-page .truth-fruit aside small {
  color: #cbc8bd;
}

body.revelation-page .truth-cycle {
  padding: 120px 0 135px;
}

body.revelation-page .truth-cycle header {
  position: relative;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(240, 236, 225, .2);
}

body.revelation-page .truth-cycle header h2 {
  margin: 0;
  color: #f0ece1;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 500;
  line-height: 1.35;
}

body.revelation-page .truth-cycle header>span {
  position: absolute;
  right: 0;
  bottom: 32px;
  color: #d5d2c8;
}

body.revelation-page .truth-cycle figure {
  margin: 48px 0;
  padding: 12px 12px 40px;
  background: #20241e;
}

body.revelation-page .truth-cycle figure img {
  width: 100%;
  display: block;
}

body.revelation-page .truth-cycle figcaption {
  padding-top: 12px;
  color: #d5d2c8;
}

body.revelation-page .truth-cycle .operation-conclusion p {
  color: #ddd9ce;
}

body.revelation-page .truth-cycle .operation-conclusion strong {
  color: #f0a08b;
}

body.revelation-page .first-tree {
  margin-bottom: 50px;
}

body.revelation-page .first-tree-image {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(240, 236, 225, .18);
}

body.revelation-page .first-tree-image img {
  width: 100%;
  max-height: 620px;
  display: block;
  object-fit: cover;
}

body.revelation-page .still-running {
  text-align: center;
}

body.revelation-page .still-running .truth-index {
  text-align: center;
}

body.revelation-page .still-running .truth-shell {
  display: block;
}

body.revelation-page .still-running strong {
  color: #f1a08b;
}

body.revelation-page .question-number {
  display: none;
}

@media(max-width:800px) {

  body.revelation-page .truth-shell,
  body.revelation-page .revelation-hero-inner {
    width: calc(100% - 32px);
  }

  body.revelation-page .revelation-hero {
    min-height: 640px;
  }

  body.revelation-page .revelation-hero-inner {
    padding: 28px 20px 42px;
    background: rgba(5, 7, 5, .76);
  }

  body.revelation-page .revelation-hero h1 {
    margin-top: 32px;
    font-size: clamp(36px, 10.5vw, 44px);
  }

  body.revelation-page .truth-cycle,
  body.revelation-page .truth-identity,
  body.revelation-page .truth-people,
  body.revelation-page .truth-fruit,
  body.revelation-page .orchard-role,
  body.revelation-page .clues,
  body.revelation-page .still-running {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  body.revelation-page .truth-cycle header>span {
    position: static;
    display: block;
    margin-top: 14px;
  }

  body.revelation-page .truth-cycle figure {
    margin: 30px 0;
    padding: 7px 7px 32px;
  }

  body.revelation-page .truth-cycle .operation-cycle {
    grid-template-columns: 1fr;
  }

  body.revelation-page .truth-cycle .operation-cycle li {
    min-height: 64px;
  }

  body.revelation-page .energy-trace {
    margin-top: 42px;
  }

  body.revelation-page .truth-fruit figure {
    margin-bottom: 34px;
  }

  body.revelation-page .clues header {
    margin-bottom: 38px;
  }

  body.revelation-page .first-tree {
    margin: 58px 0 30px;
  }

  body.revelation-page .still-running {
    padding-bottom: 100px;
  }
}

/* Restricted archive / revelation — dark horror treatment ---------------- */
.archive-page,
.revelation-page {
  font-family: "Noto Serif JP", "Noto Serif", serif;
  font-feature-settings: "palt";
}

.archive-page {
  color: #c9c7bb;
  background: #10130f;
}

.archive-header {
  color: #c9c7bb;
  border-color: rgba(176, 45, 35, .28);
  background: rgba(10, 13, 10, .97);
}

.archive-header .brand img {
  filter: grayscale(1) brightness(.8);
}

.archive-header>div a {
  border-color: rgba(201, 199, 187, .3);
  color: #c9c7bb;
}

.archive-cover {
  color: #d7d4c7;
  background: radial-gradient(circle at 76% 28%, rgba(113, 26, 22, .13), transparent 27%), #171c16;
}

.archive-cover::before {
  opacity: .09;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, .14) 4px);
}

.archive-cover::after {
  color: rgba(141, 25, 20, .09);
}

.archive-main>.file:nth-child(odd):not(.file-04):not(.file-06):not(.file-07) {
  background: #171a16;
}

.archive-main>.file:nth-child(even):not(.file-04):not(.file-06):not(.file-07) {
  background: #111410;
}

.archive-main .file-header,
.archive-main .data-heading,
.archive-main .ledger-title {
  border-color: rgba(201, 199, 187, .18);
}

.archive-main .file h2 {
  color: #d9d6ca;
}

.archive-main .file p,
.archive-main .file dt,
.archive-main .file figcaption {
  color: #aaa99f;
}

.observation-sheet,
.growth-compare,
.operation-conclusion {
  border-color: rgba(135, 34, 27, .7);
  color: #c9c7bb;
  background: #1d211c;
}

.photo-mount,
.file-08 figure {
  background: #262a24;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .48);
}

.table-row {
  border-color: rgba(201, 199, 187, .17);
  background: #181c17;
}

.table-row:first-child {
  color: #d3d0c4;
  background: #272c25;
}

.operation-cycle li {
  border-color: rgba(201, 199, 187, .18);
  color: #c9c7bb;
  background: #191d18;
}

.archive-footer {
  background: #050705;
}

.revelation-page {
  color: #d8d4c8;
  background: #090c09;
}

.revelation-shade {
  background: linear-gradient(90deg, rgba(2, 5, 3, .96), rgba(3, 6, 4, .63)), linear-gradient(0deg, rgba(2, 4, 3, .94), transparent 55%);
}

.truth-identity,
.truth-fruit,
.clues {
  background: #0b0e0b;
}

.truth-people,
.orchard-role,
.still-running {
  color: #c8c5b9;
  background: #131712;
}

.truth-people p,
.orchard-role p:not(.truth-index),
.still-running p:not(.truth-index) {
  color: #94968c;
}

.truth-people h2,
.orchard-role h2,
.still-running h2 {
  color: #d8d4c8;
}

.energy-trace span {
  border-color: rgba(177, 53, 43, .42);
  color: #cfcbbf;
  background: #0d100d;
}

.truth-fruit figure {
  background: #181c17;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .55);
}

.clue-timeline {
  border-color: rgba(180, 54, 43, .25);
}

.clue-timeline article {
  border-color: rgba(216, 212, 200, .12);
}

.ending-transition {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  isolation: isolate;
  background: #090b09;
  transition: background .9s;
}

.ending-transition::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(circle, rgba(88, 18, 14, .18), transparent 55%), #000;
  transition: opacity .8s;
}

.ending-transition.is-active::before {
  opacity: 1;
}

.ending-noise {
  position: absolute;
  inset: -35%;
  opacity: 0;
  pointer-events: none;
  background-image: repeating-radial-gradient(circle at 35% 45%, rgba(255, 255, 255, .16) 0 1px, transparent 1px 4px);
  background-size: 7px 7px;
  mix-blend-mode: screen;
}

.ending-transition.is-active .ending-noise {
  animation: ending-noise 1.45s steps(2, end) both;
}

.ending-transition p {
  position: relative;
  z-index: 2;
  font-family: "Noto Serif", "Noto Serif JP", serif;
  text-shadow: 0 0 18px rgba(151, 35, 28, .65);
}

.reservation-ending {
  color: #d1cec2;
  background: #020302;
}

.reservation-card {
  border-color: rgba(159, 44, 36, .55);
  color: #d1cec2;
  background: rgba(12, 15, 12, .98);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .8), 0 30px 90px #000;
}

.reservation-card>header,
.reservation-card dl,
.reservation-card dl div {
  border-color: rgba(209, 206, 194, .14);
}

.reservation-main>p:first-child,
.reservation-card dt {
  color: #85887f;
}

.ending-actions button,
.ending-actions a {
  border-color: rgba(209, 206, 194, .26);
  color: #c9c7bb;
}

.ending-actions .x-share {
  color: #ddd9cc;
  background: #242922;
}

@keyframes ending-noise {
  0% {
    opacity: 0;
    transform: translate(0);
  }

  12% {
    opacity: .65;
    transform: translate(-3%, 2%);
  }

  25% {
    opacity: .12;
    transform: translate(2%, -1%);
  }

  42% {
    opacity: .78;
    transform: translate(1%, 3%);
  }

  58% {
    opacity: .18;
    transform: translate(-2%, -2%);
  }

  76% {
    opacity: .5;
    transform: translate(3%, 1%);
  }

  100% {
    opacity: 0;
    transform: translate(0);
  }
}

@media(max-width:800px) {
  .archive-main .file {
    overflow: hidden;
  }

  .ending-transition {
    min-height: 62vh;
  }

  .reservation-card {
    width: 100%;
  }

  .reservation-main h2 {
    overflow-wrap: anywhere;
  }
}

@media(prefers-reduced-motion:reduce) {
  .ending-transition.is-active .ending-noise {
    animation: none;
    opacity: .12;
  }
}

/* Fruit detail pages ------------------------------------------------------ */
.sub-shell,
.record-shell {
  width: min(1120px, calc(100% - clamp(80px, 12vw, 192px)));
  margin-inline: auto;
}

.sub-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 78px;
  padding: 0 clamp(24px, 4vw, 68px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 253, 248, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.sub-header .brand,
.sub-footer .brand,
.record-header .brand {
  width: 175px;
  height: 60px;
}

.sub-back {
  min-height: 46px;
  padding: 0 17px 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

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

.fruit-page {
  background: var(--bg);
}

.fruit-hero {
  width: min(1320px, calc(100% - 48px));
  min-height: 650px;
  margin: 24px auto 0;
  padding-left: clamp(55px, 8vw, 125px);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  background: #fff4df;
}

.grape-page .fruit-hero {
  background: #f1eaf2;
}

.pear-page .fruit-hero {
  background: #f2f0d7;
}

.fruit-hero-copy {
  position: relative;
  z-index: 1;
  padding: 65px 8% 65px 0;
}

.fruit-hero h1 {
  margin: 0 0 24px;
  font-size: clamp(39px, 3.7vw, 52px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .045em;
}

.fruit-hero h1 span {
  display: block;
  white-space: nowrap;
}

.fruit-hero-copy>p:last-child {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
}

.fruit-hero figure {
  align-self: stretch;
  min-width: 0;
  margin: 0;
}

.fruit-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fruit-intro {
  padding: 125px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  align-items: center;
}

.section-label {
  margin: 0 0 14px;
  color: var(--orange);
  font: 700 14px Quicksand, sans-serif;
  letter-spacing: .16em;
}

.fruit-intro h2,
.taste-section h2,
.season-section h2,
.enjoy-section h2 {
  margin: 0;
  font-size: clamp(33px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .055em;
}

.fruit-intro h2 {
  font-size: clamp(33px, 3.3vw, 45px);
  letter-spacing: .035em;
}

.fruit-intro h2 span {
  display: block;
  white-space: nowrap;
}

.fruit-intro>p,
.season-copy>p:last-child,
.enjoy-section>div>p:last-child {
  color: var(--muted);
}

.taste-section {
  padding: 115px 0 125px;
  background: var(--green-dark);
  color: #fff;
}

.taste-section header {
  margin-bottom: 55px;
}

.taste-section .section-label {
  color: var(--yellow);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.feature-row article {
  min-height: 245px;
  padding: 35px 9%;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.feature-row article:last-child {
  border: 0;
}

.feature-row b {
  color: var(--yellow);
  font: 700 19px Quicksand, sans-serif;
}

.feature-row h3 {
  margin: 18px 0 11px;
  font-size: 21px;
}

.feature-row p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.season-section {
  padding: 125px 0;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 10%;
  align-items: center;
}

.season-card {
  padding: 38px 42px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(73, 63, 55, .07);
}

.season-card>span {
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
}

.season-card>strong {
  margin: 5px 0 30px;
  display: block;
  font-size: clamp(24px, 3vw, 36px);
}

.month-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.month-line::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8%;
  right: 8%;
  height: 4px;
  border-radius: 4px;
  background: var(--orange-light);
}

.month-line i {
  position: absolute;
  z-index: 1;
  top: 4px;
  left: 25%;
  width: 50%;
  height: 12px;
  border-radius: 8px;
  background: var(--orange);
}

.month-line b {
  padding-top: 25px;
  font: 600 14px Quicksand, sans-serif;
}

.enjoy-section {
  margin-bottom: 125px;
  padding: 65px 7%;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 10%;
  align-items: center;
  background: var(--ivory);
}

.enjoy-section aside {
  padding: 27px 30px;
  border-left: 3px solid var(--orange);
  background: #fff;
}

.enjoy-section aside h3 {
  margin: 0 0 8px;
}

.enjoy-section aside p {
  margin: 0;
  color: var(--muted);
}

.fruit-nav {
  min-height: 105px;
  margin-bottom: 100px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 45px;
}

.fruit-nav p {
  margin-right: auto;
  font-weight: 700;
}

.fruit-nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.sub-footer {
  min-height: 190px;
  padding: 40px clamp(24px, 6vw, 96px);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 35px;
  align-items: center;
  color: #fff;
  background: var(--green-dark);
}

.sub-footer .brand img {
  filter: brightness(0) invert(1);
}

.sub-footer p {
  color: rgba(255, 255, 255, .7);
}

.sub-footer small {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
}

.fruit-info a {
  min-height: 44px;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 700;
}

/* Research record -------------------------------------------------------- */
.record-page {
  background: #f2f0e9;
  color: #3f423b;
}

.record-header {
  height: 78px;
  padding: 0 clamp(24px, 4vw, 68px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(63, 66, 59, .18);
  background: #eeece4;
}

.record-header>div {
  display: flex;
  align-items: center;
  gap: 28px;
}

.record-header>div span {
  font: 700 14px Quicksand, sans-serif;
  letter-spacing: .14em;
}

.record-header>div a {
  padding: 8px 14px;
  border: 1px solid rgba(63, 66, 59, .25);
  border-radius: 6px;
  font-size: 14px;
}

.record-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

.record-hero>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.record-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(37, 45, 34, .78), rgba(37, 45, 34, .12));
}

.record-hero>div {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - clamp(80px, 12vw, 192px)));
  margin: 0 auto;
  padding-bottom: 80px;
}

.record-hero>div>p,
.record-number {
  color: #9a3b32;
  font: 700 14px Quicksand, sans-serif;
  letter-spacing: .14em;
}

.record-hero>div>p {
  color: #f1d6aa;
}

.record-hero h1 {
  margin: 12px 0 30px;
  font-size: clamp(49px, 7vw, 82px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: .06em;
}

.record-hero dl {
  display: flex;
  gap: 40px;
}

.record-hero dl div {
  padding-left: 13px;
  border-left: 2px solid #b56a58;
}

.record-hero dt {
  font-size: 14px;
}

.record-hero dd {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.record-lead {
  padding: 120px 0;
  display: grid;
  grid-template-columns: .35fr 1.65fr;
  gap: 5%;
}

.record-lead h2,
.research-block h2,
.longterm-record h2,
.cycle-section h2 {
  margin: 0 0 27px;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.45;
}

.record-lead>div {
  max-width: 760px;
}

.record-lead p:last-child,
.research-block p,
.cycle-section>p:last-child {
  color: #696c65;
}

.research-block {
  padding: 75px 0;
  border-top: 1px solid rgba(63, 66, 59, .16);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 8%;
  align-items: center;
}

.research-block.reverse figure {
  order: 2;
}

.research-block figure {
  height: 480px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.research-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.research-block aside {
  margin-top: 25px;
  padding: 16px 18px;
  border-left: 3px solid #9a3b32;
  background: #e7e3d8;
  font-size: 14px;
  font-weight: 700;
}

.longterm-record {
  margin-top: 75px;
  padding: 105px 0;
  color: #fff;
  background: #4b5147;
}

.longterm-record .record-number {
  color: #d69a83;
}

.longterm-record .record-shell {
  display: grid;
  grid-template-columns: .4fr 1.6fr;
  gap: 5%;
}

.longterm-record h2 {
  grid-column: 2;
}

.longterm-record .record-shell>div {
  grid-column: 2;
}

.longterm-record p {
  color: rgba(255, 255, 255, .72);
}

.longterm-record strong {
  margin-top: 25px;
  padding: 18px;
  display: block;
  border: 1px solid rgba(255, 255, 255, .25);
  font-size: 16px;
}

.cycle-section {
  padding: 120px 0;
}

.cycle-section figure {
  height: 480px;
  margin: 40px 0;
  overflow: hidden;
  border-radius: 8px;
}

.cycle-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cycle-section ol {
  margin: 0 0 35px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.cycle-section li {
  position: relative;
  min-height: 90px;
  padding: 20px 12px;
  border: 1px solid rgba(63, 66, 59, .18);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  background: #e9e6dc;
}

.cycle-section li:not(:last-child)::after {
  content: '→';
  position: absolute;
  z-index: 1;
  right: -10px;
  color: #9a3b32;
}

.record-footer {
  min-height: 120px;
  padding: 35px clamp(24px, 6vw, 96px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, .72);
  background: #343a32;
}

.record-footer p,
.record-footer small {
  font: 600 14px Quicksand, sans-serif;
  letter-spacing: .1em;
}

/* Static truth layout ---------------------------------------------------- */
.truth-page {
  min-height: 100vh;
  background: #22251f;
  color: #e8e5da;
}

.truth-layout {
  position: relative;
  min-height: 100vh;
  padding: clamp(35px, 6vw, 90px);
  overflow: hidden;
}

.truth-background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.truth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 31, 25, .78);
}

.truth-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 70px);
  border: 1px solid rgba(232, 229, 218, .23);
  background: rgba(41, 45, 37, .9);
  backdrop-filter: blur(8px);
}

.truth-panel>header {
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(232, 229, 218, .2);
  display: flex;
  justify-content: space-between;
}

.truth-panel>header p,
.truth-panel>header span {
  margin: 0;
  color: #c7826e;
  font: 700 14px Quicksand, sans-serif;
  letter-spacing: .16em;
}

.truth-title {
  padding: 70px 0 85px;
}

.truth-title h1 {
  margin: 0 0 25px;
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .06em;
}

.truth-title p {
  color: rgba(232, 229, 218, .65);
}

.truth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7%;
}

.truth-grid article {
  padding-top: 25px;
  border-top: 2px solid #8d4a3e;
}

.truth-grid article>span {
  color: #c7826e;
  font: 700 14px Quicksand, sans-serif;
}

.truth-grid h2 {
  margin: 18px 0 25px;
  font-size: clamp(29px, 3.4vw, 42px);
  font-weight: 500;
  line-height: 1.5;
}

.truth-grid p {
  color: rgba(232, 229, 218, .68);
}

.truth-panel>footer {
  margin-top: 90px;
  padding-top: 25px;
  border-top: 1px solid rgba(232, 229, 218, .2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.truth-panel>footer p {
  font: 600 14px Quicksand, sans-serif;
  letter-spacing: .1em;
}

.truth-panel>footer a {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(232, 229, 218, .35);
  display: flex;
  align-items: center;
  font-size: 14px;
}

@media(max-width:800px) {

  .sub-shell,
  .record-shell {
    width: calc(100% - 40px);
  }

  .sub-header {
    height: 68px;
    padding: 0 20px;
  }

  .sub-header .brand {
    width: 150px;
  }

  .sub-back {
    min-height: 44px;
    padding: 0 12px;
  }

  .sub-back span {
    display: none;
  }

  .fruit-hero {
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column-reverse;
  }

  .fruit-hero figure {
    width: 100%;
    height: 52vh;
    min-height: 360px;
  }

  .fruit-hero-copy {
    width: 100%;
    padding: 45px 20px 55px;
  }

  .fruit-hero h1 {
    font-size: clamp(35px, 10vw, 45px);
  }

  .fruit-intro {
    padding: 75px 0;
    display: block;
  }

  .fruit-intro h2,
  .taste-section h2,
  .season-section h2,
  .enjoy-section h2 {
    font-size: 30px;
  }

  .fruit-intro>p {
    margin-top: 28px;
  }

  .taste-section {
    padding: 75px 0;
  }

  .taste-section header {
    margin-bottom: 35px;
  }

  .feature-row {
    display: block;
  }

  .feature-row article {
    min-height: 0;
    padding: 28px 4px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }

  .season-section {
    padding: 75px 0;
    display: block;
  }

  .season-card {
    margin-top: 38px;
    padding: 28px 22px;
  }

  .season-card>strong {
    font-size: 25px;
  }

  .enjoy-section {
    margin-bottom: 75px;
    padding: 38px 20px;
    display: block;
  }

  .enjoy-section aside {
    margin-top: 30px;
    padding: 23px;
  }

  .fruit-nav {
    margin-bottom: 70px;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 10px 25px;
  }

  .fruit-nav p {
    width: 100%;
    margin: 0;
  }

  .fruit-nav a {
    flex: 1;
  }

  .sub-footer {
    padding: 40px 20px;
    display: block;
  }

  .sub-footer p {
    margin: 20px 0;
  }

  .record-header {
    height: auto;
    min-height: 68px;
    padding: 0 20px;
  }

  .record-header .brand {
    width: 140px;
  }

  .record-header>div span {
    display: none;
  }

  .record-hero {
    min-height: 610px;
  }

  .record-hero>div {
    width: calc(100% - 40px);
    padding-bottom: 55px;
  }

  .record-hero h1 {
    font-size: 47px;
  }

  .record-hero dl {
    gap: 20px;
  }

  .record-lead {
    padding: 75px 0;
    display: block;
  }

  .record-lead>div {
    margin-top: 30px;
  }

  .record-lead h2,
  .research-block h2,
  .longterm-record h2,
  .cycle-section h2 {
    font-size: 32px;
  }

  .research-block,
  .research-block.reverse {
    padding: 60px 0;
    display: flex;
    flex-direction: column;
  }

  .research-block.reverse figure {
    order: 0;
  }

  .research-block figure {
    width: 100%;
    height: min(78vw, 390px);
    margin-bottom: 35px;
  }

  .research-block>div {
    width: 100%;
  }

  .longterm-record {
    margin-top: 45px;
    padding: 70px 0;
  }

  .longterm-record .record-shell {
    display: block;
  }

  .longterm-record h2 {
    margin-top: 20px;
  }

  .cycle-section {
    padding: 75px 0;
  }

  .cycle-section figure {
    height: min(70vw, 360px);
  }

  .cycle-section ol {
    grid-template-columns: 1fr 1fr;
  }

  .cycle-section li:not(:last-child)::after {
    display: none;
  }

  .record-footer {
    padding: 30px 20px;
    display: block;
  }

  .record-footer small {
    display: block;
    margin-top: 8px;
  }

  .truth-layout {
    padding: 20px;
  }

  .truth-panel {
    padding: 25px 20px;
  }

  .truth-panel>header {
    display: block;
  }

  .truth-panel>header span {
    display: block;
    margin-top: 7px;
  }

  .truth-title {
    padding: 55px 0 65px;
  }

  .truth-title h1 {
    font-size: 43px;
  }

  .truth-grid {
    display: block;
  }

  .truth-grid article+article {
    margin-top: 60px;
  }

  .truth-grid h2 {
    font-size: 29px;
  }

  .truth-panel>footer {
    margin-top: 65px;
    display: block;
  }

  .truth-panel>footer a {
    margin-top: 20px;
    justify-content: center;
  }
}

/* Shared exploration reset ---------------------------------------------- */
.exploration-reset {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(73, 63, 55, .28);
  border-radius: 999px;
  color: var(--text);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.exploration-reset:hover {
  border-color: var(--orange);
  color: #fff;
  background: var(--orange);
}

.exploration-reset:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

@media(max-width:1100px) {
  .global-nav>a:not(.header-cta) {
    display: grid;
  }

  .exploration-reset {
    padding-inline: 13px;
  }
}

@media(max-width:800px) {
  .exploration-reset {
    width: 100%;
    min-height: 54px;
    margin-top: 16px;
    border-color: var(--orange);
    color: var(--orange);
    background: #fff;
  }
}

/* Internal archive — redesigned ----------------------------------------- */
.archive-page {
  color: #3e433b;
  background: #efede5;
}

.archive-shell {
  width: min(1060px, calc(100% - clamp(80px, 12vw, 192px)));
  margin-inline: auto;
}

.archive-header {
  height: 78px;
  padding: 0 clamp(24px, 5vw, 78px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(62, 67, 59, .18);
  background: #efede5;
}

.archive-header .brand {
  width: 175px;
  height: 60px;
}

.archive-header>div {
  display: flex;
  align-items: center;
  gap: 30px;
}

.archive-header>div span {
  font: 700 14px Quicksand, sans-serif;
  letter-spacing: .16em;
}

.archive-header>div a {
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(62, 67, 59, .25);
  border-radius: 5px;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.archive-cover {
  position: relative;
  min-height: 720px;
  padding: 70px max(clamp(40px, 6vw, 96px), calc((100% - 1060px)/2));
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  grid-template-rows: auto 1fr auto;
  color: #e9e7dc;
  background: #465044;
}

.archive-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .1;
  background: repeating-linear-gradient(0deg, transparent 0 39px, #fff 40px);
}

.archive-cover::after {
  content: 'T-001';
  position: absolute;
  right: -25px;
  bottom: -90px;
  color: rgba(255, 255, 255, .035);
  font: 700 260px Quicksand, sans-serif;
}

.cover-rule {
  position: relative;
  z-index: 1;
  grid-column: 1/-1;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  display: flex;
  justify-content: space-between;
  font: 700 14px Quicksand, sans-serif;
  letter-spacing: .16em;
}

.cover-main {
  position: relative;
  z-index: 1;
  align-self: center;
}

.cover-main>p:first-child {
  color: #d6c28d;
  font: 700 14px Quicksand, sans-serif;
  letter-spacing: .2em;
}

.cover-main h1 {
  margin: 18px 0 28px;
  font-size: clamp(58px, 7vw, 88px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: .06em;
}

.cover-main>p:last-child {
  color: rgba(233, 231, 220, .7);
}

.cover-meta {
  position: relative;
  z-index: 1;
  align-self: end;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, .24);
}

.cover-meta div {
  min-height: 58px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  display: grid;
  grid-template-columns: 105px 1fr;
  align-items: center;
}

.cover-meta dt {
  color: rgba(233, 231, 220, .58);
  font-size: 14px;
}

.cover-meta dd {
  margin: 0;
  font: 700 15px Quicksand, 'Zen Maru Gothic', sans-serif;
}

.restricted-stamp {
  position: absolute;
  z-index: 2;
  right: clamp(45px, 8vw, 135px);
  top: 170px;
  padding: 11px 17px;
  border: 3px solid rgba(169, 40, 40, .75);
  color: rgba(169, 40, 40, .82);
  font: 700 19px Quicksand, sans-serif;
  letter-spacing: .12em;
  transform: rotate(-8deg);
}

.file {
  position: relative;
}

.file h2 {
  font-weight: 500;
  letter-spacing: .04em;
}

.file-header {
  padding: 125px 0 50px;
  border-bottom: 1px solid rgba(62, 67, 59, .2);
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.file-header span,
.file-ticket span,
.file-tag,
.data-heading>div>span,
.record-number,
.ledger-title>p,
.fruit-evidence-label span,
.dossier-label span,
.file-08 header>p {
  color: #9d382f;
  font: 700 14px Quicksand, sans-serif;
  letter-spacing: .15em;
}

.file-header h2 {
  margin: 7px 0 0;
  font-size: 47px;
}

.file-header dl {
  margin: 0;
  display: flex;
  gap: 35px;
}

.file-header dt {
  color: #777b73;
  font-size: 14px;
}

.file-header dd {
  margin: 2px 0 0;
  font: 700 15px Quicksand, sans-serif;
}

.evidence-layout {
  padding: 65px 0 130px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 7%;
  align-items: start;
}

.photo-mount {
  position: relative;
  margin: 0;
  padding: 18px 18px 55px;
  background: #ddd9ce;
  box-shadow: 0 8px 24px rgba(50, 54, 47, .12);
  transform: rotate(-1deg);
}

.photo-mount img {
  width: 100%;
}

.photo-mount figcaption {
  position: absolute;
  left: 20px;
  bottom: 12px;
  font: 600 14px Quicksand, 'Zen Maru Gothic', sans-serif;
}

.photo-mount figcaption small {
  color: #9d382f;
  font-size: 14px;
}

.photo-mount i {
  position: absolute;
  top: 20%;
  right: 17%;
  width: 58px;
  height: 58px;
  border: 3px solid rgba(169, 40, 40, .7);
  border-radius: 50%;
  transform: rotate(8deg);
}

.observation-sheet {
  padding: 32px;
  border: 1px solid rgba(62, 67, 59, .2);
  background: #f7f5ef;
}

.observation-sheet h3 {
  margin: 0 0 18px;
  font-size: 25px;
}

.observation-sheet>p {
  color: #686d65;
}

.observation-sheet ul {
  margin: 28px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(62, 67, 59, .18);
}

.observation-sheet li {
  min-height: 52px;
  border-bottom: 1px solid rgba(62, 67, 59, .15);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
}

.observation-sheet li span {
  color: #777b73;
  font-size: 14px;
}

.observation-sheet li b {
  font-size: 14px;
}

.observation-sheet aside,
.experiment-copy aside {
  padding: 15px;
  border-left: 3px solid #9d382f;
  background: #191e18;
  font-size: 14px;
}

.observation-sheet aside b,
.experiment-copy aside b {
  display: block;
  margin-bottom: 4px;
  color: #9d382f;
  font: 700 14px Quicksand, sans-serif;
}

.file-02 {
  padding: 125px 0;
  background: #dedbd1;
}

.experiment-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 8%;
}

.file-ticket {
  position: absolute;
  z-index: 2;
  top: -34px;
  left: -25px;
  width: 190px;
  padding: 17px;
  border: 1px solid rgba(62, 67, 59, .25);
  background: #f3f0e7;
  transform: rotate(-3deg);
  box-shadow: 0 7px 16px rgba(50, 54, 47, .1);
}

.file-ticket span,
.file-ticket b,
.file-ticket small {
  display: block;
}

.file-ticket b {
  margin: 8px 0;
  font: 700 14px Quicksand, sans-serif;
}

.file-ticket small {
  font-size: 14px;
}

.experiment-grid figure {
  margin: 0;
  padding: 14px 14px 44px;
  background: #f6f3eb;
}

.experiment-grid figure img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.experiment-grid figcaption {
  margin-top: 11px;
  font-size: 14px;
}

.experiment-copy {
  align-self: center;
}

.experiment-copy h2 {
  margin: 0 0 25px;
  font-size: 45px;
  line-height: 1.45;
}

.experiment-copy>p {
  color: #666b63;
}

.result-numbers {
  margin: 35px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(62, 67, 59, .22);
  border-bottom: 1px solid rgba(62, 67, 59, .22);
}

.result-numbers div {
  min-height: 115px;
  padding: 15px 10px;
  border-right: 1px solid rgba(62, 67, 59, .18);
  display: grid;
  place-items: center;
  text-align: center;
}

.result-numbers div:last-child {
  border: 0;
}

.result-numbers b {
  color: #9d382f;
  font: 700 40px Quicksand, sans-serif;
}

.result-numbers span {
  font-size: 14px;
}

.file-03 {
  padding: 125px 0;
}

.data-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.data-heading h2 {
  margin: 8px 0 0;
  font-size: 47px;
}

.data-heading dl {
  margin: 0;
  display: flex;
  gap: 30px;
}

.data-heading dt {
  color: #777b73;
  font-size: 14px;
}

.data-heading dd {
  margin: 0;
  font: 700 15px Quicksand, sans-serif;
}

.wide-photo {
  margin: 50px 0 35px;
}

.wide-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.wide-photo figcaption {
  margin-top: 9px;
  font-size: 14px;
}

.data-lead {
  max-width: 780px;
  color: #666b63;
}

.growth-compare {
  margin-top: 45px;
  padding: 30px;
  border: 1px solid rgba(62, 67, 59, .2);
  background: #f8f6f0;
}

.growth-compare>div {
  display: grid;
  grid-template-columns: 145px 1fr 130px;
  gap: 20px;
  align-items: center;
  min-height: 58px;
}

.growth-compare span,
.growth-compare strong {
  font-size: 14px;
}

.growth-compare i {
  position: relative;
  height: 13px;
  background: #d8d5cb;
}

.growth-compare i::after {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value);
  background: #66775f;
}

.growth-compare div:last-child i::after {
  background: #9d382f;
}

.hand-note-record {
  width: fit-content;
  margin: 25px 0 0 auto;
  padding: 8px 12px;
  border-bottom: 2px solid #9d382f;
  font-weight: 700;
  transform: rotate(-1deg);
}

.file-04 {
  padding: 125px 0;
  color: #e8e6dd;
  background: #3f463d;
}

.particle-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 9%;
  align-items: center;
}

.particle-copy h2 {
  margin: 12px 0 25px;
  font-size: 47px;
}

.particle-copy>p:not(.file-tag) {
  color: rgba(232, 230, 221, .68);
}

.particle-copy ol {
  padding: 0;
  margin: 35px 0;
  list-style: none;
}

.particle-copy li {
  min-height: 62px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
}

.particle-copy li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.particle-copy li b {
  color: #d39882;
  font: 700 14px Quicksand, sans-serif;
}

.particle-copy aside {
  padding: 16px;
  border: 1px solid rgba(211, 152, 130, .45);
  color: #e7b19d;
  font-size: 14px;
}

.particle-layout figure {
  margin: 0;
  padding: 15px 15px 45px;
  background: #d9d7ce;
  transform: rotate(1deg);
}

.particle-layout img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  filter: saturate(.7) contrast(1.05);
}

.particle-layout figcaption {
  margin-top: 10px;
  color: #3f463d;
  font: 600 14px Quicksand, sans-serif;
}

.file-05 {
  padding: 125px 0;
}

.ledger-title {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
}

.ledger-title>p {
  grid-column: 1/-1;
}

.ledger-title h2 {
  margin: 5px 0 0;
  font-size: 47px;
}

.ledger-title>span {
  font: 700 14px Quicksand, sans-serif;
}

.subject-table {
  margin-top: 45px;
  border: 1px solid rgba(62, 67, 59, .22);
}

.table-row {
  min-height: 74px;
  padding: 0 25px;
  border-bottom: 1px solid rgba(62, 67, 59, .16);
  display: grid;
  grid-template-columns: .75fr .75fr 1.5fr .6fr;
  align-items: center;
}

.table-row:last-child {
  border: 0;
}

.table-row>* {
  font-size: 15px;
}

.table-head {
  min-height: 55px;
  color: #fff;
  background: #697366;
}

.table-head span {
  font-size: 14px;
}

.table-row b {
  font: 700 17px Quicksand, sans-serif;
}

.table-row em {
  color: #53694e;
  font-style: normal;
  font-weight: 700;
}

.finding {
  margin-top: 30px;
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 25px;
}

.finding p {
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(62, 67, 59, .18);
  background: #191e18;
}

.finding b {
  display: block;
  margin-bottom: 5px;
  color: #9d382f;
  font-size: 14px;
}

.file-06 {
  padding-bottom: 125px;
  background: #e0ded5;
}

.fruit-evidence {
  position: relative;
  height: 690px;
  overflow: hidden;
}

.fruit-evidence::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(32, 37, 30, .12), rgba(32, 37, 30, .02));
}

.fruit-evidence>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fruit-evidence-label {
  position: absolute;
  z-index: 1;
  top: 45px;
  left: max(clamp(40px, 6vw, 96px), calc((100% - 1060px)/2));
  padding: 19px 23px;
  background: #191e18;
  box-shadow: 0 8px 18px rgba(31, 35, 29, .12);
}

.fruit-evidence-label span,
.fruit-evidence-label b,
.fruit-evidence-label small {
  display: block;
}

.fruit-evidence-label b {
  margin: 7px 0;
  font: 700 20px Quicksand, sans-serif;
}

.fruit-evidence-label small {
  font-size: 14px;
}

.fruit-report {
  padding-top: 65px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7%;
}

.fruit-report h2 {
  margin: 0 0 20px;
  font-size: 47px;
}

.fruit-report>div p {
  color: #666b63;
}

.fruit-report ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fruit-report li {
  min-height: 54px;
  border-bottom: 1px solid rgba(62, 67, 59, .18);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fruit-report li span,
.fruit-report li b {
  font-size: 14px;
}

.fruit-report aside {
  grid-column: 1/-1;
  padding: 18px;
  border-left: 4px solid #9d382f;
  background: #f5f2e9;
  font-weight: 700;
}

.file-07 {
  padding: 125px 0;
  color: #e9e7dc;
  background: #4a5148;
}

.intake-dossier {
  display: grid;
  grid-template-columns: .35fr 1.65fr;
  gap: 7%;
}

.dossier-label {
  padding-right: 25px;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.dossier-label span,
.dossier-label b,
.dossier-label small {
  display: block;
}

.dossier-label span {
  color: #d69a83;
}

.dossier-label b {
  margin: 15px 0;
  font: 700 17px Quicksand, sans-serif;
}

.dossier-label small {
  color: rgba(233, 231, 220, .6);
  font-size: 14px;
}

.dossier-main h2 {
  margin: 0 0 22px;
  font-size: 48px;
}

.dossier-main>p,
.dossier-main>ul {
  color: rgba(233, 231, 220, .72);
}

.dossier-main ul {
  padding-left: 20px;
}

.registered-subject {
  margin-top: 45px;
  padding: 28px;
  border: 1px solid rgba(214, 154, 131, .5);
  background: rgba(34, 39, 33, .28);
}

.registered-subject>span {
  color: #d69a83;
  font-size: 14px;
}

.registered-subject>strong {
  margin: 5px 0 25px;
  display: block;
  font-size: 30px;
}

.registered-subject dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.registered-subject dl div {
  padding: 0 15px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.registered-subject dl div:first-child {
  padding-left: 0;
}

.registered-subject dl div:last-child {
  border: 0;
}

.registered-subject dt {
  color: rgba(233, 231, 220, .55);
  font-size: 14px;
}

.registered-subject dd {
  margin: 3px 0 0;
  font-size: 17px;
  font-weight: 700;
}

.dossier-note {
  color: #d69a83 !important;
  font-weight: 700;
}

.file-08 {
  padding: 135px 0 115px;
}

.file-08>header {
  position: relative;
}

.file-08 h2 {
  margin: 8px 0 15px;
  font-size: 58px;
  line-height: 1.3;
}

.file-08 header>span {
  position: absolute;
  right: 0;
  bottom: 5px;
  font: 700 14px Quicksand, sans-serif;
}

.file-08 figure {
  margin: 50px 0 45px;
  padding: 15px 15px 45px;
  background: #d9d6cc;
  box-shadow: 0 12px 30px rgba(51, 55, 48, .14);
}

.file-08 figure img {
  width: 100%;
}

.file-08 figcaption {
  margin: 10px 0 0;
  font-size: 14px;
}

.operation-cycle {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.operation-cycle li {
  position: relative;
  min-height: 105px;
  padding: 15px 10px;
  border: 1px solid rgba(62, 67, 59, .2);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  background: #f7f5ef;
}

.operation-cycle li:not(:last-child)::after {
  content: '→';
  position: absolute;
  z-index: 1;
  right: -10px;
  color: #9d382f;
}

.operation-conclusion {
  margin-top: 45px;
  padding: 28px;
  border-left: 5px solid #9d382f;
  background: #dedbd1;
}

.operation-conclusion p {
  max-width: 760px;
}

.operation-conclusion strong {
  color: #9d382f;
  font-size: 18px;
}

.archive-footer {
  min-height: 100px;
  padding: 30px clamp(24px, 6vw, 96px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, .55);
  background: #2d332c;
}

.archive-footer span {
  font: 600 14px Quicksand, sans-serif;
  letter-spacing: .12em;
}

/* Revelation page — redesigned ------------------------------------------ */
.revelation-page {
  color: #e8e5db;
  background: #20251f;
}

.truth-shell {
  width: min(960px, calc(100% - clamp(80px, 12vw, 192px)));
  margin-inline: auto;
}

.truth-index {
  margin: 0 0 20px;
  color: #c47d66;
  font: 700 14px Quicksand, sans-serif;
  letter-spacing: .15em;
}

.revelation-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.revelation-hero>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.revelation-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 22, 17, .88), rgba(17, 22, 17, .45)), linear-gradient(0deg, rgba(17, 22, 17, .75), transparent 55%);
}

.revelation-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - clamp(80px, 12vw, 192px)));
  margin: 0 auto;
  padding-bottom: 90px;
}

.confidential-line {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  display: flex;
  justify-content: space-between;
  color: #d08b73;
  font: 700 14px Quicksand, sans-serif;
  letter-spacing: .17em;
}

.revelation-hero h1 {
  margin: 60px 0 25px;
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .06em;
}

.revelation-hero-inner>p {
  color: rgba(232, 229, 219, .68);
}

.truth-identity {
  padding: 150px 0;
  display: grid;
  grid-template-columns: .3fr 1.7fr;
  gap: 6%;
}

.truth-identity>div {
  max-width: 720px;
}

.truth-identity h2,
.truth-people h2,
.truth-fruit h2,
.orchard-role h2,
.clues h2,
.still-running h2 {
  margin: 0 0 35px;
  font-size: clamp(42px, 5vw, 63px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .055em;
}

.truth-identity p {
  color: rgba(232, 229, 219, .7);
}

.truth-identity strong {
  margin-top: 30px;
  padding: 25px;
  border-left: 3px solid #a95646;
  display: block;
  font-size: 18px;
  background: rgba(255, 255, 255, .035);
}

.truth-people {
  position: relative;
  padding: 145px 0;
  color: #353a33;
  background: #ddd9cd;
}

.truth-people .truth-shell {
  position: relative;
}

.question-number {
  position: absolute;
  right: -20px;
  top: -90px;
  color: rgba(53, 58, 51, .06);
  font: 700 230px Quicksand, sans-serif;
}

.truth-people .truth-index {
  color: #8e4036;
}

.truth-people h2 {
  max-width: 760px;
}

.people-reason {
  width: 62%;
  margin-left: auto;
}

.people-reason p {
  border-bottom: 1px solid rgba(53, 58, 51, .18);
  padding: 0 0 20px;
}

.energy-trace {
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.energy-trace span {
  min-width: 110px;
  min-height: 55px;
  border: 1px solid rgba(53, 58, 51, .25);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, .35);
}

.energy-trace i {
  width: 12%;
  height: 1px;
  background: #8e4036;
}

.truth-fruit {
  padding: 150px 0;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 8%;
  align-items: center;
}

.truth-fruit figure {
  margin: 0;
  padding: 13px 13px 45px;
  background: #d4d0c5;
  transform: rotate(-1deg);
}

.truth-fruit img {
  width: 100%;
}

.truth-fruit figcaption {
  margin-top: 10px;
  color: #343931;
  font: 700 14px Quicksand, sans-serif;
}

.truth-fruit>div>p:not(.truth-index) {
  color: rgba(232, 229, 219, .68);
}

.truth-fruit aside {
  margin-top: 35px;
  padding: 22px;
  border: 1px solid rgba(196, 125, 102, .45);
}

.truth-fruit aside span,
.truth-fruit aside b,
.truth-fruit aside small {
  display: block;
}

.truth-fruit aside span {
  color: #c47d66;
  font-size: 14px;
}

.truth-fruit aside b {
  margin: 6px 0;
  font-size: 23px;
}

.truth-fruit aside small {
  color: rgba(232, 229, 219, .6);
  font-size: 14px;
}

.orchard-role {
  padding: 145px 0;
  color: #353a33;
  background: #ede9df;
}

.orchard-role .truth-shell {
  display: grid;
  grid-template-columns: .35fr 1.65fr;
  gap: 6%;
}

.orchard-role .truth-index {
  color: #8e4036;
}

.orchard-role p:not(.truth-index) {
  color: #62675f;
}

.clues {
  padding: 155px 0;
}

.clues header {
  margin-bottom: 75px;
}

.clue-timeline {
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.clue-timeline article {
  min-height: 105px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  display: grid;
  grid-template-columns: 55px 1fr 55px 1.3fr;
  align-items: center;
}

.clue-timeline article>span {
  color: #c47d66;
  font: 700 14px Quicksand, sans-serif;
}

.clue-timeline article p {
  color: rgba(232, 229, 219, .6);
}

.clue-timeline article i {
  color: #c47d66;
  font-style: normal;
}

.clue-timeline article strong {
  font-size: 17px;
}

.first-tree {
  margin: 110px 0 0;
  text-align: center;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.7;
}

.first-tree b {
  color: #c47d66;
  font-size: 1.4em;
}

.still-running {
  padding: 160px 0 260px;
  color: #353a33;
  background: #d7d3c7;
}

.still-running .truth-index {
  color: #8e4036;
}

.still-running .truth-shell>div {
  width: 58%;
  margin-left: auto;
}

.still-running p:not(.truth-index) {
  color: #666b63;
}

.still-running strong {
  margin-top: 30px;
  display: block;
  color: #8e4036;
  font-size: 19px;
}

.ending-transition {
  min-height: 65vh;
  display: grid;
  place-items: center;
  background: #151914;
  transition: background 1s;
}

.ending-transition p {
  color: rgba(255, 255, 255, .18);
  font: 700 14px Quicksand, sans-serif;
  letter-spacing: .24em;
  opacity: 0;
  transition: opacity .8s;
}

.ending-transition.is-active p {
  opacity: 1;
}

.reservation-ending {
  min-height: 100vh;
  padding: 120px 20px;
  display: grid;
  place-items: center;
  background: #e7e3d8;
  opacity: 0;
  transition: opacity .9s;
}

.reservation-ending.is-visible {
  opacity: 1;
}

.reservation-card {
  width: min(680px, 100%);
  border: 1px solid rgba(53, 58, 51, .25);
  color: #353a33;
  background: #f6f3eb;
  box-shadow: 0 24px 65px rgba(18, 22, 17, .18);
}

.reservation-card>header {
  padding: 18px 25px;
  border-bottom: 1px solid rgba(53, 58, 51, .2);
  display: flex;
  justify-content: space-between;
  color: #8e4036;
  font: 700 14px Quicksand, sans-serif;
  letter-spacing: .13em;
}

.reservation-card>header small {
  font-size: 14px;
}

.reservation-main {
  padding: 50px 45px 38px;
}

.reservation-main>p:first-child {
  color: #7a7e76;
}

.reservation-main h2 {
  margin: 8px 0 20px;
  font-size: clamp(38px, 5vw, 53px);
  font-weight: 500;
  line-height: 1.4;
}

.reservation-card dl {
  margin: 0 45px;
  border-top: 1px solid rgba(53, 58, 51, .2);
}

.reservation-card dl div {
  min-height: 62px;
  border-bottom: 1px solid rgba(53, 58, 51, .16);
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
}

.reservation-card dt {
  color: #7a7e76;
  font-size: 14px;
}

.reservation-card dd {
  margin: 0;
  font-weight: 700;
}

.cancel-note {
  margin: 25px 45px;
  color: #8e4036;
  font-size: 14px;
}

.ending-actions {
  padding: 25px 45px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ending-actions button,
.ending-actions a {
  min-height: 50px;
  border: 1px solid rgba(53, 58, 51, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #353a33;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.ending-actions .x-share {
  grid-column: 1/-1;
  color: #fff;
  background: #252a24;
}

.ending-actions .truth-reset {
  color: #8e4036;
  border-color: rgba(142, 64, 54, .45);
}

@media(max-width:800px) {

  .archive-shell,
  .truth-shell {
    width: calc(100% - 40px);
  }

  .archive-header {
    min-height: 68px;
    height: auto;
    padding: 0 20px;
  }

  .archive-header .brand {
    width: 145px;
  }

  .archive-header>div span {
    display: none;
  }

  .archive-header>div {
    gap: 0;
  }

  .archive-header>div a {
    font-size: 14px;
  }

  .archive-cover {
    min-height: 690px;
    padding: 45px 20px;
    display: flex;
    flex-direction: column;
  }

  .cover-rule {
    font-size: 12px;
  }

  .cover-rule span:last-child {
    display: none;
  }

  .cover-main {
    margin: auto 0;
  }

  .cover-main h1 {
    font-size: 50px;
  }

  .cover-meta {
    width: 100%;
  }

  .restricted-stamp {
    top: 145px;
    right: 20px;
    font-size: 14px;
  }

  .file-header {
    padding: 80px 0 35px;
    display: block;
  }

  .file-header h2,
  .data-heading h2,
  .ledger-title h2 {
    font-size: 34px;
  }

  .file-header dl {
    margin-top: 25px;
    gap: 22px;
  }

  .evidence-layout {
    padding: 40px 0 80px;
    display: block;
  }

  .photo-mount {
    margin-bottom: 35px;
  }

  .photo-mount i {
    width: 44px;
    height: 44px;
  }

  .observation-sheet {
    padding: 23px;
  }

  .file-02 {
    padding: 80px 0;
  }

  .experiment-grid {
    display: block;
  }

  .file-ticket {
    top: -25px;
    left: -5px;
  }

  .experiment-grid figure {
    margin-bottom: 40px;
  }

  .experiment-grid figure img {
    height: min(90vw, 430px);
  }

  .experiment-copy h2,
  .particle-copy h2,
  .fruit-report h2,
  .dossier-main h2,
  .file-08 h2 {
    font-size: 34px;
  }

  .result-numbers b {
    font-size: 31px;
  }

  .file-03,
  .file-05 {
    padding: 80px 0;
  }

  .data-heading {
    display: block;
  }

  .data-heading dl {
    margin-top: 25px;
  }

  .wide-photo img {
    height: min(72vw, 360px);
  }

  .growth-compare {
    padding: 20px;
  }

  .growth-compare>div {
    grid-template-columns: 105px 1fr;
    gap: 12px;
  }

  .growth-compare strong {
    grid-column: 2;
  }

  .hand-note-record {
    margin-right: 0;
  }

  .file-04 {
    padding: 80px 0;
  }

  .particle-layout {
    display: flex;
    flex-direction: column-reverse;
  }

  .particle-layout figure {
    margin-bottom: 40px;
  }

  .particle-layout img {
    height: min(95vw, 440px);
  }

  .ledger-title {
    display: block;
  }

  .ledger-title>span {
    display: block;
    margin-top: 12px;
  }

  .subject-table {
    overflow-x: auto;
  }

  .table-row {
    min-width: 620px;
  }

  .finding {
    display: block;
  }

  .finding p+p {
    margin-top: 12px;
  }

  .file-06 {
    padding-bottom: 80px;
  }

  .fruit-evidence {
    height: 68vh;
    min-height: 500px;
  }

  .fruit-evidence-label {
    top: 22px;
    left: 20px;
  }

  .fruit-report {
    padding-top: 45px;
    display: block;
  }

  .fruit-report ul {
    margin-top: 30px;
  }

  .fruit-report aside {
    margin-top: 30px;
  }

  .file-07 {
    padding: 80px 0;
  }

  .intake-dossier {
    display: block;
  }

  .dossier-label {
    margin-bottom: 35px;
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }

  .registered-subject {
    padding: 20px;
  }

  .registered-subject dl {
    display: block;
  }

  .registered-subject dl div {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .file-08 {
    padding: 85px 0 75px;
  }

  .file-08 header>span {
    position: static;
  }

  .file-08 figure {
    margin-top: 35px;
    padding: 8px 8px 38px;
  }

  .operation-cycle {
    grid-template-columns: 1fr 1fr;
  }

  .operation-cycle li:not(:last-child)::after {
    display: none;
  }

  .operation-conclusion {
    padding: 22px;
  }

  .archive-footer {
    padding: 28px 20px;
    display: block;
  }

  .archive-footer span {
    display: block;
  }

  .archive-footer span+span {
    margin-top: 6px;
  }

  .revelation-hero {
    min-height: 760px;
  }

  .revelation-hero-inner {
    width: calc(100% - 40px);
    padding-bottom: 60px;
  }

  .confidential-line {
    display: block;
  }

  .confidential-line span {
    display: block;
  }

  .confidential-line span+span {
    margin-top: 7px;
  }

  .revelation-hero h1 {
    margin-top: 45px;
    font-size: 46px;
  }

  .truth-identity {
    padding: 85px 0;
    display: block;
  }

  .truth-identity>p {
    margin-bottom: 35px;
  }

  .truth-identity h2,
  .truth-people h2,
  .truth-fruit h2,
  .orchard-role h2,
  .clues h2,
  .still-running h2 {
    font-size: 34px;
  }

  .truth-identity strong {
    padding: 20px;
    font-size: 16px;
  }

  .truth-people {
    padding: 85px 0;
  }

  .question-number {
    right: 0;
    top: -50px;
    font-size: 140px;
  }

  .people-reason {
    width: 100%;
  }

  .energy-trace {
    display: grid;
    grid-template-columns: 1fr 25px 1fr;
    gap: 8px;
  }

  .energy-trace span {
    min-width: 0;
  }

  .energy-trace i {
    width: 100%;
  }

  .energy-trace i:nth-of-type(3),
  .energy-trace span:last-child {
    margin-top: 8px;
  }

  .truth-fruit {
    padding: 85px 0;
    display: flex;
    flex-direction: column;
  }

  .truth-fruit figure {
    margin-bottom: 45px;
  }

  .orchard-role {
    padding: 85px 0;
  }

  .orchard-role .truth-shell {
    display: block;
  }

  .orchard-role .truth-index {
    margin-bottom: 35px;
  }

  .clues {
    padding: 90px 0;
  }

  .clues header {
    margin-bottom: 50px;
  }

  .clue-timeline article {
    padding: 22px 0;
    grid-template-columns: 35px 1fr;
  }

  .clue-timeline article i {
    display: none;
  }

  .clue-timeline article strong {
    grid-column: 2;
    padding-top: 7px;
  }

  .first-tree {
    margin-top: 75px;
    font-size: 24px;
  }

  .still-running {
    padding: 90px 0 170px;
  }

  .still-running .truth-shell>div {
    width: 100%;
  }

  .ending-transition {
    min-height: 55vh;
  }

  .reservation-ending {
    padding: 80px 20px;
  }

  .reservation-card>header {
    display: block;
  }

  .reservation-card>header small {
    display: block;
    margin-top: 7px;
  }

  .reservation-main {
    padding: 38px 25px 28px;
  }

  .reservation-main h2 {
    font-size: 37px;
  }

  .reservation-card dl {
    margin: 0 25px;
  }

  .reservation-card dl div {
    grid-template-columns: 105px 1fr;
  }

  .cancel-note {
    margin: 22px 25px;
  }

  .ending-actions {
    padding: 20px 25px 30px;
    grid-template-columns: 1fr;
  }

  .ending-actions .x-share {
    grid-column: auto;
  }
}

@media(prefers-reduced-motion:reduce) {

  .reservation-ending,
  .ending-transition p {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Layout stability revision ------------------------------------------------ */
body {
  font-size: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  height: 78px;
  color: var(--text);
  background: rgba(255, 253, 248, .97);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  width: 175px;
  height: 62px;
}

.brand img {
  width: 215px;
  filter: none;
}

.global-nav>a:not(.header-cta) {
  color: var(--text);
  font-size: 14px;
  text-shadow: none;
}

.global-nav small {
  font-size: 14px;
  color: var(--green-dark);
  letter-spacing: .08em;
}

.header-cta {
  min-height: 50px;
  font-size: 14px;
  color: #fff;
  background: var(--green-dark);
}

.hero {
  height: clamp(680px, calc(100vh - 78px), 860px);
  min-height: 680px;
}

.hero-copy {
  bottom: clamp(70px, 10vh, 105px);
}

.hero-label,
.section-index b,
.section-index span,
.eyebrow,
.open-badge small,
.open-badge span,
.notice-pickup p,
.notice-pickup time,
.fruit-info p,
.fruit-info div>p:first-child,
.person-name span,
.owner dt,
.people-heading>p:last-child,
.footer-brand p,
.site-footer nav,
.footer-fruits,
.footer-fruits p,
.footer-bottom p,
.footer-bottom small {
  font-size: 14px;
}

.notice-pickup>a:not(.circle-arrow),
.about-values p,
.news-list h3 {
  font-size: 14px;
}

.about {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}

.about-visual {
  min-width: 0;
  min-height: 540px;
}

.about-visual figure {
  width: 100%;
  height: 540px;
  border-radius: 24px;
  transform: none;
}

.about-visual img {
  transform: none;
  object-position: 54% center;
}

.about-visual::before,
.sun-mark {
  display: none;
}

.photo-caption {
  right: 22px;
  bottom: 20px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--orange);
  background: rgba(255, 253, 248, .94);
  font-size: 24px;
  transform: none;
}

.fruit-list {
  align-items: start;
}

.fruit,
.fruit:nth-child(2) {
  min-width: 0;
  margin-top: 0;
}

.fruit-photo {
  position: relative;
  height: 400px;
  margin: 0 0 24px;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
}

.fruit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.fruit:hover .fruit-photo img {
  transform: scale(1.025);
}

.fruit-photo span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255, 253, 248, .92);
  font: 700 14px Quicksand, sans-serif;
  letter-spacing: .08em;
}

.fruit-info {
  grid-template-columns: 34px minmax(0, 1fr);
}

.experience {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
}

.experience-photo img {
  height: 620px;
  border-radius: 24px;
}

.experience-photo::before {
  display: none;
}

.experience-photo span {
  top: 20px;
  right: 20px;
  padding: 8px 13px;
  border-radius: 10px;
  color: var(--orange);
  background: rgba(255, 253, 248, .94);
  font-size: 20px;
  transform: none;
}

.owner {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}

.owner figure {
  height: 610px;
  border-radius: 24px;
}

.owner figcaption,
.vice figcaption {
  width: auto;
  height: auto;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
}

.vice {
  width: 78%;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
}

.vice figure {
  height: 350px;
  border-radius: 22px;
}

.map-image {
  border-radius: 24px;
  transform: none;
}

.map-image figcaption {
  right: -30px;
  font-size: 14px;
}

.news-list time span,
.news-list em {
  font-size: 14px;
}

.button,
.hero-copy>p:last-of-type,
.hero-scroll,
.news-list h3 {
  font-size: 14px;
}

@media (max-width: 1100px) {
  .global-nav {
    gap: 15px;
  }

  .global-nav>a:not(.header-cta) small {
    display: none;
  }

  .global-nav>a:not(.header-cta) {
    font-size: 14px;
  }

  .header-cta {
    padding-inline: 17px;
  }
}

@media (max-width: 800px) {

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    position: sticky;
    inset: auto;
    z-index: 100;
    width: 100%;
    height: 68px;
    padding: 0 20px;
  }

  .brand {
    width: 150px;
    height: 56px;
  }

  .brand img {
    width: 185px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    flex: 0 0 44px;
    display: grid;
  }

  .global-nav {
    position: fixed;
    z-index: 101;
    inset: 68px 0 0;
    width: 100%;
    height: calc(100dvh - 68px);
    margin: 0;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    background: var(--bg);
    transition: transform .3s ease, opacity .2s ease, visibility .3s;
  }

  .menu-open .global-nav {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .global-nav>a:not(.header-cta) {
    flex: 0 0 auto;
    min-height: 64px;
    padding: 8px 4px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
  }

  .global-nav>a:not(.header-cta)::after {
    content: '→';
    color: var(--orange);
  }

  .global-nav small {
    display: none !important;
  }

  .header-cta {
    flex: 0 0 auto;
    min-height: 54px;
    margin-top: 24px;
  }

  .hero {
    height: 700px;
    min-height: 0;
    margin-top: 0;
  }

  .hero-image {
    object-position: 54% center;
  }

  .hero-copy {
    left: 20px;
    right: 20px;
    bottom: 36px;
    max-width: none;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(27px, 8vw, 34px);
    overflow-wrap: anywhere;
  }

  .hero-copy>p:last-of-type,
  .button,
  .notice-pickup>a:not(.circle-arrow),
  .news-list h3,
  .footer-bottom p {
    font-size: 14px;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-buttons .button,
  .hero-buttons .button-glass {
    width: 100%;
  }

  .open-badge {
    right: 20px;
    bottom: 225px;
  }

  .notice-pickup {
    width: calc(100% - 40px);
  }

  .about {
    display: flex;
    flex-direction: column;
  }

  .about>.section-index {
    position: static;
    margin-bottom: 30px;
  }

  .about-visual {
    min-height: 0;
  }

  .about-visual figure {
    width: 100%;
    height: min(92vw, 440px);
    border-radius: 18px;
  }

  .photo-caption {
    right: 12px;
    bottom: 12px;
    font-size: 17px;
  }

  .about-copy {
    padding-top: 48px;
  }

  .fruit-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .fruit {
    margin: 0 !important;
  }

  .fruit-photo {
    height: min(78vw, 420px);
    border-radius: 18px;
  }

  .experience {
    display: flex;
    flex-direction: column;
  }

  .experience-photo,
  .experience-copy {
    width: 100%;
  }

  .experience-photo img {
    height: min(110vw, 520px);
    border-radius: 18px;
  }

  .experience-copy {
    margin-top: 55px;
  }

  .owner {
    display: flex;
    flex-direction: column;
  }

  .owner figure {
    width: 100%;
    height: min(125vw, 540px);
    border-radius: 18px;
  }

  .owner>div {
    width: 100%;
  }

  .vice {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .vice figure {
    width: 100%;
    height: min(105vw, 460px);
    border-radius: 18px;
  }

  .vice>div {
    width: 100%;
  }

  .farm-map {
    display: flex;
    flex-direction: column;
  }

  .map-copy,
  .map-image {
    width: 100%;
  }

  .map-image {
    border-radius: 18px;
  }

  .news-heading {
    grid-template-columns: 1fr;
  }

  .news-list article {
    grid-template-columns: 64px minmax(0, 1fr) 34px;
  }

  .news-list em {
    display: none;
  }

  .access-inner {
    grid-template-columns: 1fr;
  }

  .access-info {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* Restricted pages: final cascade */
body.archive-page,
body.revelation-page {
  font-family: "Noto Serif JP", "Noto Serif", serif;
  font-feature-settings: "palt";
}

body.archive-page {
  color: #c9c7bb;
  background: #10130f;
}

body.archive-page .archive-header {
  color: #c9c7bb;
  border-color: rgba(176, 45, 35, .28);
  background: rgba(10, 13, 10, .97);
}

body.archive-page .archive-header .brand img {
  filter: grayscale(1) brightness(.8);
}

body.archive-page .archive-header>div a {
  border-color: rgba(201, 199, 187, .3);
  color: #c9c7bb;
}

body.archive-page .archive-cover {
  color: #d7d4c7;
  background: radial-gradient(circle at 76% 28%, rgba(113, 26, 22, .13), transparent 27%), #171c16;
}

body.archive-page .archive-cover::before {
  opacity: .09;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, .14) 4px);
}

body.archive-page main>.file:nth-child(odd):not(.file-04):not(.file-06):not(.file-07) {
  background: #171a16;
}

body.archive-page main>.file:nth-child(even):not(.file-04):not(.file-06):not(.file-07) {
  background: #111410;
}

body.archive-page main .file h2 {
  color: #d9d6ca;
}

body.archive-page main .file p,
body.archive-page main .file dt,
body.archive-page main .file figcaption {
  color: #aaa99f;
}

body.archive-page .observation-sheet,
body.archive-page .growth-compare,
body.archive-page .operation-conclusion {
  border-color: rgba(135, 34, 27, .7);
  color: #c9c7bb;
  background: #1d211c;
}

body.archive-page .photo-mount,
body.archive-page .file-08 figure {
  background: #262a24;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .48);
}

body.archive-page .table-row {
  border-color: rgba(201, 199, 187, .17);
  background: #181c17;
}

body.archive-page .table-row:first-child {
  color: #d3d0c4;
  background: #272c25;
}

body.archive-page .operation-cycle li {
  border-color: rgba(201, 199, 187, .18);
  color: #c9c7bb;
  background: #191d18;
}

body.archive-page .archive-footer {
  background: #050705;
}

body.revelation-page {
  color: #d8d4c8;
  background: #090c09;
}

body.revelation-page .revelation-shade {
  background: linear-gradient(90deg, rgba(2, 5, 3, .96), rgba(3, 6, 4, .63)), linear-gradient(0deg, rgba(2, 4, 3, .94), transparent 55%);
}

body.revelation-page .truth-identity,
body.revelation-page .truth-fruit,
body.revelation-page .clues {
  background: #0b0e0b;
}

body.revelation-page .truth-people,
body.revelation-page .orchard-role,
body.revelation-page .still-running {
  color: #c8c5b9;
  background: #131712;
}

body.revelation-page .truth-people h2,
body.revelation-page .orchard-role h2,
body.revelation-page .still-running h2 {
  color: #d8d4c8;
}

body.revelation-page .energy-trace span {
  border-color: rgba(177, 53, 43, .42);
  color: #cfcbbf;
  background: #0d100d;
}

body.revelation-page .truth-fruit figure {
  background: #181c17;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .55);
}

body.revelation-page .ending-transition {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  isolation: isolate;
  background: #090b09;
}

body.revelation-page .ending-transition::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(circle, rgba(88, 18, 14, .18), transparent 55%), #000;
  transition: opacity .8s;
}

body.revelation-page .ending-transition.is-active::before {
  opacity: 1;
}

body.revelation-page .ending-transition p {
  position: relative;
  z-index: 2;
  font-family: "Noto Serif", "Noto Serif JP", serif;
  text-shadow: 0 0 18px rgba(151, 35, 28, .65);
}

body.revelation-page .reservation-ending {
  color: #d1cec2;
  background: #020302;
}

body.revelation-page .reservation-card {
  border-color: rgba(159, 44, 36, .55);
  color: #d1cec2;
  background: rgba(12, 15, 12, .98);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .8), 0 30px 90px #000;
}

body.revelation-page .reservation-main>p:first-child,
body.revelation-page .reservation-card dt {
  color: #85887f;
}

body.revelation-page .ending-actions button,
body.revelation-page .ending-actions a {
  border-color: rgba(209, 206, 194, .26);
  color: #c9c7bb;
}

body.revelation-page .ending-actions .x-share {
  color: #ddd9cc;
  background: #242922;
}

@media(max-width:800px) {
  body.archive-page main .file {
    overflow: hidden;
  }

  body.revelation-page .ending-transition {
    min-height: 62vh;
  }

  body.revelation-page .reservation-card {
    width: 100%;
  }
}

/* Final visibility safeguards */
body.archive-page {
  color: #eeeade;
}

body.archive-page main .file p,
body.archive-page main .file dt,
body.archive-page main .file figcaption {
  color: #d7d3c8;
}

body.revelation-page {
  color: #f0ece1;
}

body.revelation-page .revelation-shade {
  display: none;
  background: none;
}

body.revelation-page .revelation-hero>img {
  filter: none;
}

body.revelation-page .truth-identity p,
body.revelation-page .truth-fruit>div>p:not(.truth-index),
body.revelation-page .truth-people p,
body.revelation-page .orchard-role p:not(.truth-index),
body.revelation-page .still-running p:not(.truth-index) {
  color: #d5d2c8;
}

body.archive-page main .file {
  color: #f4f0e5 !important;
  background-color: #10130f !important;
}

body.archive-page main .file h2,
body.archive-page main .file h3,
body.archive-page main .file strong,
body.archive-page main .file b,
body.archive-page main .file dd,
body.archive-page main .file li,
body.archive-page main .file span,
body.archive-page main .file em {
  color: #f4f0e5 !important;
}

body.archive-page main .file p,
body.archive-page main .file dt,
body.archive-page main .file small,
body.archive-page main .file figcaption {
  color: #ddd9cd !important;
}

body.archive-page .fruit-report,
body.archive-page .fruit-report aside,
body.archive-page .observation-sheet,
body.archive-page .growth-compare,
body.archive-page .finding,
body.archive-page .registered-subject {
  color: #f4f0e5 !important;
  background-color: #1b201a !important;
}

body.revelation-page main>section:not(.revelation-hero):not(.reservation-ending),
body.revelation-page .truth-people,
body.revelation-page .orchard-role,
body.revelation-page .still-running {
  color: #f4f0e5 !important;
  background-color: #0d100d !important;
}

body.revelation-page main h2,
body.revelation-page main strong,
body.revelation-page main b,
body.revelation-page main dd {
  color: #f4f0e5 !important;
}

body.revelation-page main p:not(.truth-index),
body.revelation-page main dt,
body.revelation-page main small,
body.revelation-page main figcaption {
  color: #ddd9cd !important;
}

body.revelation-page .truth-index,
body.revelation-page .confidential-line,
body.revelation-page .cancel-note {
  color: #ffad96 !important;
}

body.revelation-page .ending-transition {
  position: fixed !important;
  z-index: 900;
  inset: 0;
  min-height: 0 !important;
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: #000 !important;
  transition: opacity .18s, visibility 0s .2s;
}

body.revelation-page .ending-transition.is-active {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

body.revelation-page .ending-transition .ending-noise {
  position: absolute;
  inset: -30%;
}

body.revelation-page .reservation-ending {
  position: fixed !important;
  z-index: 910;
  inset: 0;
  min-height: 0 !important;
  padding: 24px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, .9) !important;
  transition: opacity .45s, visibility 0s .45s;
}

body.revelation-page .reservation-ending.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

body.revelation-page.reservation-open {
  overflow: hidden;
}

body.revelation-page .reservation-card {
  margin: auto;
}

body.revelation-page .reservation-card p,
body.revelation-page .reservation-card dd {
  color: #eeeade !important;
}

@media(max-width:800px) {
  body.revelation-page .reservation-ending {
    padding: 14px;
    align-items: start;
  }

  body.revelation-page .reservation-card {
    margin-block: 14px;
  }
}

/* Final readability polish ------------------------------------------------ */
html body.archive-page {
  font-size: 16px;
  line-height: 1.9;
}

html body.archive-page main .file {
  font-size: 15px;
  line-height: 1.9;
}

html body.archive-page main :is(.file.file-04, .file.file-07),
html body.archive-page main :is(.file.file-04, .file.file-07) :is(h2, h3, p, span, b, strong, small, dt, dd, li, aside, figcaption, em) {
  color: #f1efe6 !important;
}

html body.archive-page main .file p {
  font-size: 15px;
  line-height: 1.95;
}

html body.archive-page main .file :is(dt, dd, li, aside) {
  font-size: 15px;
  line-height: 1.8;
}

html body.archive-page main .file :is(figcaption, figcaption small) {
  font-size: 14px !important;
  line-height: 1.65;
}

html body.archive-page main :is(.file-header span, .file-ticket span, .file-tag, .data-heading > div > span, .ledger-title > p, .fruit-evidence-label span, .dossier-label span) {
  font-family: Quicksand, sans-serif;
  font-size: 13px !important;
  letter-spacing: .1em;
}

html body.archive-page .observation-sheet li b {
  font-size: 16px;
}

html body.archive-page .result-numbers b {
  font-size: 38px;
  line-height: 1;
}

html body.archive-page .growth-compare strong {
  font-size: 16px;
}

html body.revelation-page {
  font-size: 16px;
  line-height: 1.9;
  background: #090c09;
}

html body.revelation-page main>section:not(.revelation-hero):not(.reservation-ending) {
  color: #f1efe6 !important;
  background: #0d100d !important;
}

html body.revelation-page main>section:not(.revelation-hero):not(.reservation-ending) :is(h2, h3, p, span, b, strong, small, dt, dd, li, figcaption) {
  color: #f1efe6 !important;
}

html body.revelation-page main .truth-cycle.truth-cycle {
  padding: 72px 56px;
  color: #30342f !important;
  background: #e8e5db !important;
}

html body.revelation-page main .truth-cycle.truth-cycle :is(h2, h3, p, span, b, strong, small, dt, dd, li, figcaption) {
  color: #30342f !important;
}

html body.revelation-page .truth-cycle figure {
  background: #d8d5cb !important;
}

html body.revelation-page .truth-cycle .operation-cycle li {
  border-color: rgba(48, 52, 47, .24);
  color: #30342f !important;
  background: #f0ede4 !important;
}

html body.revelation-page .truth-cycle .operation-cycle li::after {
  color: #7d302a;
}

html body.revelation-page .truth-cycle .operation-conclusion {
  border-color: #87382f;
  color: #30342f !important;
  background: #d8d5cb !important;
}

html body.revelation-page .truth-cycle .operation-conclusion :is(p, strong) {
  color: #30342f !important;
}

html body.revelation-page main :is(.truth-identity, .truth-people, .truth-fruit, .orchard-role, .clues, .still-running) p {
  font-size: 16px;
  line-height: 1.95;
}

html body.revelation-page main :is(.truth-identity, .truth-people, .truth-fruit, .orchard-role, .clues, .still-running) :is(small, figcaption) {
  font-size: 14px;
  line-height: 1.7;
}

html body.revelation-page .clue-timeline article {
  grid-template-columns: 58px minmax(180px, 1fr) 52px minmax(240px, 1.25fr);
  gap: 12px;
}

html body.revelation-page .clue-timeline article>span {
  font-size: 13px;
}

html body.revelation-page .clue-timeline article p {
  margin: 0;
  font-weight: 500;
}

html body.revelation-page .clue-timeline article strong {
  font-size: 17px;
  line-height: 1.7;
}

@media(max-width:800px) {
  html body.archive-page main .file {
    font-size: 15px;
  }

  html body.archive-page main .file p,
  html body.revelation-page main :is(.truth-identity, .truth-people, .truth-fruit, .orchard-role, .clues, .still-running) p {
    font-size: 15px;
  }

  html body.archive-page main .file :is(dt, dd, li, aside) {
    font-size: 14px;
  }

  html body.revelation-page main .truth-cycle.truth-cycle {
    width: calc(100% - 32px);
    padding: 52px 20px;
  }

  html body.revelation-page .truth-cycle .operation-cycle {
    grid-template-columns: 1fr;
  }

  html body.revelation-page .truth-cycle .operation-cycle li {
    min-height: 58px;
  }

  html body.revelation-page .clue-timeline article {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 4px 10px;
  }

  html body.revelation-page .clue-timeline article strong {
    grid-column: 2;
  }

  html body.revelation-page .clue-timeline article i {
    display: none;
  }

  html body.archive-page .result-numbers b {
    font-size: 31px;
  }
}

/* Explicit surface pairs: background and foreground must never separate */
html body.revelation-page main #operation-cycle {
  color: #30342f !important;
  background-color: #e8e5db !important;
}

html body.revelation-page main #operation-cycle :is(h2, h3, p, span, b, strong, small, dt, dd, li, figcaption) {
  color: #30342f !important;
}

/* Preserve readable archive typography. */
html body.archive-page main .file :is(h2, h3, p, span, b, strong, small, dt, dd, li, aside, figcaption, em) {
  color: #e8e7df !important;
}

html body.revelation-page main .truth-cycle.truth-cycle {
  color: #f1efe6 !important;
  background: #0d100d !important;
}

html body.revelation-page main .truth-cycle.truth-cycle>header :is(h2, p, span),
html body.revelation-page .truth-cycle figcaption {
  color: #e8e7df !important;
}

html body.revelation-page .truth-cycle .operation-cycle li,
html body.revelation-page .truth-cycle .operation-cycle li * {
  color: #2f332e !important;
  background: #e8e5db !important;
}

html body.revelation-page .truth-cycle .operation-conclusion,
html body.revelation-page .truth-cycle .operation-conclusion :is(p, strong) {
  color: #30342f !important;
  background: #d8d5cb !important;
}

/* ARG game progression */
.game-alteration,.game-auth{position:fixed;z-index:1200;inset:0;width:100%;height:100vh;height:100dvh;overflow:hidden;visibility:hidden;opacity:0;pointer-events:none}
.game-alteration{display:grid;place-items:center;color:#e9e7df;background:rgba(7,11,8,.88);transition:opacity .12s}
.game-alteration::before{content:"";position:absolute;z-index:1;inset:-20%;background:radial-gradient(circle,transparent 12%,rgba(63,7,7,.18) 52%,rgba(0,0,0,.94) 100%);animation:game-breathe .68s ease-in-out 2}
.game-alteration::after{content:"";position:absolute;z-index:3;right:0;left:0;height:2px;opacity:0;background:rgba(175,55,48,.72);box-shadow:0 0 16px rgba(175,55,48,.55);animation:game-sweep .68s .16s ease-in-out 1}
.game-alteration__noise{position:absolute;z-index:2;inset:-35%;opacity:.38;background-image:repeating-radial-gradient(circle at 23% 37%,transparent 0 1px,rgba(255,255,255,.24) 2px,transparent 3px 5px),repeating-linear-gradient(0deg,transparent 0 3px,rgba(173,187,175,.16) 4px,transparent 5px 7px);background-size:9px 11px,100% 7px;mix-blend-mode:screen;animation:game-noise .12s steps(2) infinite}
.game-alteration__message{position:absolute;z-index:4;top:50%;left:50%;width:min(90vw,720px);padding:25px 38px;border:1px solid rgba(162,47,42,.42);color:#bd4b43;background:rgba(9,12,9,.9);box-shadow:0 0 34px rgba(151,37,31,.15),0 20px 55px rgba(0,0,0,.65);font-size:clamp(20px,3vw,34px);font-weight:700;letter-spacing:.14em;text-align:center;transform:translate(-50%,-50%);text-shadow:0 0 9px rgba(168,48,42,.5)}
.is-game-altering .game-alteration{visibility:visible;opacity:1;pointer-events:auto}.is-game-altering main,.is-game-altering .site-header,.is-game-altering .site-footer{animation:game-shift .44s .18s steps(2) 2}.is-game-locked{overflow:hidden}
.game-auth{z-index:1210;display:grid;place-items:center;background:rgba(5,8,6,.94);transition:opacity .15s}.game-auth p{margin:0;padding:24px 34px;border:1px solid rgba(222,218,204,.25);color:#e7e3d8;background:#101410;font-family:"Noto Serif JP",serif;font-size:clamp(18px,2.4vw,28px);letter-spacing:.08em}.is-authenticating .game-auth{visibility:visible;opacity:1;pointer-events:auto}
.game-trigger{cursor:pointer}.game-trigger:focus-visible,.game-hotspot:focus-visible{outline:3px solid #b04a3f;outline-offset:5px}.game-hotspot{position:absolute;z-index:8;border:0;color:transparent;background:transparent;cursor:pointer}.game-hotspot[hidden],.fruit-tree001[hidden],[data-tree-news][hidden],.game-record-close[hidden]{display:none!important}.map-image{position:relative}.game-hotspot--map{top:27%;left:25%;width:20%;height:24%;min-width:80px;min-height:60px}.game-hotspot--hero{top:8%;left:28%;width:46%;height:70%;min-width:120px;min-height:150px}
.fruit-tree001 .fruit-photo img{object-position:center}.fruit-tree001 button{min-height:44px;margin-top:14px;padding:0;border:0;color:var(--yellow);background:transparent;font-family:inherit;font-size:14px;font-weight:700;cursor:pointer}body:is(.is-phase2,.is-phase3,.is-phase4) .fruit-list{grid-template-columns:repeat(4,minmax(0,1fr))}[data-tree-news]>div{min-width:0}[data-tree-news]>div h3{margin:0}[data-tree-news]>div p{margin:8px 0 0;color:var(--muted);font-size:14px;line-height:1.7}
.game-record-close{padding:100px 20px;color:#e8e7df;text-align:center;background:#070907;opacity:0;transform:translateY(18px);transition:opacity .55s,transform .55s}.game-record-close.is-visible{opacity:1;transform:none}.game-record-close p{color:#c8c5ba;font:700 14px Quicksand,sans-serif;letter-spacing:.12em}.game-record-close button{min-width:220px;min-height:56px;border:1px solid rgba(232,231,223,.55);color:#f1efe6;background:transparent;font-family:inherit;font-size:15px;font-weight:700;cursor:pointer}.game-record-close button:hover{color:#10130f;background:#f1efe6}
.game-access-denied>:not(.game-access-gate):not(.game-alteration):not(.game-auth):not(.hidamari-debug):not(script){display:none!important}.game-access-gate{min-height:100vh;min-height:100dvh;padding:30px;display:grid;place-items:center;color:#e8e7df;background:#0c100c;font-family:"Noto Serif JP",serif}.game-access-gate>div{width:min(620px,100%);padding:clamp(35px,7vw,70px);border:1px solid rgba(232,231,223,.2);text-align:center;background:#151a14}.game-access-gate>div>p:first-child{color:#c06b5c;font:700 14px Quicksand,sans-serif;letter-spacing:.14em}.game-access-gate h1{margin:25px 0 16px;font-size:clamp(28px,5vw,46px);line-height:1.5}.game-access-gate p{color:#d2cfc5;font-size:16px}.game-access-gate a{min-height:52px;margin-top:32px;padding:0 24px;border:1px solid rgba(232,231,223,.35);display:inline-flex;align-items:center;justify-content:center;color:#f1efe6;font-weight:700}
.hidamari-debug{position:fixed;z-index:1300;right:14px;bottom:14px;width:226px;overflow:hidden;border:1px solid #59605a;border-radius:7px;color:#f3f3f3;background:#1b211c;box-shadow:0 12px 38px rgba(0,0,0,.35);font:12px/1.4 ui-monospace,SFMono-Regular,Menlo,monospace}.hidamari-debug[hidden]{display:none}.hidamari-debug header{padding:10px;display:flex;justify-content:space-between;color:#d9b665;font-weight:700;letter-spacing:.12em}.hidamari-debug header span{color:#a9c9af;letter-spacing:0}.hidamari-debug>div{padding:10px;border-top:1px solid #59605a;display:grid;gap:7px}.hidamari-debug p{margin:0}.hidamari-debug nav{display:grid;grid-template-columns:1fr 1fr;gap:5px}.hidamari-debug button{min-height:34px;border:1px solid #59605a;border-radius:3px;color:inherit;background:#303631;cursor:pointer}
@keyframes game-noise{0%{transform:translate3d(-2%,-1%,0)}25%{transform:translate3d(3%,2%,0)}50%{transform:translate3d(-1%,4%,0)}75%{transform:translate3d(2%,-3%,0)}100%{transform:translate3d(-3%,1%,0)}}@keyframes game-sweep{0%{top:7%;opacity:0}12%{opacity:.75}85%{opacity:.3}100%{top:94%;opacity:0}}@keyframes game-shift{0%,100%{transform:translateX(0);filter:none}25%{transform:translateX(6px);filter:contrast(1.12) saturate(.7)}52%{transform:translateX(-4px)}72%{transform:translateX(2px);filter:contrast(1.22) saturate(.55)}}@keyframes game-breathe{50%{transform:scale(1.035);opacity:.8}}
@media(max-width:800px){body:is(.is-phase2,.is-phase3,.is-phase4) .fruit-list{grid-template-columns:1fr}.game-hotspot--map{top:25%;left:22%;width:27%;height:28%}.game-hotspot--hero{top:8%;left:18%;width:64%;height:66%}.game-alteration__message{width:calc(100% - 40px);padding:22px 18px;letter-spacing:.08em}.game-record-close{padding:75px 20px}.hidamari-debug{right:10px;bottom:10px;max-height:min(390px,65dvh);overflow-y:auto}}
@media(prefers-reduced-motion:reduce){.game-alteration::before,.game-alteration::after,.game-alteration__noise{display:none}.is-game-altering main,.is-game-altering .site-header,.is-game-altering .site-footer{animation:none}}

/* ARG typography and anomaly refinements */
.game-alteration__message{font-family:"Noto Serif JP","Noto Serif",serif}
.archive-page,.revelation-page{font-family:"PT Serif","Noto Serif JP",serif}
.archive-page :is(b,dd,span,small,figcaption),.revelation-page :is(b,dd,span,small,figcaption){font-family:"PT Serif","Noto Serif JP",serif!important}
.archive-page :is(.cover-rule,.cover-main>p:first-child,.cover-meta dd,.file-header span,.file-ticket,.file-tag,.data-heading>div>span,.ledger-title>p,.fruit-evidence-label,.dossier-label,.archive-footer),
.revelation-page :is(.truth-index,.confidential-line,.truth-cycle header>span,.reservation-card>header){font-family:"PT Serif","Noto Serif JP",serif!important}
.archive-page main>.file{border-top:1px solid rgba(151,47,41,.65)}
.revelation-page main>:is(.truth-cycle,.truth-identity,.truth-people,.truth-fruit,.orchard-role,.clues,.still-running){border-top:1px solid rgba(151,47,41,.65)}
.game-age-anomaly{position:relative;overflow:hidden}
.game-age-anomaly::after{content:"";position:absolute;z-index:2;inset:8px 10px;pointer-events:none;background:repeating-linear-gradient(0deg,rgba(145,24,25,.97) 0 5px,rgba(93,7,10,.98) 5px 9px);box-shadow:0 0 10px rgba(126,17,19,.28);transform:rotate(-1.5deg)}
.game-phase3-copy,.game-phase3-copy span{color:#a72929!important;text-shadow:0 1px 16px rgba(79,0,0,.24)}
.ending-sentinel{width:100%;height:2px;background:#0d100d}

/* Phase progression final adjustments */
#owner .person-meta > div:last-child dd {
  color: #a72929 !important;
}

body.revelation-page .ending-actions a {
  grid-column: 1 / -1;
  width: 100%;
}

.archive-shell.fruit-report {
  padding-bottom: 0;
}
