:root {
  --wine: #291010;
  --wine-deep: #1d0909;
  --wine-muted: rgba(41, 16, 16, 0.62);
  --wine-soft: rgba(41, 16, 16, 0.2);
  --ivory: #fffdf8;
  --parchment: #faf6ed;
  --paper: #ffffff;
  --gold: #cdb48a;
  --line: rgba(41, 16, 16, 0.2);
  --font-display: "Cormorant Garamond", "Times New Roman", "Noto Serif", serif;
  --font-jp: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  --font-ui: Inter, "Noto Sans JP", system-ui, sans-serif;
  --container: min(1240px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--wine);
  background: var(--ivory);
  font-family: var(--font-jp);
  line-height: 1.9;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

p,
h1,
h2,
h3,
dl,
dd,
figure {
  margin: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  background: rgba(255, 253, 248, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: var(--container);
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand-word {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 132px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.brand-word img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.global-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
  font-family: var(--font-display);
  font-size: 0.92rem;
}

.global-nav a,
.footer-nav a {
  color: var(--wine);
  text-underline-offset: 0.35em;
}

.global-nav a:hover,
.footer-nav a:hover {
  text-decoration: underline;
}

.header-cta,
.arrow-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 22px;
  border: 1px solid var(--wine);
  background: var(--wine);
  color: var(--ivory);
  font-family: var(--font-jp);
  font-size: 0.9rem;
  line-height: 1;
}

.arrow-link.outline {
  background: transparent;
  color: var(--wine);
}

.arrow-link.light {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(255, 253, 248, 0.48);
}

.mobile-menu {
  display: none;
}

.hero-section {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  padding: 88px 0 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.9), rgba(255, 253, 248, 0.68)),
    url("top-bg.png") center / cover;
}

.hero-copy {
  padding: clamp(72px, 12vw, 170px) clamp(32px, 5vw, 84px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: 88px -120px 0 auto;
  width: 220px;
  background: linear-gradient(90deg, rgba(255, 253, 248, 0), var(--ivory) 50%, rgba(255, 253, 248, 0));
  pointer-events: none;
}

.eyebrow,
.section-label,
.business-card strong,
.store-info p,
.store-meta dt {
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.hero-copy h1 {
  margin: 26px 0 26px;
  font-family: var(--font-jp);
  font-size: clamp(3.8rem, 7vw, 7.6rem);
  font-weight: 400;
  line-height: 1.18;
}

.hero-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--wine-muted);
  font-size: clamp(0.96rem, 1.2vw, 1.05rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.hero-image {
  min-height: calc(100svh - 88px);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section {
  padding: clamp(88px, 10vw, 152px) 0;
  background: var(--ivory);
}

.section-dark {
  background: linear-gradient(135deg, var(--wine), var(--wine-deep));
  color: var(--ivory);
}

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

.section-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  margin-bottom: clamp(42px, 7vw, 88px);
}

.section-heading h2 {
  font-family: var(--font-jp);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  font-weight: 400;
  line-height: 1.35;
}

.section-heading > p:last-child {
  color: var(--wine-muted);
  font-size: 0.98rem;
}

.section-dark .section-heading > p:last-child {
  color: rgba(255, 253, 248, 0.72);
}

.section-label::after,
.eyebrow::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  margin-top: 12px;
  background: currentColor;
  opacity: 0.48;
}

.message-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) 1fr;
  gap: clamp(36px, 8vw, 120px);
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.message-statement {
  font-size: clamp(1.8rem, 3.2vw, 3.4rem);
  line-height: 1.7;
}

.message-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  color: var(--wine-muted);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: 48px;
}

.philosophy-copy {
  display: grid;
  gap: 34px;
}

.philosophy-item {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.philosophy-item p {
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.1;
}

.philosophy-item h3 {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.6;
}

.philosophy-item span {
  grid-column: 2;
  color: var(--wine-muted);
}

.value-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-left: 188px;
}

.value-row span {
  min-width: 86px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  font-family: var(--font-display);
  text-align: center;
}

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

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 48px);
}

.business-card {
  display: grid;
  gap: 20px;
  padding-left: clamp(18px, 2vw, 28px);
  border-left: 1px solid var(--line);
}

.business-card-head {
  display: flex;
  gap: 18px;
  align-items: baseline;
}

.business-card-head span {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  line-height: 1;
}

.business-card h3 {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
}

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

.business-card p {
  color: var(--wine-muted);
  font-size: 0.94rem;
}

.business-card strong {
  width: fit-content;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  font-weight: 400;
  color: var(--wine-muted);
}

.store-list {
  display: grid;
}

.store-row {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(220px, 0.82fr) minmax(300px, 1fr) auto;
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid rgba(255, 253, 248, 0.22);
}

.store-row:last-child {
  border-bottom: 1px solid rgba(255, 253, 248, 0.22);
}

.store-logo-box {
  min-height: 132px;
  display: grid;
  place-items: center;
  background: var(--ivory);
  padding: 24px;
}

.store-logo-box img {
  max-height: 86px;
  object-fit: contain;
}

.store-info {
  display: grid;
  gap: 12px;
}

.store-info p,
.store-meta dt {
  color: rgba(255, 253, 248, 0.62);
}

.store-info h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1;
}

.store-info span,
.store-meta dd {
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.9rem;
}

.store-meta {
  display: grid;
  gap: 10px;
}

.store-meta div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 16px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.2);
  padding-bottom: 8px;
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 96px);
}

.company-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.company-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.company-copy p {
  color: var(--wine-muted);
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  font-size: 0.95rem;
}

.company-table th,
.company-table td {
  border-top: 1px solid var(--line);
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: 1px solid var(--line);
}

.company-table th {
  width: 150px;
  font-weight: 500;
  color: var(--wine-muted);
}

.next-action {
  margin-top: clamp(52px, 7vw, 90px);
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  background: var(--wine);
  color: var(--ivory);
}

.next-action h3 {
  margin-bottom: 12px;
  font-family: var(--font-jp);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.45;
}

.next-action p:not(.section-label) {
  color: rgba(255, 253, 248, 0.74);
}

.next-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer {
  padding: 52px 0 30px;
  background: linear-gradient(135deg, var(--wine), var(--wine-deep));
  color: var(--ivory);
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 253, 248, 0.24);
  padding-bottom: 32px;
}

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

.footer-logo {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.62);
}

.footer-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
}

.footer-brand p,
.copyright {
  color: rgba(255, 253, 248, 0.7);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 22px;
  font-family: var(--font-display);
  font-size: 0.92rem;
}

.footer-nav a {
  color: var(--ivory);
}

.copyright {
  width: var(--container);
  margin: 24px auto 0;
  text-align: right;
  font-family: var(--font-ui);
  font-size: 0.78rem;
}

@media (max-width: 980px) {
  :root {
    --container: min(100vw - 40px, 760px);
  }

  .header-inner {
    min-height: 78px;
  }

  .global-nav,
  .header-cta {
    display: none;
  }

  .brand-word {
    margin-right: auto;
  }

  .mobile-menu {
    display: block;
    position: relative;
  }

  .mobile-menu summary {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    list-style: none;
    cursor: pointer;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 30px;
    height: 1px;
    background: var(--wine);
  }

  .mobile-menu summary em {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-style: normal;
  }

  .mobile-menu nav {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    min-width: 250px;
    display: grid;
    gap: 2px;
    padding: 18px;
    background: var(--ivory);
    border: 1px solid var(--line);
    box-shadow: 0 22px 60px rgba(41, 16, 16, 0.16);
  }

  .mobile-menu nav a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
  }

  .hero-section {
    display: flex;
    flex-direction: column-reverse;
    min-height: auto;
    padding-top: 78px;
  }

  .hero-image {
    min-height: 0;
  }

  .hero-image img {
    height: 48svh;
    min-height: 360px;
  }

  .hero-copy {
    padding: 48px var(--container);
  }

  .hero-copy::after {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 13vw, 5.4rem);
  }

  .section-heading,
  .message-grid,
  .philosophy-grid,
  .company-grid,
  .next-action {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 18px;
  }

  .message-body {
    grid-template-columns: 1fr;
  }

  .business-grid {
    grid-template-columns: 1fr;
  }

  .business-card {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
    align-items: start;
  }

  .business-card-head,
  .business-card p,
  .business-card strong {
    grid-column: 2;
  }

  .business-card img {
    grid-column: 1;
    grid-row: 1 / span 4;
    height: 100%;
  }

  .store-row {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  }

  .store-meta,
  .store-row .arrow-link {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 32px, 390px);
  }

  .brand-word span {
    display: none;
  }

  .hero-copy {
    padding: 38px 26px 54px;
  }

  .hero-actions,
  .next-links {
    display: grid;
  }

  .arrow-link {
    width: 100%;
  }

  .section {
    padding: 70px 0;
  }

  .section-inner,
  .footer-inner,
  .copyright {
    width: var(--container);
  }

  .section-heading h2,
  .message-statement {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
  }

  .philosophy-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .philosophy-item span {
    grid-column: 1;
  }

  .value-row {
    padding-left: 0;
  }

  .business-card {
    grid-template-columns: 1fr;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 28px;
  }

  .business-card-head,
  .business-card p,
  .business-card strong,
  .business-card img {
    grid-column: 1;
  }

  .business-card img {
    grid-row: auto;
  }

  .store-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .store-meta,
  .store-row .arrow-link {
    grid-column: 1;
  }

  .store-meta div {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 12px 0;
  }

  .company-table td {
    border-top: 0;
    padding-top: 0;
  }

  .footer-inner {
    display: grid;
    justify-items: start;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .copyright {
    text-align: left;
  }
}
