:root {
  --ink: #111923;
  --soft-ink: #2b3740;
  --muted: #65737b;
  --paper: #e6edf2;
  --white: #ffffff;
  --mist: #cfdce4;
  --indigo: #0d1726;
  --blue: #1d4c64;
  --sage: #526d78;
  --clay: #8f5b54;
  --gold: #b79a5b;
  --line: rgba(13, 23, 38, 0.16);
  --shadow: 0 18px 48px rgba(10, 23, 39, 0.14);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 36px;
  background: rgba(230, 237, 242, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  transition: background 220ms ease, box-shadow 220ms ease, height 220ms ease;
}

.site-header.is-scrolled {
  height: 66px;
  background: rgba(230, 237, 242, 0.96);
  box-shadow: 0 8px 28px rgba(10, 23, 39, 0.11);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-mark span {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.74rem;
  line-height: 1;
  color: var(--soft-ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 0.85rem;
  color: var(--soft-ink);
}

.site-nav-static {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.62);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 1px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--indigo);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/images/hero-hotel-maika.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.015);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 12, 22, 0.90) 0%, rgba(10, 25, 39, 0.56) 44%, rgba(12, 31, 46, 0.24) 100%),
    linear-gradient(0deg, rgba(6, 12, 22, 0.76) 0%, rgba(12, 31, 46, 0.08) 58%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 72px));
  margin: 0 auto;
  padding: 132px 0 86px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  color: var(--gold);
}

.hero h1 {
  margin: 0;
  font-size: 6.8rem;
  line-height: 1;
  font-weight: 500;
}

.hero-lead {
  margin: 28px 0 0;
  font-size: 1.75rem;
  line-height: 1.5;
}

.hero-copy {
  width: min(640px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 0.9rem;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-outline {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.36);
}

.pending-link {
  cursor: not-allowed;
  opacity: 0.62;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-facts div {
  min-height: 112px;
  padding: 28px 34px;
  background: var(--paper);
}

.quick-facts span,
.channel-link span,
.status {
  display: block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  color: var(--muted);
}

.quick-facts strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 500;
}

.story-band {
  width: 100%;
  padding: 112px max(36px, calc((100% - 1280px) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(13, 23, 38, 0.96), rgba(28, 67, 85, 0.92)),
    var(--indigo);
}

.story-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 68px;
  align-items: center;
}

.story-photo,
.commitment-layout figure {
  margin: 0;
}

.story-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.story-copy {
  max-width: 560px;
}

.story-copy h2 {
  font-size: 3rem;
}

.story-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.story-copy p + p {
  margin-top: 22px;
}

.section {
  width: min(1280px, calc(100% - 72px));
  margin: 0 auto;
  padding: 96px 0;
}

.band {
  width: 100%;
  padding: 108px max(36px, calc((100% - 1280px) / 2));
  background: var(--mist);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.35;
  font-weight: 500;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
  line-height: 1.55;
  font-weight: 500;
}

p {
  margin: 0;
}

.copy-block p + p {
  margin-top: 22px;
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 64px;
  border: 1px solid var(--line);
  background: var(--line);
}

.note-grid article {
  min-height: 240px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.32);
}

.note-grid span {
  display: inline-block;
  margin-bottom: 36px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--blue);
}

.note-grid p {
  color: var(--muted);
}

.section-head {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 46px;
}

.section-head p {
  color: var(--muted);
}

.business-grid,
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(13, 23, 38, 0.16);
  border: 1px solid rgba(13, 23, 38, 0.16);
}

.business-grid article,
.quality-grid div {
  min-height: 260px;
  padding: 28px;
  background: var(--paper);
}

.business-grid span {
  display: inline-block;
  margin-bottom: 42px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--blue);
}

.journal {
  padding-top: 44px;
}

.journal-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.journal-panel p {
  min-height: 164px;
  padding: 30px;
  color: var(--soft-ink);
  background: rgba(255, 255, 255, 0.28);
}

.origin-section {
  width: 100%;
  padding: 108px max(36px, calc((100% - 1280px) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 17, 29, 0.98), rgba(28, 67, 85, 0.92)),
    var(--indigo);
}

.origin-inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  gap: 64px;
  align-items: start;
}

.origin-copy h2 {
  font-size: 2.8rem;
}

.origin-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.origin-copy p + p {
  margin-top: 22px;
}

.origin-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
}

.origin-timeline article {
  min-height: 168px;
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.08);
}

.origin-timeline span {
  display: inline-block;
  margin-bottom: 18px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--gold);
}

.origin-timeline h3 {
  color: var(--white);
}

.origin-timeline p {
  color: rgba(255, 255, 255, 0.72);
}

.commitment {
  border-top: 1px solid var(--line);
}

.commitment-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: stretch;
}

.commitment-layout figure {
  overflow: hidden;
}

.commitment-layout img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.commitment-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.commitment-list article {
  min-height: 172px;
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.30);
}

.commitment-list span {
  display: inline-block;
  margin-bottom: 18px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--blue);
}

.commitment-list p {
  color: var(--muted);
}

.business-grid p,
.quality-grid p,
.product-card p,
.wholesale-copy p,
.contact-main p,
.company-list dd {
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 54px rgba(10, 23, 39, 0.17);
}

