:root {
  --bg: #e2d2b4;
  --ink: #2b2924;
  --muted: rgba(43, 41, 36, 0.68);
  --line: rgba(43, 41, 36, 0.32);
  --panel: rgba(255, 248, 230, 0.28);
  --panel-strong: rgba(255, 248, 230, 0.42);
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", serif;
  background: radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.18), transparent 24%), radial-gradient(circle at 88% 36%, rgba(255, 255, 255, 0.14), transparent 26%), var(--bg);
  color: var(--ink);
}

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

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(226, 210, 180, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43, 41, 36, 0.08);
}

.header__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  margin: 0;
}

.header__logo-link {
  display: block;
}

.header__logo-image {
  width: auto;
  height: 34px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__nav-link {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.03em;
  transition: opacity 0.3s;
}

.header__nav-link:hover {
  opacity: 0.62;
}

main {
  padding-top: 79px;
}

.hero {
  min-height: calc(100vh - 79px);
  position: relative;
  overflow: visible;
}

.hero__inner {
  position: relative;
}
.hero__inner::after {
  content: "";
  position: absolute;
  top: 40px;
  right: 50px;
  width: 10px;
  height: 150%;
  background: var(--ink);
  opacity: 0.2;
  z-index: 1;
  display: block;
}
.hero__inner::before {
  content: "";
  position: absolute;
  top: 90px;
  right: -43px;
  width: 7px;
  height: 7px;
  background: var(--ink);
  border-radius: 50%;
  z-index: 6;
}

.hero__eyebrow {
  margin: 0 0 22px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.hero__title {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 920px;
  font-size: clamp(56px, 9.2vw, 128px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.hero__lead {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin: 34px 0 0 46%;
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
}

.hero__actions {
  position: relative;
  z-index: 2;
  margin: 34px 0 0 46%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.button--primary {
  padding: 0 20px;
  border: 1px solid var(--ink);
  background: rgba(43, 41, 36, 0.92);
  color: var(--bg);
}

.button--text {
  border-bottom: 1px solid var(--ink);
}

.hero__lang {
  position: absolute;
  top: 78px;
  right: 28px;
  z-index: 3;
  display: flex;
  gap: 8px;
  font-size: 13px;
}

.hero__lang-link,
.hero__lang-divider {
  opacity: 0.68;
}

.hero__lang-link.is-active {
  opacity: 1;
  border-bottom: 1px solid var(--ink);
}

.hero__side {
  position: absolute;
  top: 80px;
  bottom: 80px;
  right: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: rgba(255, 0, 0, 0.2);
}

.hero__side::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: calc(100% - 60px);
  background: var(--ink);
  opacity: 0.4;
}

.hero__image {
  position: absolute;
  left: 24px;
  bottom: 86px;
  width: min(42vw, 430px);
  opacity: 0.24;
  pointer-events: none;
  transform: rotate(-4deg);
}

.section {
  position: relative;
  padding: 132px 28px;
  border-bottom: 1px solid var(--line);
}

.section__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.section__inner--two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 72px;
  align-items: start;
}

.section__inner--narrow {
  max-width: 820px;
}

.section__heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 56px;
}

.section__kicker {
  margin: 0 0 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.section__title {
  margin: 0;
  font-size: clamp(76px, 15vw, 168px);
  line-height: 0.78;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.section__text {
  max-width: 650px;
  font-size: 16px;
  line-height: 1.95;
  color: var(--muted);
}

.editorial-card {
  position: relative;
  margin-top: 18px;
  padding: 34px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  border: 1px solid var(--ink);
  background: var(--panel);
}

.dropcap {
  margin: 0;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  font-size: 36px;
  line-height: 1;
}

.editorial-card__title {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.55;
}

.editorial-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card__number {
  font-size: 13px;
  color: var(--muted);
}

.service-card__title {
  margin: 64px 0 18px;
  font-size: 28px;
  line-height: 1.25;
}

.service-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
}

.timeline {
  border-left: 1px solid var(--ink);
}

.timeline__item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  padding: 0 0 36px 28px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

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

.timeline h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.timeline p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

.contact-link {
  display: inline-block;
  margin-top: 20px;
  font-size: clamp(28px, 5vw, 58px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.04em;
  border-bottom: 2px solid var(--ink);
}

.footer {
  padding: 42px 28px;
}

.footer__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__brand {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.footer__nav {
  display: flex;
  gap: 24px;
  font-size: 13px;
}

@media screen and (max-width: 900px) {
  .hero__lead,
  .hero__actions {
    margin-left: 0;
  }
  .section__inner--two-column,
  .service-grid {
    grid-template-columns: 1fr;
  }
  .section__heading-row {
    display: block;
  }
  .section__kicker {
    writing-mode: horizontal-tb;
  }
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 17px 16px;
  }
  .header__logo-image {
    height: 27px;
  }
  .header__nav {
    gap: 14px;
  }
  .header__nav-link {
    font-size: 11px;
  }
  main {
    padding-top: 62px;
  }
  .hero__inner {
    min-height: calc(100vh - 62px);
    padding: 58px 16px 92px;
  }
  .hero__title {
    font-size: clamp(48px, 17vw, 76px);
  }
  .hero__lead,
  .hero__actions {
    margin-top: 28px;
  }
  .hero__lead {
    font-size: 14px;
  }
  .hero__lang {
    top: 22px;
    right: 16px;
  }
  .hero__side {
    right: 16px;
    bottom: 48px;
    padding-bottom: 72px;
  }
  .hero__side::after {
    height: 56px;
  }
  .hero__image {
    left: auto;
    right: -48px;
    bottom: 84px;
    width: 260px;
    opacity: 0.2;
  }
  .section {
    padding: 92px 16px;
  }
  .section__title {
    font-size: clamp(62px, 22vw, 98px);
  }
  .editorial-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .service-card {
    min-height: 240px;
  }
  .timeline__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .contact-link {
    font-size: clamp(26px, 9vw, 44px);
  }
  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */