:root {
  --black: #090806;
  --ink: #15100b;
  --espresso: #241912;
  --cream: #f5efe5;
  --paper: #fff9ef;
  --gold: #d8a95a;
  --amber: #c37a2a;
  --green: #344737;
  --green-soft: #6f7b68;
  --wine: #793237;
  --line: rgba(21, 16, 11, 0.14);
  --line-light: rgba(255, 249, 239, 0.15);
  --shadow: 0 28px 80px rgba(9, 8, 6, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.8;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

h1,
h2,
h3,
p,
dd,
li {
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.no-wrap-title {
  white-space: nowrap;
}

.keep-line {
  white-space: nowrap;
}

.hero-copy h1 {
  max-width: 760px;
  overflow-wrap: normal;
  word-break: keep-all;
  font-size: clamp(48px, 6vw, 88px);
}

.header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: var(--paper);
  background: linear-gradient(180deg, rgba(9, 8, 6, 0.78), rgba(9, 8, 6, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  white-space: nowrap;
}

.brand-dots {
  display: inline-flex;
  gap: 5px;
}

.brand-dots i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f1c775, var(--amber));
}

.header nav {
  display: flex;
  gap: clamp(14px, 2.3vw, 30px);
  font-size: 13px;
  font-weight: 800;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  color: var(--paper);
  background: var(--black);
}

.hero-copy {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding: 120px clamp(20px, 5vw, 84px) 76px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 24px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: clamp(46px, 6.8vw, 104px);
  line-height: 1;
  font-weight: 600;
}

h2 {
  margin: 0 0 18px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 1.08;
  font-weight: 600;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.38;
}

.hero-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 249, 239, 0.78);
  font-size: clamp(15px, 1.4vw, 19px);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-facts span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(216, 169, 90, 0.46);
  border-radius: 999px;
  padding: 6px 16px;
  color: var(--gold);
  background: rgba(216, 169, 90, 0.06);
  font-size: 14px;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 5px;
  padding: 10px 18px;
  color: inherit;
  font-size: 14px;
  font-weight: 900;
}

.btn.primary {
  color: var(--black);
  border-color: var(--gold);
  background: var(--gold);
}

.hero-visual {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.2), rgba(9, 8, 6, 0)),
    linear-gradient(0deg, rgba(9, 8, 6, 0.35), rgba(9, 8, 6, 0.02));
}

.hero-visual img {
  object-position: center center;
  filter: brightness(0.9) saturate(1.04);
}

.sense-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

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

.answer-strip article {
  min-height: 146px;
  padding: 28px clamp(22px, 3.2vw, 48px);
  background: var(--paper);
}

.answer-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--wine);
  font-size: 17px;
}

.answer-strip p {
  margin: 0;
  color: rgba(21, 16, 11, 0.68);
  font-size: clamp(14px, 1.05vw, 16px);
}

.sense-grid article {
  min-height: 156px;
  padding: 28px clamp(20px, 3vw, 38px);
  background: var(--paper);
}

.sense-grid span,
.bean-panel span {
  color: var(--wine);
  font-weight: 900;
}

.sense-grid strong {
  display: block;
  margin: 5px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.sense-grid p {
  margin: 0;
  color: rgba(21, 16, 11, 0.68);
  font-size: 14px;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 78px);
}

.brand-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  background: var(--cream);
}

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

.story-copy p:not(.eyebrow),
.gift-section p,
.faq p {
  color: rgba(21, 16, 11, 0.72);
}

.story-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(52, 71, 55, 0.1), rgba(195, 122, 42, 0.08)),
    var(--paper);
  box-shadow: 0 26px 70px rgba(21, 16, 11, 0.14);
}

.story-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--amber);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.story-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-card li {
  position: relative;
  padding-left: 22px;
}

.story-card li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.section-head {
  max-width: 920px;
  margin-bottom: 42px;
}

.section-head p {
  color: rgba(21, 16, 11, 0.72);
}

