:root {
  --bg: #f6efe4;
  --bg-deep: #1f170d;
  --paper: rgba(255, 249, 240, 0.82);
  --card: #fffaf3;
  --text: #312415;
  --text-light: #f8f2e8;
  --muted: #7b6a54;
  --muted-light: rgba(255, 247, 236, 0.78);
  --line: rgba(99, 71, 32, 0.14);
  --gold: #c39134;
  --gold-deep: #9b6b1a;
  --shadow: 0 20px 60px rgba(58, 39, 11, 0.16);
  --radius-lg: 30px;
  --radius-md: 22px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbf7f0 0%, #f4ecdf 100%);
  line-height: 1.75;
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(252, 246, 237, 0.76);
  border-bottom: 1px solid rgba(99, 71, 32, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

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

.brand-logo,
.footer-logo {
  object-fit: cover;
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.95);
  border: 1px solid rgba(146, 102, 28, 0.12);
  box-shadow: 0 12px 28px rgba(182, 133, 42, 0.18);
}

.brand-logo {
  width: 56px;
  height: 56px;
}

.footer-logo {
  width: 72px;
  height: 72px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text small {
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.brand-text strong,
.hero h1,
.section h2,
.gallery-card h3,
.product-copy h3,
.feature-panel h3,
.section-title-center {
  font-family: "Noto Serif JP", serif;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(146, 102, 28, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-deep);
  transition: 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover,
.site-footer a:hover {
  color: var(--gold-deep);
}

.hero-media {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: stretch;
  padding: 0;
}

.hero-bg,
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 13, 7, 0.76) 0%, rgba(20, 13, 7, 0.42) 42%, rgba(20, 13, 7, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 84px;
  color: var(--text-light);
}

.eyebrow,
.section-label,
.mini-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-deep);
}

.light {
  color: rgba(255, 240, 212, 0.92);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.02;
  margin: 16px 0 22px;
  letter-spacing: -0.05em;
  white-space: pre-line;
}

.lead {
  max-width: 62ch;
  font-size: 1.05rem;
}

.hero-lead {
  color: rgba(255, 247, 235, 0.9);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), #d7aa54);
  color: white;
  box-shadow: 0 14px 32px rgba(182, 133, 42, 0.3);
}

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

.button.ghost {
  background: rgba(255, 250, 242, 0.14);
  border-color: rgba(255, 243, 223, 0.4);
  color: white;
}

.section {
  padding: 92px 0;
}

.split-grid,
.story-grid,
.access-grid,
.feature-layout {
  display: grid;
  gap: 30px;
}

.split-grid,
.access-grid,
.feature-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.section h2,
.section-title-center {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.22;
  white-space: pre-line;
}

.section-copy p,
.story-grid p,
.product-copy p,
.voice-card span,
.map-note p,
.card-copy p,
.quote-card p,
.feature-panel p,
address {
  color: var(--muted);
}

.media-stack {
  position: relative;
  min-height: 560px;
}

.stack-main,
.stack-sub,
.gallery-card,
.product-card,
.feature-panel,
.voice-card,
.map-note {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.stack-main {
  position: absolute;
  inset: 0 80px 0 0;
  width: calc(100% - 80px);
  height: 100%;
  object-fit: cover;
}

.stack-sub {
  position: absolute;
  right: 0;
  bottom: 28px;
  width: 42%;
  aspect-ratio: 0.8 / 1;
  object-fit: cover;
  border: 10px solid rgba(255, 249, 240, 0.96);
}

.dark-band {
  background: linear-gradient(180deg, #22180e 0%, #2a1d11 100%);
  color: var(--text-light);
}

.story-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

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

.section-head-inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.align-end {
  align-items: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-deep);
  font-weight: 700;
}

.text-link::after {
  content: "→";
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: 22px;
}

.gallery-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
}

.gallery-card img,
.product-card img,
.photo-note img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.large-card {
  min-height: 620px;
  grid-row: span 2;
}

.tall-card {
  min-height: 300px;
}

.gallery-card:not(.large-card):not(.quote-card) {
  min-height: 298px;
}

.card-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(27, 18, 8, 0.72) 100%);
  color: white;
}

.card-copy p,
.card-copy .mini-label {
  color: rgba(255, 243, 223, 0.92);
}

.quote-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 246, 225, 0.95), rgba(247, 233, 201, 0.92));
}

.products-band {
  background: linear-gradient(180deg, rgba(255, 249, 240, 0.66), rgba(246, 236, 220, 0.9));
}

.product-grid,
.cards.three-up {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  min-height: 460px;
  display: flex;
  flex-direction: column;
}

.product-card img {
  height: 290px;
}

.product-copy,
.text-card {
  padding: 24px;
}

.text-card {
  justify-content: center;
  background: linear-gradient(135deg, rgba(48, 34, 18, 0.96), rgba(85, 59, 26, 0.96));
  color: white;
}

.text-card p,
.text-card .mini-label {
  color: rgba(255, 241, 218, 0.88);
}

.feature-panel.soft,
.voice-card.luxe,
.map-note {
  background: rgba(255, 251, 244, 0.8);
  border: 1px solid var(--line);
}

.feature-panel {
  padding: 30px;
}

.feature-list {
  margin: 0;
  padding-left: 1.2rem;
}

.feature-list li + li {
  margin-top: 10px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline div {
  padding: 14px 0;
  border-bottom: 1px solid rgba(83, 58, 25, 0.12);
}

.timeline div:last-child {
  border-bottom: none;
}

.timeline span {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 700;
  color: var(--gold-deep);
}

.section-title-center {
  text-align: center;
  margin-bottom: 28px;
}

.voice-card {
  padding: 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.access-grid {
  align-items: start;
}

.map-note {
  padding: 0;
}

.photo-note img {
  min-height: 420px;
}

.map-note p {
  padding: 20px 24px 24px;
  margin: 0;
}

address {
  font-style: normal;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(83, 58, 25, 0.12);
}

.site-footer {
  padding: 28px 0 42px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(83, 58, 25, 0.12);
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 960px) {
  .split-grid,
  .story-grid,
  .gallery-grid,
  .product-grid,
  .feature-layout,
  .cards.three-up,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .large-card {
    min-height: 420px;
    grid-row: auto;
  }

  .media-stack {
    min-height: 460px;
  }

  .section-head-inline {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .nav-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-wrap {
    position: relative;
    align-items: stretch;
  }

  .menu-toggle {
    display: inline-flex;
    align-self: flex-end;
    position: absolute;
    top: 8px;
    right: 0;
  }

  .site-nav {
    display: none;
    width: 100%;
    margin-top: 18px;
    padding: 16px;
    gap: 14px;
    flex-direction: column;
    background: rgba(255, 250, 242, 0.96);
    border: 1px solid rgba(146, 102, 28, 0.12);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-content {
    padding: 104px 0 70px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .section {
    padding: 70px 0;
  }

  .stack-main {
    position: relative;
    inset: auto;
    width: 100%;
    height: 360px;
  }

  .stack-sub {
    position: relative;
    width: 72%;
    margin: -60px 0 0 auto;
    right: auto;
    bottom: auto;
  }

  .gallery-card,
  .product-card,
  .feature-panel,
  .voice-card,
  .map-note {
    border-radius: 24px;
  }

  .gallery-card:not(.quote-card),
  .product-card,
  .photo-note img {
    min-height: auto;
  }

  .product-card img {
    height: 240px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
