:root {
  --ink: #1a2018;
  --forest: #2c3a28;
  --leaf: #4a5c3a;
  --berry: #7a2f45;
  --milk: #f3f0eb;
  --paper: #faf8f5;
  --line: rgba(26, 32, 24, 0.12);
  --shadow: 0 18px 40px rgba(26, 32, 24, 0.18);
  --font-display: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --font-body: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(122, 47, 69, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(74, 92, 58, 0.1), transparent 50%),
    var(--paper);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.inner--narrow {
  width: min(640px, calc(100% - 2.5rem));
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  background: rgba(26, 32, 24, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
  color: #fff;
}

.nav__logo {
  width: clamp(108px, 18vw, 148px);
  height: auto;
  /* 黒ロゴ → 暗いヘッダー上で白表示 */
  filter: invert(1);
}

.nav__brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.25rem;
}

.nav__list a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.nav__list a:hover {
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: end stretch;
  color: #fff;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s var(--ease), transform 8s linear;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 32, 24, 0.35) 0%, rgba(26, 32, 24, 0.55) 45%, rgba(26, 32, 24, 0.82) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto 10vh;
  padding-top: 5rem;
  animation: rise 1s var(--ease) both;
}

.hero__brand {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
}

.hero__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  opacity: 0.92;
  max-width: 28em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.65rem 1.4rem;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--berry);
  color: #fff;
  border-color: var(--berry);
}

.btn--primary:hover {
  background: #63253a;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* About — editorial story with room after the hero */
.about {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(ellipse 55% 32% at 5% 48%, rgba(122, 47, 69, 0.07), transparent 72%),
    linear-gradient(180deg, #f7f2e9 0%, #f3ede3 58%, #eee7dc 100%);
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(58, 49, 39, 0.025) 0,
    rgba(58, 49, 39, 0.025) 1px,
    transparent 1px,
    transparent 4px
  );
}

.about__inner {
  position: relative;
  padding: clamp(6rem, 11vw, 8.5rem) 0 clamp(5rem, 9vw, 7rem);
}

.about__header {
  max-width: 48rem;
  margin: 0 auto clamp(4rem, 7vw, 5.75rem);
  text-align: center;
}

.about__header::after {
  content: "";
  display: block;
  width: 1px;
  height: 4.25rem;
  margin: 2.5rem auto 0;
  background: linear-gradient(180deg, var(--berry), transparent);
}

.about__eyebrow {
  margin: 0 0 1.15rem;
  color: var(--berry);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.about__title {
  margin: 0 0 1.25rem;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.55;
}

.about__lead {
  margin: 0;
  color: rgba(44, 58, 40, 0.7);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 0.16em;
}

.about__origin {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(18rem, 0.82fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6.5rem);
  margin-bottom: clamp(5.5rem, 10vw, 8rem);
}

.about__landscape {
  position: relative;
  margin: 0;
}

.about__landscape::before {
  content: "";
  position: absolute;
  top: -1.25rem;
  left: -1.25rem;
  width: 38%;
  height: 44%;
  border-top: 1px solid rgba(122, 47, 69, 0.45);
  border-left: 1px solid rgba(122, 47, 69, 0.45);
}

.about__landscape-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 7 / 5;
  background: #d2cabd;
  box-shadow: 0 25px 55px rgba(51, 43, 32, 0.14);
}

.about__landscape-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(91, 59, 35, 0.12), transparent 48%);
  mix-blend-mode: multiply;
}

.about__landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.1) saturate(0.82) contrast(0.94);
}

.about__landscape figcaption {
  margin-top: 0.75rem;
  color: rgba(44, 58, 40, 0.48);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
}

.about__story {
  padding-top: 1rem;
}

.about__story-kicker {
  margin: 0 0 2rem;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  letter-spacing: 0.09em;
  line-height: 1.8;
}

.about__story p:not(.about__story-kicker) {
  margin: 0 0 1.45rem;
  color: rgba(26, 32, 24, 0.73);
  font-size: 0.98rem;
  letter-spacing: 0.035em;
  line-height: 2.1;
}

.about__story p:last-child {
  margin-bottom: 0;
}

.about__craft {
  display: grid;
  grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(3.5rem, 8vw, 7.5rem);
}

.about__craft-copy {
  position: relative;
  z-index: 2;
}

.about__craft-number {
  margin: 0 0 1.25rem;
  color: var(--berry);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
}