.beans {
  background: var(--cream);
}

.beans-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: stretch;
}

.bean-board {
  margin: 0;
  min-height: 680px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.bean-board img {
  object-position: center top;
}

.bean-panel {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.bean-panel article {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 46px);
  background: var(--paper);
}

.bean-panel p {
  margin: 0;
  color: rgba(21, 16, 11, 0.68);
}

.beans-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(216, 169, 90, 0.36);
  border-radius: 8px;
  padding: clamp(22px, 3.2vw, 38px);
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.42), rgba(9, 8, 6, 0.92)),
    url("assets/v3/shop-wide-1.jpg") center 68% / cover;
  box-shadow: 0 24px 70px rgba(21, 16, 11, 0.18);
}

.beans-banner span {
  display: grid;
  gap: 6px;
}

.beans-banner em {
  color: var(--gold);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.beans-banner strong {
  max-width: 780px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: clamp(25px, 3.2vw, 44px);
  line-height: 1.18;
  font-weight: 600;
}

.beans-banner small {
  color: rgba(255, 249, 239, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.beans-banner b {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding: 10px 18px;
  color: var(--black);
  background: var(--gold);
  font-size: 14px;
  white-space: nowrap;
}

.signature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(9, 8, 6, 0.96), rgba(52, 71, 55, 0.92)),
    var(--green);
}

.signature-copy {
  max-width: 720px;
}

.signature-copy p:not(.eyebrow),
.signature-copy li {
  color: rgba(255, 249, 239, 0.72);
}

.signature-copy ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.signature-copy li {
  position: relative;
  padding-left: 22px;
}

.signature-copy li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.photo-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.photo-stack img {
  min-height: 560px;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.photo-stack img:nth-child(2) {
  margin-top: 44px;
}

.photo-stack img:nth-child(3) {
  margin-top: 88px;
}

.signature-single {
  display: block;
  max-width: 520px;
  justify-self: center;
}

.signature-single img {
  aspect-ratio: 9 / 16;
  min-height: auto;
  max-height: 760px;
  object-position: center center;
}

.menu-depth {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(420px, 1.35fr);
  gap: clamp(28px, 6vw, 80px);
  background: var(--paper);
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.choose-grid article {
  min-height: 210px;
  padding: 28px;
  background: var(--cream);
}

.choose-grid p {
  margin: 0;
  color: rgba(21, 16, 11, 0.68);
}

.gift-section {
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  background: var(--cream);
}

.gift-section figure {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(21, 16, 11, 0.16);
}

.gift-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.gift-points span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(121, 50, 55, 0.25);
  border-radius: 999px;
  padding: 6px 14px;
  color: var(--wine);
  background: var(--paper);
  font-size: 13px;
  font-weight: 900;
}

.review-section {
  overflow: hidden;
  padding: clamp(72px, 9vw, 122px) 0;
  color: var(--paper);
  background: var(--black);
}

.review-section .section-head {
  margin-right: clamp(18px, 5vw, 78px);
  margin-left: clamp(18px, 5vw, 78px);
}

.review-section .section-head p {
  color: rgba(255, 249, 239, 0.68);
}

.review-marquee {
  margin-top: 38px;
}

.review-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: review-flow 38s linear infinite;
}

.review-card {
  width: 360px;
  min-height: 220px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 249, 239, 0.1), rgba(255, 249, 239, 0.03)),
    rgba(255, 249, 239, 0.05);
}

.review-card span {
  display: block;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0;
}

.review-card strong {
  display: block;
  margin: 10px 0;
  font-size: 19px;
}

.review-card p {
  margin: 0;
  color: rgba(255, 249, 239, 0.72);
  font-size: 14px;
}

@keyframes review-flow {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 1px;
  background: var(--black);
}

.gallery img {
  min-height: 360px;
}

.gallery img:nth-child(2),
.gallery img:nth-child(3) {
  min-height: 520px;
}

.faq {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--cream);
}

details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
}

