@import url("https://fonts.googleapis.com/css2?family=Italianno&display=swap");

:root {
  --bg: #f8f7f3;
  --surface: #fff;
  --ink: #252822;
  --muted: #6e716b;
  --line: #deddd7;
  --accent: #59634e;
  --warm: #a98462;
  --max: 1120px;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", Georgia, serif;
  --sans: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .02em;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--warm);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .6rem 1rem;
  background: #fff;
  border: 1px solid var(--ink);
}
.skip-link:focus { top: 1rem; }

.hero {
  min-height: 710px;
  position: relative;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(18,22,18,.12), rgba(18,22,18,.05) 45%, rgba(18,22,18,.36)),
    url("../images/hero.webp") center center / cover no-repeat;
}
.site-header {
  position: absolute;
  z-index: 5;
  inset: 0 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 26px clamp(24px, 4vw, 64px);
  color: #252822;
  text-shadow: 0 1px 12px rgba(255,255,255,.55);
}
.brand {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  letter-spacing: .035em;
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(16px, 2.4vw, 34px);
  font-size: .76rem;
  letter-spacing: .12em;
}
.nav a {
  padding: 5px 0;
  border-bottom: 1px solid transparent;
}
.nav a:hover { border-bottom-color: currentColor; }
.language {
  opacity: .82;
  white-space: nowrap;
}
.language [aria-current="page"] {
  font-weight: 700;
  opacity: 1;
}

.hero-copy {
  position: absolute;
  left: clamp(26px, 5vw, 78px);
  bottom: clamp(34px, 6vw, 76px);
  z-index: 3;
  text-shadow: 0 2px 24px rgba(0,0,0,.38);
}
.hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.15;
  letter-spacing: .055em;
}
.hero-copy p {
  margin: .45rem 0 0;
  font-family: var(--serif);
  font-size: .9rem;
  letter-spacing: .22em;
  text-transform: lowercase;
}

.hero-copy h1.hero-logo {
  font-family: "Italianno", "Brush Script MT", "Segoe Script", "Snell Roundhand", cursive;
  font-weight: 400;
  font-size: clamp(3.15rem, 6.5vw, 5.9rem);
  letter-spacing: .01em;
  line-height: 1.02;
}


main { background: var(--surface); }
.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0 18px;
}
.section + .section { padding-top: 76px; }
.section-title {
  margin: 0 0 38px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 500;
  letter-spacing: .3em;
}
.section-title::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  margin-top: 10px;
  background: var(--warm);
}

.news-list {
  border-top: 1px solid var(--line);
}
.news-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.news-date {
  color: var(--muted);
  font-family: var(--serif);
  letter-spacing: .08em;
}
.news-text { margin: 0; }

.release {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
  padding: clamp(24px, 4vw, 46px);
  background: linear-gradient(135deg, #f6f1e9, #fbfaf7);
}
.release-cover {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 15px 45px rgba(60,54,45,.13);
}
.release h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 500;
  letter-spacing: .08em;
}
.release-meta {
  margin: 0 0 30px;
  color: var(--muted);
}
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  display: inline-flex;
  min-width: 142px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px 17px;
  border: 1px solid var(--accent);
  background: rgba(255,255,255,.45);
  color: var(--accent);
  letter-spacing: .04em;
  transition: background .2s, color .2s;
}
.button:hover {
  background: var(--accent);
  color: #fff;
}
.button.disabled {
  opacity: .48;
  pointer-events: none;
}
.release-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.members {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: stretch;
  gap: clamp(28px, 6vw, 76px);
  text-align: center;
}
.member-divider { background: var(--line); }
.member {
  padding: 10px 0 20px;
}
.member h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 400;
  letter-spacing: .07em;
}
.member p {
  margin: .35rem 0 0;
  color: var(--muted);
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 80px;
}
.contact-label { margin: 0; }
.contact-label strong {
  font-family: var(--serif);
  font-weight: 500;
}

.site-footer {
  padding: 24px;
  color: var(--muted);
  background: #f5f2ec;
  text-align: center;
  font-size: .78rem;
  letter-spacing: .08em;
}

@media (max-width: 760px) {
  .hero {
    min-height: 620px;
    background-position: 57% center;
  }
  .site-header {
    align-items: flex-start;
    padding: 20px;
  }
  .nav {
    max-width: 58%;
    gap: 10px 16px;
    font-size: .67rem;
  }
  .brand { font-size: 1.05rem; }
  .hero-copy {
    left: 22px;
    right: 22px;
    bottom: 28px;
  }
  .hero-copy h1.hero-logo { font-size: clamp(2.6rem, 12vw, 4.4rem); }
  .section {
    width: min(100% - 34px, var(--max));
    padding-top: 62px;
  }
  .news-item {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 20px 0;
  }
  .release {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .release-cover { max-width: 420px; margin: 0 auto; }
  .button { flex: 1 1 145px; }
  .members {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .member-divider {
    width: 46px;
    height: 1px;
    margin: 0 auto;
  }
  .contact-row {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 58px;
  }
}

@media (max-width: 480px) {
  .hero-copy h1.hero-logo { font-size: clamp(2.4rem, 13vw, 4rem); }
  .hero { min-height: 560px; }
  .site-header {
    display: block;
    color: #1e221d;
  }
  .nav {
    margin-top: 12px;
    max-width: none;
    justify-content: flex-start;
  }
  .hero-copy p { font-size: .76rem; }
}
