:root {
  --paper: #f6f1e8;
  --warm: #ede4d7;
  --ink: #191713;
  --muted: #4f4942;
  --gold: #8b7047;
  --line: #ddd6ca;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.story-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #fff;
  color: #1d1b17;
}
.story-header__top {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(22px, 5vw, 76px);
}
.story-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #1d1b17;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: .15em;
  text-decoration: none;
  white-space: nowrap;
}
.story-brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}
.story-language {
  color: #4f4942;
  font: 400 10px/1.4 Arial, sans-serif;
  letter-spacing: .16em;
  text-decoration: none;
  white-space: nowrap;
}
.story-language strong { color: #a78546; font-weight: 600; }
.story-nav {
  width: 100%;
  overflow-x: auto;
  background: #fff;
  border-top: 1px solid #ebe6dc;
  border-bottom: 1px solid var(--line);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.story-nav::-webkit-scrollbar { display: none; }
.story-nav__inner {
  min-width: max-content;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 32px);
  padding: 0 clamp(18px, 4vw, 64px);
}
.story-nav a {
  display: inline-flex;
  align-items: center;
  height: 48px;
  color: #1d1b17;
  font: 500 10px/1.4 Arial, sans-serif;
  letter-spacing: .14em;
  text-decoration: none;
  white-space: nowrap;
}
.story-nav a:hover,
.story-nav a[aria-current="page"] { color: #8a672e; }
.story-nav a[aria-current="page"] { border-bottom: 2px solid #a78546; }

.story-hero {
  height: auto;
  overflow: visible;
  background: #111;
}
.story-hero img {
  display: block;
  width: 100%;
  height: min(78vh, 820px);
  min-height: 560px;
  object-fit: cover;
  object-position: center 42%;
}
.story-hero > .hpc-photo-place {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 4px 18px 5px;
  background: #fbfaf6;
  color: #70695f;
  text-align: right;
}
.story-wrap { width: min(1120px, 88%); margin: auto; }
.story-wrap--narrow { width: min(780px, 86%); }
.story-intro,
.story-chapter { padding: 130px 0; }
.story-intro { background: var(--paper); }
.story-chapter--warm { background: var(--warm); }
.story-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 90px;
  align-items: start;
}
.story-eyebrow {
  color: #6f542e;
  font: 600 11px/1.4 Arial, sans-serif;
  letter-spacing: .2em;
}
.story-lead-en {
  margin: 20px 0;
  color: #2d2924;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.12;
}
.story-copy h1,
.story-chapter h2,
.founders-copy h2 {
  margin: 0 0 42px;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: .04em;
}
.story-copy p,
.story-chapter p,
.founders-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 2.25;
}
.story-pullquote {
  margin-top: 55px !important;
  padding-top: 42px;
  border-top: 1px solid rgba(139,112,71,.35);
  color: #795e37 !important;
  font-size: clamp(27px, 3.5vw, 42px) !important;
  line-height: 1.45 !important;
}
.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "photo copy" "signatures copy";
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 760px;
  background: #27241f;
  color: #fff;
}
.founders-photo { grid-area: photo; min-height: 610px; }
.founders-photo > .hpc-photo-place { text-align: right; }
.founders-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}
.founders-signatures {
  grid-area: signatures;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 46px;
  padding: 22px 28px 28px;
  background: #000;
  border-top: 1px solid rgba(255,255,255,.18);
}
.founders-signature { width: min(205px, 40%); text-align: center; }
.founders-signature img { width: 100%; height: 82px; object-fit: contain; }
.founders-signature span {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 11px;
  letter-spacing: .12em;
}
.founders-copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(45px, 7vw, 110px);
}
.founders-copy h2 { color: #fff; }
.founders-copy p { color: rgba(255,255,255,.82); }
.story-closing {
  padding: 130px 0;
  background: var(--paper);
  text-align: center;
}
.story-closing h2 {
  margin: 20px 0 30px;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 400;
  line-height: 1.18;
}
.story-closing p {
  margin: 0 0 42px;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}
.story-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border: 1px solid #8b7047;
  background: #8b7047;
  color: #fff;
  font: 600 13px/1 Arial, sans-serif;
  letter-spacing: .12em;
  text-decoration: none;
}
.story-contact:hover,
.story-contact:focus-visible { background: #191713; border-color: #191713; }
.story-contact--arrow {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-width: 245px;
  color: #fff;
  background: #1d1b17;
  border: 1px solid #a78546;
  padding: 19px 30px;
  text-align: left;
}
.story-contact--arrow b {
  margin-left: 18px;
  font-size: 18px;
  font-weight: 400;
}
.story-footer {
  padding: 34px 20px;
  background: #10110f;
  color: #c5bdb3;
  text-align: center;
  font: 500 11px/1.8 Arial, sans-serif;
  letter-spacing: .12em;
}
.story-footer a { color: inherit; text-decoration: none; border-bottom: 1px solid #8b7047; }
.story-footer--home {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  padding: 60px clamp(24px, 8vw, 130px);
  background: #10110f;
  color: #c5bdb3;
  text-align: left;
  font: 500 12px/1.9 Arial, sans-serif;
  letter-spacing: .06em;
}
.story-footer--home .story-footer__links { margin: 0; }
.story-footer--home .story-footer__links > span { margin: 0 5px; }
.story-footer--home a { border-bottom: 0; }
.story-footer--home a:hover,
.story-footer--home a:focus-visible { color: #d8bd82; }
.story-footer--home .story-footer__partner {
  display: inline-block;
  margin-top: 8px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(167,133,70,.55);
}
.story-footer--home small {
  white-space: nowrap;
  font-size: 11px;
}

@media (max-width: 800px) {
  .story-footer--home {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
    padding: 48px 24px;
  }
  .story-header__top { height: 76px; gap: 10px; padding: 0 18px; }
  .story-brand { gap: 12px; font-size: 9px; }
  .story-brand img { width: 48px; height: 48px; }
  .story-language { font-size: 9px; }
  .story-nav__inner {
    width: 100%;
    min-width: 100%;
    justify-content: space-between;
    gap: 8px;
    padding: 0 12px;
    height: 46px;
  }
  .story-nav a { height: 46px; font-size: 8px; letter-spacing: .10em; }
  .story-hero img { height: 520px; min-height: 0; }
  .story-intro,
  .story-chapter,
  .story-closing { padding: 82px 0; }
  .story-grid { grid-template-columns: 1fr; gap: 45px; }
  .story-copy h1 { margin-bottom: 30px; }
  .story-copy p,
  .story-chapter p,
  .founders-copy p { font-size: 16px; line-height: 2.15; }
  .founders {
    grid-template-columns: 1fr;
    grid-template-areas: "photo" "signatures" "copy";
    grid-template-rows: auto auto auto;
    min-height: 0;
  }
  .founders-photo { min-height: 0; }
  .founders-photo img { height: auto; aspect-ratio: 4 / 3; }
  .founders-signatures { gap: 24px; padding: 20px 18px 24px; }
  .founders-signature { width: min(160px, 43%); }
  .founders-signature img { height: 72px; }
  .founders-copy { padding: 72px 7%; }
}