.about__craft-copy h3 {
  margin: 0 0 1.8rem;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.about__craft-copy > p:last-child {
  margin: 0;
  color: rgba(26, 32, 24, 0.72);
  letter-spacing: 0.035em;
  line-height: 2.05;
}

.about__craft-images {
  position: relative;
  min-height: clamp(29rem, 52vw, 39rem);
}

.about__craft-shot {
  position: absolute;
  margin: 0;
}

.about__craft-shot img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: sepia(0.08) saturate(0.82) contrast(0.96);
  box-shadow: 0 22px 48px rgba(51, 43, 32, 0.15);
  transition: transform 0.7s var(--ease);
}

.about__craft-shot:hover img {
  transform: scale(1.025);
}

.about__craft-shot figcaption {
  margin-top: 0.7rem;
  color: rgba(26, 32, 24, 0.58);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.about__craft-shot--fruit {
  top: 0;
  left: 0;
  width: 61%;
}

.about__craft-shot--beans {
  right: 0;
  bottom: 0;
  width: 53%;
}

.about__closing {
  margin: clamp(5rem, 9vw, 7rem) auto 0;
  max-width: 38rem;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  letter-spacing: 0.1em;
  line-height: 2.15;
  text-align: center;
}

/* Brand story */
.brand-story {
  color: var(--ink);
  background: #f7f5f0;
}

.brand-story__intro {
  padding: clamp(6rem, 11vw, 9rem) 0 clamp(4.5rem, 8vw, 6.5rem);
  background:
    radial-gradient(circle at 12% 18%, rgba(122, 47, 69, 0.08), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(74, 92, 58, 0.1), transparent 30%),
    #f7f5f0;
}

.brand-story__header {
  display: grid;
  grid-template-columns: minmax(17rem, 0.85fr) minmax(0, 1.15fr);
  grid-template-rows: auto auto 1fr;
  gap: 1.25rem clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  margin-bottom: clamp(4rem, 8vw, 6rem);
}

.brand-story__eyebrow {
  margin: 0;
  align-self: end;
  color: var(--berry);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
}

.brand-story__header h2 {
  grid-column: 1;
  margin: 0;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 3.1rem);
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1.5;
}

.brand-story__header h2 span {
  display: block;
  white-space: nowrap;
}

.brand-story__lead {
  grid-column: 1;
  align-self: start;
  max-width: 31rem;
  margin: 0.75rem 0 0;
  color: rgba(26, 32, 24, 0.82);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.55vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 2;
}

.brand-story__main-visual {
  grid-column: 2;
  grid-row: 1 / 4;
  position: relative;
  min-height: clamp(31rem, 47vw, 39rem);
  margin: 0;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #344530;
}

.brand-story__main-visual img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.brand-story__main-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(21, 30, 20, 0.05) 0%,
    rgba(21, 30, 20, 0.12) 50%,
    rgba(21, 30, 20, 0.55) 100%
  );
}

.brand-story__main-copy {
  position: absolute;
  left: 0.75rem;
  bottom: 0.5rem;
  z-index: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 6rem);
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: left;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.brand-values-section__header {
  margin-bottom: 1.75rem;
}

.brand-values-section__header p {
  margin: 0 0 0.55rem;
  color: var(--berry);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
}