.access {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  color: var(--paper);
  background: var(--black);
}

.access > div {
  padding: clamp(58px, 8vw, 98px) clamp(18px, 5vw, 78px);
}

.access dl {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
}

.access dl div {
  border-top: 1px solid var(--line-light);
  padding-top: 16px;
}

.access dt {
  color: var(--gold);
  font-weight: 900;
}

.access dd {
  margin: 0;
  color: rgba(255, 249, 239, 0.72);
}

.access figure {
  min-height: auto;
  margin: 0;
}

.access-collage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  min-height: 620px;
  overflow: hidden;
  padding: clamp(42px, 5vw, 72px) clamp(20px, 4vw, 58px);
  background: linear-gradient(135deg, #102016, #25362a);
}

.access-collage img {
  aspect-ratio: 9 / 16;
  height: auto;
  max-height: 620px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
}

.access-collage img:nth-child(1) {
  align-self: start;
  transform: translateY(-26px);
}

.access-collage img:nth-child(2) {
  align-self: center;
  transform: translateY(22px);
}

.access-collage img:nth-child(3) {
  align-self: end;
  transform: translateY(58px);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 4vw, 58px);
  color: rgba(255, 249, 239, 0.64);
  background: #050403;
  font-size: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .review-track {
    animation: none;
  }
}

@media (max-width: 1040px) {
  .header {
    position: absolute;
  }

  .header nav {
    display: none;
  }

  .hero,
  .answer-strip,
  .brand-story,
  .sense-grid,
  .beans-layout,
  .signature,
  .menu-depth,
  .gift-section,
  .access {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
    order: 2;
    padding-top: 46px;
  }

  .hero-visual {
    min-height: 64svh;
  }

  .photo-stack {
    grid-template-columns: 1fr 1fr;
  }

  .signature-single {
    display: block;
    max-width: 460px;
  }

  .beans-banner {
    grid-template-columns: 1fr;
  }

  .beans-banner b {
    width: fit-content;
  }

  .photo-stack img:nth-child(2),
  .photo-stack img:nth-child(3) {
    margin-top: 0;
  }

  .photo-stack img:nth-child(3) {
    grid-column: 1 / -1;
    max-height: 520px;
  }

  .gift-section figure {
    order: 2;
  }

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

  .access-collage {
    grid-template-columns: 1fr 1fr;
  }

  .access-collage img {
    max-height: none;
  }

  .access-collage img:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(30px, 8.4vw, 40px);
    line-height: 1.15;
  }

  .no-wrap-title {
    font-size: clamp(25px, 6.8vw, 34px);
  }

  .keep-line {
    font-size: 0.82em;
  }

  .hero-copy {
    padding: 42px 16px 52px;
  }

  .hero-visual {
    min-height: 58svh;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .section {
    padding: 58px 16px;
  }

  .sense-grid article {
    min-height: auto;
    padding: 22px 16px;
  }

  .answer-strip article {
    min-height: auto;
    padding: 24px 16px;
  }

  .story-card {
    padding: 22px;
  }

  .bean-board {
    min-height: 480px;
  }

  .bean-panel article,
  .choose-grid article {
    min-height: auto;
    padding: 24px 18px;
  }

  .beans-banner {
    padding: 24px 18px;
  }

  .beans-banner b {
    width: 100%;
  }

  .photo-stack,
  .choose-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gift-section figure {
    aspect-ratio: 1 / 0.86;
  }

  .photo-stack img,
  .gallery img,
  .gallery img:nth-child(2),
  .gallery img:nth-child(3) {
    min-height: 420px;
  }

  .signature-single img {
    min-height: auto;
    max-height: none;
  }

  .review-card {
    width: 300px;
  }

  .access figure {
    min-height: auto;
  }

  .access-collage {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 20px 16px 30px;
  }

  .access-collage img {
    aspect-ratio: 4 / 5;
    transform: none !important;
  }

  .footer {
    flex-direction: column;
  }
}
