:root {
  --paper: #f4f3ee;
  --ink: #24392f;
  --body: #44554b;
  --line: #c9d0c6;
  --gold: #c2a270;
  --forest: #223f34;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Amaterasu Sans", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.9;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: "Amaterasu Mincho", "Yu Mincho", serif;
  font-weight: 500;
  font-feature-settings: "palt" 0;
  font-kerning: none;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
h2 {
  font-size: clamp(32px, 3.3vw, 48px);
}
a {
  color: inherit;
  text-underline-offset: 6px;
}
button,
summary {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  color: inherit;
}
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #b66e39;
  outline-offset: 5px;
}
a {
  transition:
    color 0.22s,
    background-color 0.22s;
}
a:hover {
  text-decoration-thickness: 2px;
}
.shell {
  width: min(1280px, calc(100% - 128px));
  margin-inline: auto;
}
.section_pad {
  padding-block: 112px;
}
.eyebrow {
  font-family: "Amaterasu Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.8;
}
.small_note {
  font-size: 13px;
  line-height: 1.8;
}
.brand {
  display: block;
  flex-shrink: 0;
}
.brand img {
  width: 178px;
}
.brand_header {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand_header nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
}
.brand_header nav a {
  text-decoration: none;
  padding: 10px 0;
}
.brand_header nav a:hover {
  text-decoration: underline;
}
.button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  min-height: 62px;
  padding: 15px 24px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}
.button span {
  font-family: Arial, sans-serif;
  font-size: 21px;
  transition: transform 0.25s;
}
.button:hover span {
  transform: translate(3px, -3px);
}
.button.dark {
  background: var(--forest);
  color: #fff;
}
.button.dark:hover {
  background: #3c5b4a;
}
.button.light {
  background: #eeeede;
  color: #24392f;
}
.button.light:hover {
  background: #fff;
}
.text_link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 44px;
  padding-block: 7px;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-size: 14px;
}
.text_link span {
  transition: transform 0.25s;
}
.text_link:hover span {
  transform: translateX(4px);
}
.skip_link {
  position: absolute;
  left: 24px;
  top: -90px;
  z-index: 99;
  background: #fff;
  color: #1e3428;
  padding: 12px 20px;
}
.skip_link:focus {
  top: 8px;
}
.business_footer {
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 128px;
}
.footer_brand {
  font-family: "Amaterasu Mincho", serif;
  font-size: 25px;
  text-decoration: none;
  letter-spacing: 0.08em;
}
.business_footer nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  font-size: 13px;
}
.business_footer small {
  font-size: 10px;
  letter-spacing: 0.1em;
}
.image_note {
  font-size: 11px;
  line-height: 1.8;
}
.motion_ready [data_reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.motion_ready [data_reveal].is_visible {
  opacity: 1;
  transform: none;
}
[id] {
  scroll-margin-top: 108px;
}
@media (max-width: 1000px) {
  .shell {
    width: calc(100% - 72px);
  }
  .section_pad {
    padding-block: 84px;
  }
  .brand_header nav {
    gap: 22px;
  }
  .business_footer {
    gap: 24px;
  }
  .business_footer small {
    display: none;
  }
}
@media (max-width: 600px) {
  .shell {
    width: calc(100% - 48px);
  }
  .section_pad {
    padding-block: 64px;
  }
  body {
    font-size: 16px;
  }
  h2 {
    font-size: 32px;
  }
  .brand img {
    width: 140px;
  }
  .brand_header {
    height: 86px;
    gap: 20px;
  }
  .brand_header nav {
    gap: 16px;
    font-size: 12px;
  }
  .brand_header nav a:last-child {
    display: none;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .button {
    min-height: 58px;
    padding: 15px 19px;
    gap: 24px;
  }
  .wide_only {
    display: none;
  }
  .business_footer {
    padding-block: 30px;
    min-height: 136px;
    flex-wrap: wrap;
    gap: 18px;
  }
  .business_footer nav {
    font-size: 12px;
    gap: 22px;
    width: 100%;
    margin: 0;
  }
  .footer_brand {
    font-size: 23px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .motion_ready [data_reveal] {
    opacity: 1;
    transform: none;
  }
}