.product-card img,
.coming-soon {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.product-card > div:not(.coming-soon) {
  padding: 34px;
}

.status {
  margin-bottom: 12px;
  color: var(--blue);
}

.status-muted {
  color: var(--clay);
}

.product-card-muted {
  background: var(--indigo);
  color: var(--white);
}

.product-card-muted p {
  color: rgba(255, 255, 255, 0.72);
}

.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(45, 83, 99, 0.94), rgba(23, 36, 59, 0.98)),
    var(--indigo);
}

.coming-soon span {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--gold);
  font-size: 0.8rem;
}

.coming-soon strong {
  margin-top: 12px;
  font-size: 2.2rem;
  font-weight: 400;
}

.wholesale {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.wholesale-photo {
  overflow: hidden;
  border-radius: 8px;
}

.wholesale-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.wholesale-copy p {
  margin-top: 22px;
}

.plain-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 0.92rem;
}

.plain-list li {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.quality {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quality-grid {
  grid-template-columns: repeat(3, 1fr);
}

.quality-grid div {
  min-height: 220px;
}

.sales {
  background: var(--paper);
}

.channel-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.channel-link {
  min-height: 132px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  transition: transform 160ms ease, background 160ms ease;
}

.channel-link:hover,
.channel-link:focus-visible {
  transform: translateY(-3px);
  background: var(--white);
}

.channel-link strong {
  display: block;
  margin-top: 24px;
  font-size: 1.15rem;
  font-weight: 500;
}

.channel-pending {
  opacity: 0.62;
}

.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding: 86px max(36px, calc((100% - 1280px) / 2));
  width: 100%;
  background: var(--mist);
}

.contact-main {
  max-width: 680px;
}

.contact-main p {
  margin-top: 22px;
}

.contact-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-menu span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(13, 23, 38, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.30);
  color: var(--soft-ink);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 0.82rem;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

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

.company-list div {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.company-list dt {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--soft-ink);
}

.company-list dd {
  margin: 0;
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 58px 28px;
  color: var(--white);
  background: var(--ink);
}

.site-footer img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.site-footer p,
.site-footer small {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.site-footer small {
  color: rgba(255, 255, 255, 0.58);
}

.footer-links {
  display: flex;
  gap: 18px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.legal-page {
  width: min(1040px, calc(100% - 72px));
  margin: 0 auto;
  padding: 156px 0 96px;
}

.legal-hero {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin: 0;
  font-size: 3.2rem;
  line-height: 1.25;
  font-weight: 500;
}

.legal-hero p {
  width: min(720px, 100%);
  margin-top: 22px;
  color: var(--muted);
}

.legal-content {
  display: grid;
  gap: 34px;
  padding-top: 52px;
}

.legal-content article {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.legal-content p,
.legal-content li {
  color: var(--soft-ink);
}

.legal-content ul {
  margin: 14px 0 0;
  padding-left: 1.2em;
}

.legal-date {
  color: var(--muted);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 68px;
    padding: 0 20px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 24px;
    background: rgba(230, 237, 242, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-nav-static {
    position: static;
    display: flex;
    gap: 18px;
    padding: 0;
    background: transparent;
    border-bottom: 0;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 86vh;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-inner {
    width: min(100% - 40px, 720px);
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: 3.7rem;
  }

  .hero-lead {
    font-size: 1.28rem;
  }

  .quick-facts,
  .split,
  .section-head,
  .story-band-inner,
  .origin-inner,
  .commitment-layout,
  .wholesale,
  .contact {
    grid-template-columns: 1fr;
  }

  .story-copy {
    max-width: none;
  }

  .origin-copy h2 {
    font-size: 2.1rem;
  }

  .commitment-layout img {
    min-height: 360px;
  }

  .business-grid,
  .product-grid,
  .quality-grid,
  .channel-row,
  .note-grid,
  .journal-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .section,
  .band,
  .contact {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .legal-page {
    width: min(100% - 40px, 720px);
    padding-top: 124px;
  }
}

@media (max-width: 680px) {
  .brand-mark img {
    width: 36px;
    height: 36px;
  }

  .brand-mark span {
    display: none;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-media {
    background-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 12, 22, 0.90) 0%, rgba(10, 25, 39, 0.62) 60%, rgba(12, 31, 46, 0.30) 100%),
      linear-gradient(0deg, rgba(6, 12, 22, 0.82) 0%, rgba(12, 31, 46, 0.10) 60%);
  }

  .hero-inner {
    width: calc(100% - 32px);
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-lead {
    font-size: 1.12rem;
  }

  .button {
    width: 100%;
  }

  .quick-facts,
  .business-grid,
  .product-grid,
  .quality-grid,
  .channel-row,
  .plain-list,
  .note-grid,
  .journal-panel {
    grid-template-columns: 1fr;
  }

  .quick-facts div {
    min-height: 94px;
    padding: 22px 22px;
  }

  .section {
    width: calc(100% - 32px);
  }

  .story-band {
    padding: 72px 16px;
  }

  .origin-section {
    padding: 74px 16px;
  }

  .story-copy h2 {
    font-size: 2rem;
  }

  .story-band-inner {
    gap: 32px;
  }

  .commitment-layout img {
    min-height: 280px;
  }

  .band,
  .contact {
    padding-left: 16px;
    padding-right: 16px;
  }

  h2 {
    font-size: 2rem;
  }

  .section-head {
    gap: 22px;
  }

  .business-grid article,
  .quality-grid div,
  .note-grid article,
  .journal-panel p {
    min-height: auto;
  }

  .company-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