.brand-values-section__header h3 {
  margin: 0;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.brand-values {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-values li {
  position: relative;
  min-height: 17rem;
  padding: 2rem clamp(1.5rem, 3vw, 2.5rem);
}

.brand-values li + li {
  border-left: 1px solid var(--line);
}

.brand-values__number {
  display: block;
  margin-bottom: 3.5rem;
  color: var(--berry);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}

.brand-values p {
  margin: 0;
  color: rgba(26, 32, 24, 0.74);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.95;
}

/* Brand story preview carousel */
.story-preview {
  --story-card-width: min(1120px, calc(100vw - 2.5rem));
  --story-carousel-width: min(1500px, calc(100vw - 1rem));
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  overflow: hidden;
  color: var(--milk);
  background:
    radial-gradient(circle at 8% 18%, rgba(122, 47, 69, 0.26), transparent 28%),
    linear-gradient(145deg, #273023, #182017);
}

.story-preview__header {
  margin-bottom: 2.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
}

.story-preview__eyebrow {
  margin: 0 0 0.5rem;
  color: #e8b7c4;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
}

.story-preview__header h3 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.3vw, 2.7rem);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.story-preview__header > div:first-child > p:last-child {
  max-width: 42rem;
  margin: 0;
  color: rgba(243, 240, 235, 0.72);
  font-weight: 500;
  letter-spacing: 0.025em;
}

.story-preview__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.story-preview__cta {
  white-space: nowrap;
}

.story-carousel__controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.story-carousel__button {
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  font: inherit;
  font-size: 1.1rem;
  background: transparent;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

.story-carousel__button:hover {
  color: var(--forest);
  background: #fff;
}

.story-carousel__counter {
  min-width: 4.4rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-align: center;
}

.story-carousel__counter span {
  color: #fff;
}

.story-carousel-shell {
  position: relative;
  width: var(--story-carousel-width);
  margin-left: 50%;
  transform: translateX(-50%);
}

.story-carousel-shell::before,
.story-carousel-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: max(5.5rem, calc((var(--story-carousel-width) - var(--story-card-width)) / 2 + 2rem));
  z-index: 2;
  pointer-events: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.story-carousel-shell::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(24, 32, 23, 0.88) 0%,
    rgba(24, 32, 23, 0.45) 48%,
    rgba(24, 32, 23, 0) 100%
  );
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 35%, transparent 100%);
  mask-image: linear-gradient(to right, #000 0%, #000 35%, transparent 100%);
}

.story-carousel-shell::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(24, 32, 23, 0.88) 0%,
    rgba(24, 32, 23, 0.45) 48%,
    rgba(24, 32, 23, 0) 100%
  );
  -webkit-mask-image: linear-gradient(to left, #000 0%, #000 35%, transparent 100%);
  mask-image: linear-gradient(to left, #000 0%, #000 35%, transparent 100%);
}

.story-carousel {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}

.story-carousel::-webkit-scrollbar {
  display: none;
}

.story-carousel__track {
  display: flex;
  gap: 1.5rem;
  padding-inline: max(0px, calc((var(--story-carousel-width) - var(--story-card-width)) / 2));
}

.story-card {
  flex: 0 0 var(--story-card-width);
  min-height: 30rem;
  display: grid;
  grid-template-columns: minmax(16rem, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  scroll-snap-align: center;
  color: var(--ink);
  background: #f7f5f0;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.story-card__visual {
  position: relative;
  min-height: 30rem;
  margin: 0;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}

.story-card__visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -20%;
  right: -14%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 0 0 4rem rgba(255, 255, 255, 0.04),
    0 0 0 9rem rgba(255, 255, 255, 0.025);
}

.story-card__visual span {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
}

.story-card__visual figcaption {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.story-card__content {
  padding: clamp(2rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-card__number {
  margin: 0 0 0.8rem;
  color: var(--berry);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
}

.story-card__content h4 {
  margin: 0 0 1.25rem;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.45;
}

.story-card__summary {
  margin: 0 0 1.25rem;
  padding-left: 1rem;
  border-left: 2px solid var(--berry);
  color: rgba(26, 32, 24, 0.78);
  font-weight: 700;
  line-height: 1.85;
}

.story-card__excerpt {
  margin: 0 0 1.75rem;
  color: rgba(26, 32, 24, 0.7);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.9;
}

.story-card__link {
  width: fit-content;
  color: var(--berry);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.story-card__link span {
  display: inline-block;
  margin-left: 0.45rem;
  transition: transform 0.25s ease;
}

.story-card__link:hover span {
  transform: translateX(0.3rem);
}

.story-carousel__dots {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.65rem;
}

.story-carousel__dots button {
  width: 2.4rem;
  height: 0.2rem;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.25s ease;
}

.story-carousel__dots button.is-active {
  background: #fff;
}

.story-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.story-toc {
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: #f7f5f0;
}

.story-toc__label {
  margin: 0 0 1.1rem;
  color: var(--berry);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.story-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc;
}

.story-toc li {
  counter-increment: toc;
  border-bottom: 1px solid var(--line);
}

.story-toc li:first-child {
  border-top: 1px solid var(--line);
}

.story-toc a {
  display: flex;
  gap: 1.1rem;
  align-items: baseline;
  padding: 0.8rem 0.25rem;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.25s ease;
}

.story-toc a::before {
  content: counter(toc, decimal-leading-zero);
  flex-shrink: 0;
  color: var(--berry);
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
}

.story-toc a:hover {
  color: var(--berry);
}

.story-index a {
  min-height: 6.5rem;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(26, 32, 24, 0.14);
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.story-index a:hover {
  color: #fff;
  background: var(--forest);
  transform: translateY(-3px);
}

.story-index span {
  color: var(--berry);
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
}

.story-index a:hover span {
  color: #e8b7c4;
}

.story-chapter {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  scroll-margin-top: 5rem;
  background: #fff;
}

.story-chapter--tint {
  background: #edf0e9;
}

.story-chapter--dark {
  color: var(--milk);
  background:
    radial-gradient(circle at 12% 18%, rgba(122, 47, 69, 0.24), transparent 30%),
    linear-gradient(145deg, #273023, #182017);
}

.story-chapter__grid {
  display: grid;
  grid-template-columns: minmax(15rem, 0.75fr) minmax(0, 1.25fr);
  grid-template-areas:
    "heading visual"
    "body body";
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: center;
}

.story-chapter__grid--reverse {
  grid-template-columns: minmax(0, 1.25fr) minmax(15rem, 0.75fr);
  grid-template-areas:
    "visual heading"
    "body body";
}

.story-chapter__heading {
  grid-area: heading;
}

.story-chapter__number {
  margin: 0 0 1.25rem;
  color: var(--berry);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.story-chapter__heading h2,
.story-chapter__heading h3 {
  margin: 0 0 1.2rem;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.5;
}

.story-chapter__summary {
  margin: 0;
  padding-left: 1.2rem;
  border-left: 2px solid var(--berry);
  color: rgba(26, 32, 24, 0.68);
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.9;
}

.story-visual {
  grid-area: visual;
  position: relative;
  min-height: clamp(21rem, 42vw, 33rem);
  margin: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
  color: rgba(255, 255, 255, 0.9);
  background: #5c6554;
}

.story-visual::before,
.story-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
}

.story-visual::before {
  top: -18%;
  right: -16%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    0 0 0 3rem rgba(255, 255, 255, 0.045),
    0 0 0 7rem rgba(255, 255, 255, 0.025);
}

.story-visual::after {
  left: -8%;
  bottom: -20%;
  width: 48%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.08);
}

.story-visual--origin {
  background: linear-gradient(145deg, #7b8f91, #455b62 55%, #2e4148);
}

.story-visual--cup {
  background: linear-gradient(145deg, #d9b26a, #a8763f 55%, #6e4a26);
}

.story-visual--arrow {
  background: linear-gradient(145deg, #c98a52, #8f5a32 55%, #5c3820);
}

.story-visual--pr {
  background: linear-gradient(145deg, #8fa06a, #5c6f42 55%, #38452a);
}

.story-visual--turning {
  background: linear-gradient(145deg, #5f83a3, #375a76 55%, #203d52);
}

.story-visual--legal {
  background: linear-gradient(145deg, #7c8797, #4f5866 55%, #2f3540);
}

.story-visual--peak {
  background: linear-gradient(145deg, #c9a24a, #96772f 55%, #5e491c);
}

.story-visual--crisis {
  background: linear-gradient(145deg, #6e3b3f, #3f2023 55%, #1c0f11);
}

.story-visual--handover {
  background: linear-gradient(145deg, #f0b26a, #d98a5a 55%, #9c5a3f);
}

.story-visual__label {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
}

.story-visual figcaption {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 0.09em;
}

.story-chapter__body {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

.story-chapter__body p {
  margin: 0 0 1.6rem;
  color: rgba(26, 32, 24, 0.75);
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 2.05;
}

.story-chapter__body p:last-child {
  margin-bottom: 0;
}

.story-chapter--dark .story-chapter__number {
  color: #e8b7c4;
}

.story-chapter--dark .story-chapter__heading h2,
.story-chapter--dark .story-chapter__heading h3 {
  color: #fff;
}

.story-chapter--dark .story-chapter__summary {
  border-color: #e8b7c4;
  color: rgba(243, 240, 235, 0.72);
}

.story-chapter--dark .story-chapter__body p {
  color: rgba(243, 240, 235, 0.78);
}

.story-chapter--dawn {
  background: linear-gradient(165deg, #fbead4 0%, #f4d9ad 55%, #eccb92 100%);
}

/* Long-form brand story page */
.story-page {
  background: #f7f5f0;
}

.story-page__hero {
  padding: clamp(9rem, 16vw, 13rem) 0 clamp(5rem, 10vw, 8rem);
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at 10% 82%, rgba(122, 47, 69, 0.28), transparent 30%),
    linear-gradient(145deg, #485a42, #263322 62%, #182017);
}

.story-page__eyebrow {
  margin: 0 0 1rem;
  color: #e8b7c4;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
}

.story-page__hero h1 {
  max-width: 12em;
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 6vw, 5rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.45;
}

.story-page__lead {
  max-width: 42rem;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 2;
}

.story-page__back {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.story-page__index {
  position: sticky;
  top: 4rem;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 240, 0.94);
  backdrop-filter: blur(10px);
}

.story-page__index .inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.story-page__index a {
  padding: 1.2rem 1rem;
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.story-page__index a + a {
  border-left: 1px solid var(--line);
}

.story-page__index span {
  color: var(--berry);
  font-family: var(--font-body);
  font-size: 0.62rem;
}

/* Sections */
.section {
  padding: clamp(4.5rem, 10vw, 7rem) 0;
}

.section__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--berry);
}

.section__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: 0.12em;
  color: var(--forest);
}

.section__lead {
  margin: 0 0 2.5rem;
  max-width: 36em;
  color: rgba(26, 32, 24, 0.78);
}

.products .section__lead {
  font-size: 0.92rem; /* 商品紹介文と同じ */
  font-weight: 700;
  color: rgba(26, 32, 24, 0.78);
}

/* Products */
.products {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.55) 18%, rgba(255, 255, 255, 0.7));
  overflow: visible;
}

.products .inner {
  overflow: visible;
}

.product-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem 1.75rem;
  overflow: visible;
}

.product {
  padding: 0 0 1.25rem;
  border-bottom: none;
  animation: rise 0.8s var(--ease) both;
  overflow: visible;
}

.product:nth-child(odd) { animation-delay: 0.05s; }
.product:nth-child(even) { animation-delay: 0.12s; }

.product__visual {
  position: relative;
  margin: 0 0 1.1rem;
}

.product__bg {
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #8eb2cc;
  border-radius: 14px;
}

.product__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1);
  transition: transform 0.55s ease;
  will-change: transform;
}

.product__bg:hover img {
  transform: scale(1.04);
}

.product__name-en {
  position: absolute;
  left: 1.1rem;
  bottom: 0.85rem;
  z-index: 1;
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0;
  line-height: 1.3;
  color: #fff;
  text-shadow: none;
  pointer-events: none;
}

.product__tag {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--leaf);
}

.product__name {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--forest);
}

.product__body {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(26, 32, 24, 0.78);
}

/* Order — 余白はFigma準拠（上112 / 下140、見出し下〜ノート箱まで56） */
.order {
  padding-top: 7rem; /* 112px — Figma */
  padding-bottom: 8.75rem; /* 140px — Figma */
  background: #faf8f5;
}

.order .section__eyebrow {
  text-transform: none; /* Figmaは "Order" */
  margin-bottom: 1rem; /* eyebrow→title 16px */
}

.order .section__title {
  margin-bottom: 3.5rem; /* title下〜グレー箱上 = 16 + 40 = 56px */
}

.order__note {
  margin: 0;
  padding: 1.25rem 1.4rem;
  background: rgba(44, 58, 40, 0.06);
  border-left: 3px solid var(--berry);
  font-size: 0.92rem;
  font-weight: 500;
}

.order__note a {
  color: var(--berry);
  font-weight: 500;
}

/* Contact */
.contact {
  background:
    linear-gradient(160deg, var(--forest), #1f291d 60%, #2a1c22);
  color: var(--milk);
}

.contact .section__eyebrow {
  color: #e8b7c4;
}

.contact .section__title {
  color: #fff;
}

.contact .section__lead {
  color: rgba(243, 240, 235, 0.82);
}

.form {
  display: grid;
  gap: 1.1rem;
}

.form__row {
  display: grid;
  gap: 0.4rem;
}

.form__row label {
  font-size: 0.86rem;
  letter-spacing: 0.06em;
}

.req {
  margin-left: 0.35rem;
  padding: 0.05rem 0.4rem;
  border: 1px solid rgba(232, 183, 196, 0.55);
  color: #e8b7c4;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.4rem 0.85rem;
  font: inherit;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 0;
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid rgba(232, 183, 196, 0.55);
  outline-offset: 1px;
}

.form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form__hint {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  opacity: 0.8;
}

/* 2段組フォーム（左：入力項目／右：お問い合わせ内容） */
.contact .inner--narrow {
  width: min(960px, calc(100% - 2.5rem));
}

.form--split {
  grid-template-columns: 1fr 1fr;
  column-gap: 2.5rem;
  align-items: stretch;
}

.form__col {
  display: grid;
  gap: 1.1rem;
  align-content: start;
}

.form__col--message {
  display: flex;
}

.form__row--message {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.form__row--message textarea {
  height: 2.4rem;
  flex: 0 0 auto;
  min-height: 0;
  resize: none;
  overflow: hidden;
  transition: flex-grow 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* フォーカス中、または入力済みのときは展開したまま。
   flex-grow で左カラムの残り高さぴったりまで伸ばす（px計算不要） */
.form__row--message textarea:focus,
.form__row--message textarea:not(:placeholder-shown) {
  flex-grow: 1;
  overflow: auto;
}

.form--split .form__hint,
.form--split > .btn {
  grid-column: 1 / -1;
}

@media (max-width: 760px) {
  .form--split {
    grid-template-columns: 1fr;
  }

  /* 1カラム時は伸ばす余白がないので高さアニメーションに切り替え */
  .form__row--message textarea {
    transition: height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .form__row--message textarea:focus,
  .form__row--message textarea:not(:placeholder-shown) {
    height: 16rem;
  }
}

.form__note {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  opacity: 0.72;
  line-height: 1.5;
}

.contact .btn--primary {
  justify-self: start;
  margin-top: 0.25rem;
}

/* Footer */
.site-footer {
  background: #121712;
  color: rgba(243, 240, 235, 0.75);
  padding: 2.5rem 0;
  text-align: center;
}

.site-footer__brand {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  color: #fff;
}

.site-footer__links {
  margin: 0 0 1rem;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.site-footer__links a {
  color: rgba(243, 240, 235, 0.8);
  text-decoration: none;
  font-size: 0.85rem;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 800px) {
  .nav__logo {
    width: clamp(88px, 28vw, 120px);
  }

  .nav__brand-text {
    font-size: 0.82rem;
  }

  .nav__list {
    gap: 0.75rem;
  }

  .nav__list a {
    font-size: 0.75rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    margin-bottom: 8vh;
  }

  .about__inner {
    padding-top: 5.25rem;
  }

  .about__header {
    margin-bottom: 4.25rem;
  }

  .about__origin,
  .about__craft {
    grid-template-columns: 1fr;
  }

  .about__origin {
    gap: 2.75rem;
    margin-bottom: 5.5rem;
  }

  .about__story {
    width: min(34rem, 92%);
    margin-left: auto;
  }

  .about__craft {
    gap: 3rem;
  }

  .about__craft-copy {
    width: min(34rem, 92%);
  }

  .about__craft-images {
    min-height: clamp(28rem, 105vw, 38rem);
  }

  .brand-story__header {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }

  .brand-story__header h2,
  .brand-story__lead {
    grid-column: 1;
  }

  .brand-story__main-visual {
    grid-column: 1;
    grid-row: auto;
    min-height: clamp(24rem, 80vw, 34rem);
    margin-top: 2rem;
  }

  .brand-values {
    grid-template-columns: 1fr;
  }

  .brand-values li {
    min-height: 0;
  }

  .brand-values li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .brand-values__number {
    margin-bottom: 1.5rem;
  }

  .story-preview__header {
    grid-template-columns: 1fr;
  }

  .story-preview__aside {
    align-items: stretch;
  }

  .story-preview__cta {
    width: 100%;
  }

  .story-carousel__controls {
    justify-content: flex-end;
  }

  .story-card {
    grid-template-columns: minmax(13rem, 0.8fr) minmax(0, 1.2fr);
  }

  .story-card__content {
    padding: 2rem;
  }

  .story-page__index {
    position: static;
  }

  .story-page__index .inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-page__index a:nth-child(3) {
    border-left: 0;
  }

  .story-page__index a:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .story-index {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-chapter__grid,
  .story-chapter__grid--reverse {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "visual"
      "body";
  }
}

@media (max-width: 480px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.7rem 0;
    gap: 0.4rem;
  }

  .about__header::after {
    height: 3rem;
  }

  .about__origin {
    gap: 2rem;
  }

  .about__landscape::before {
    top: -0.75rem;
    left: -0.75rem;
  }

  .about__story,
  .about__craft-copy {
    width: 100%;
  }

  .about__craft-images {
    min-height: 27rem;
  }

  .about__craft-shot--fruit {
    width: 68%;
  }

  .about__craft-shot--beans {
    width: 58%;
  }

  .brand-story__intro {
    padding-top: 5rem;
  }

  .brand-story__header h2 {
    font-size: 7vw;
    letter-spacing: 0.015em;
  }

  .story-preview {
    padding: 4rem 0;
  }

  .story-preview__header {
    margin-bottom: 1.5rem;
  }

  .story-carousel__controls {
    justify-content: space-between;
  }

  .story-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .story-carousel__track {
    gap: 0.85rem;
  }

  .story-card__visual {
    min-height: 15rem;
  }

  .story-card__content {
    min-height: 30rem;
    padding: 1.75rem 1.5rem 2rem;
    justify-content: flex-start;
  }

  .story-card__content h4 {
    font-size: 1.7rem;
  }

  .story-page__hero {
    padding-top: 8rem;
  }

  .story-page__index .inner {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .story-page__index a,
  .story-page__index a:nth-child(3) {
    border-left: 0;
  }

  .story-page__index a + a {
    border-top: 1px solid var(--line);
  }

  .story-index {
    grid-template-columns: 1fr;
  }

  .story-index a {
    min-height: 5.5rem;
  }

  .story-chapter {
    padding: 3.5rem 0;
  }

  .story-visual {
    min-height: 20rem;
  }
}

/* ========== Order page ========== */
.order-page .site-header {
  background: rgba(26, 32, 24, 0.88);
}

.order-hero {
  position: relative;
  min-height: 35rem;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.order-hero__media,
.order-hero__veil {
  position: absolute;
  inset: 0;
}

.order-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-hero__veil {
  background: linear-gradient(
    180deg,
    rgba(26, 32, 24, 0.25) 0%,
    rgba(26, 32, 24, 0.45) 45%,
    rgba(26, 32, 24, 0.78) 100%
  );
}

.order-hero__content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 7rem 0 4.5rem;
}

.order-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #e8b7c4;
}

.order-hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.order-hero__lead {
  margin: 0;
  max-width: 36rem;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.92;
}

.order-intro {
  padding-top: 5.5rem;
  padding-bottom: 1.5rem;
  background: var(--paper);
}

.order-intro .section__eyebrow {
  text-transform: none;
  color: var(--berry);
}

.order-intro .section__title {
  margin-bottom: 0.75rem;
}

.order-intro .section__lead {
  max-width: none;
  width: 100%;
}

.order-stickies {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.order-stickies li {
  margin: 0;
  padding: 1rem 0.875rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--forest);
  background: #fff6e0;
  box-shadow: 1px 3px 4px rgba(0, 0, 0, 0.12);
}

.order-stickies li:nth-child(2) {
  background: #edf5e6;
}

.order-stickies li:nth-child(3) {
  background: #f5ebeff0;
}

.order-stickies li:nth-child(4) {
  background: #ebf0f7;
}

.order-gifts {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background: var(--paper);
}

.gift-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #d9d1c7;
  border-radius: 14px;
  overflow: hidden;
}

.gift-card--featured {
  display: grid;
  /* 画像幅 = 下段カード幅 544px（1120 - 2rem）/ 2 */
  grid-template-columns: 544px minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 2rem;
  padding: 0;
  background: #fff;
}

.gift-card--featured .gift-media {
  min-width: 0;
  align-self: start;
  border-radius: 14px 0 0 14px;
}

.gift-card--featured .gift-media__trigger {
  /* 特集カードのサムネは正方形のまま */
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.gift-card--featured .gift-card__body {
  min-width: 0;
  justify-content: flex-start;
  padding-left: 0; /* gap が余白になる */
}

.gift-card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.75rem;
  flex: 1;
}

.gift-card__content {
  display: grid;
  gap: 0.65rem;
}

.gift-card__en {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--berry);
}

.gift-card__bubble {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin: 0;
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--berry);
  background: #faf0f2;
  border: 1.25px solid var(--berry);
  border-radius: 10px;
}

.gift-card__bubble::after {
  content: "";
  position: absolute;
  left: 1.1rem;
  bottom: -0.4rem;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid var(--berry);
}

.gift-card__bubble::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  bottom: -0.28rem;
  z-index: 1;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #faf0f2;
}

.gift-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.04em;
}

.gift-card--featured .gift-card__name {
  font-size: 1.75rem;
}

.gift-card__price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  flex-wrap: wrap;
}

.gift-card__amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--berry);
}

.gift-card__tax {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--berry);
  background: var(--paper);
  border: 1.5px solid var(--berry);
}

.gift-card__desc {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26, 32, 24, 0.82);
  line-height: 1.65;
}

.gift-card__flavors {
  margin: 0;
  font-size: 0.72rem;
  color: rgba(74, 92, 58, 0.85);
  line-height: 1.5;
}

.gift-card__cart {
  position: relative;
  align-self: flex-start;
  margin-top: 0.5rem;
  overflow: hidden;
  z-index: 0;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.gift-card__cart::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #6a9a4e; /* 明るい緑 */
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease);
}

.gift-card__cart:hover {
  background: var(--berry);
  border-color: #6a9a4e;
  color: #fff;
  transform: none; /* 上への移動を無効化 */
}

.gift-card__cart:hover::before {
  transform: scaleX(1);
}

.gift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.gift-grid .gift-card {
  min-height: 100%;
}

.gift-grid .gift-card__body {
  min-height: 24rem;
}

/* Gift media (thumbnail → modal) */
.gift-media {
  position: relative;
  background: #e6e1da;
}

.gift-media__trigger {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 544 / 320;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.gift-media__trigger img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.gift-media__trigger:hover img,
.gift-media__trigger:focus-visible img {
  transform: scale(1.03);
}

.gift-media__hint {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 1;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(26, 32, 24, 0.55);
  border-radius: 999px;
  pointer-events: none;
}

.gift-media__trigger:focus-visible {
  outline: 2px solid var(--berry);
  outline-offset: -2px;
}

/* Gift modal carousel
   show() 利用のため ::backdrop は使わず、背面スクロールを許可する */
.gift-modal {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  margin: 0;
  padding: 1.25rem;
  border: 0;
  background: transparent;
  color: inherit;
  pointer-events: none;
}

.gift-modal[open] {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow-y: auto;
  background: rgba(20, 18, 16, 0.72);
}

.gift-modal__panel {
  position: relative;
  width: min(92vw, 960px);
  pointer-events: auto;
  background: #1a2018;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.gift-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 3;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.gift-modal__close:hover,
.gift-modal__close:focus-visible {
  background: rgba(255, 255, 255, 0.3);
}

.gift-modal__carousel {
  position: relative;
}

.gift-modal__viewport {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #e6e1da;
  overflow: hidden;
}

.gift-modal__viewport img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.gift-modal__viewport img.is-active {
  opacity: 1;
}

.gift-modal__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 50%;
  background: rgba(26, 32, 24, 0.5);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.gift-modal__nav--prev {
  left: 0.85rem;
}

.gift-modal__nav--next {
  right: 0.85rem;
}

.gift-modal__nav:hover,
.gift-modal__nav:focus-visible {
  background: rgba(26, 32, 24, 0.75);
}

.gift-modal__dots {
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
  transform: translateX(-50%);
}

.gift-modal__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.gift-modal__dot.is-active {
  background: #fff;
}

.gift-modal__nav[hidden],
.gift-modal__dots[hidden] {
  display: none;
}

@media (max-width: 900px) {
  .gift-card--featured {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .gift-card--featured .gift-media {
    border-radius: 14px 14px 0 0;
  }

  .gift-card--featured .gift-card__body {
    padding-left: 1.75rem;
  }

  .gift-card--featured .gift-media,
  .gift-card--featured .gift-media__trigger {
    min-height: 0;
  }

  .gift-grid {
    grid-template-columns: 1fr;
  }

  .order-stickies {
    grid-template-columns: 1fr 1fr;
  }

  .gift-modal__viewport {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 640px) {
  .order-hero {
    min-height: 28rem;
  }

  .order-stickies {
    grid-template-columns: 1fr;
  }

  .gift-grid .gift-card__body {
    min-height: 0;
  }
}

/* Online shop reopen banner (brand site → shop) */
.shop-reopen {
  padding: 2.5rem 0 0;
}

.shop-reopen__banner {
  display: block;
  text-decoration: none;
  background: var(--forest);
  border-radius: 14px;
  padding: 2.4rem 1.8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.shop-reopen__banner::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(250, 248, 245, 0.35);
  border-radius: 10px;
  pointer-events: none;
}

.shop-reopen__banner:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.shop-reopen__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9b98a;
}

.shop-reopen__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  letter-spacing: 0.08em;
  color: var(--paper);
}

.shop-reopen__sub {
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: rgba(250, 248, 245, 0.8);
}

.shop-reopen__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--paper);
  border-bottom: 1px solid rgba(250, 248, 245, 0.6);
  padding-bottom: 0.25em;
}

.shop-reopen__cta span {
  transition: transform 0.3s var(--ease);
}

.shop-reopen__banner:hover .shop-reopen__cta span {
  transform: translateX(4px);
}
