:root {
  --paper: #f1efe9;
  --white: #fffdf8;
  --ink: #1d1c1a;
  --muted: #69655e;
  --line: rgba(29, 28, 26, 0.16);
  --yellow: #c8a66b;
  --yellow-soft: #eee2cd;
  --gold: #9c7942;
  --slate: #252321;
  --max: 1240px;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  --sans: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--yellow);
  color: var(--ink);
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(var(--max), calc(100% - 80px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 80px;
  background: rgba(241, 239, 233, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1420px, calc(100% - 64px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.11em;
}

.brandmark-star {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--yellow);
  color: var(--white);
  border-radius: 50%;
  font-size: 18px;
}

.brandmark small {
  display: block;
  margin-top: 7px;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.24em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.site-nav a {
  position: relative;
  padding-block: 12px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 1px;
  background: var(--yellow);
  transition: right 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  right: 0;
}

.site-nav .nav-contact {
  padding: 10px 17px;
  background: var(--ink);
  color: var(--white);
}

.site-nav .nav-contact::after {
  display: none;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

main {
  padding-top: 80px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--yellow);
}

.display-title {
  font-family: var(--serif);
  font-size: clamp(46px, 6.8vw, 94px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0.035em;
}

.section-title {
  max-width: 820px;
  margin-bottom: 52px;
}

.section-title.center {
  margin-inline: auto;
  text-align: center;
}

.section-title.center .eyebrow {
  justify-content: center;
}

.section-title h2,
.split-copy h2,
.cta-panel h2,
.story-copy h2 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.035em;
}

.section-title p,
.story-copy p,
.split-copy p {
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 24px;
  border: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button::after {
  content: "→";
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--ink);
  color: var(--white);
}

.button.yellow {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

.button.yellow:hover,
.button.yellow:focus-visible {
  border-color: var(--white);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
}

.text-link::after {
  content: "";
  width: 46px;
  height: 1px;
  background: currentColor;
  transition: width 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  width: 68px;
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 80px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(200, 166, 107, 0.14), transparent 27%),
    var(--paper);
}

.hero-grid {
  display: grid;
  min-height: calc(100vh - 80px);
  grid-template-columns: 0.84fr 1.16fr;
  gap: 52px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: 84px 24px 84px 0;
}

.hero-copy .lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.hero-art {
  position: relative;
  min-height: min(760px, calc(100vh - 80px));
}

.hero-campaign-photo {
  position: absolute;
  inset: 7% -8vw 7% 0;
  overflow: hidden;
  margin: 0;
  background: #d8d1c6;
  box-shadow: 0 38px 86px rgba(29, 28, 26, 0.2);
}

.hero-campaign-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  pointer-events: none;
}

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

.hero-campaign-photo figcaption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  max-width: calc(100% - 48px);
  padding: 14px 17px;
  background: rgba(37, 35, 33, 0.88);
  color: var(--white);
  backdrop-filter: blur(9px);
}

.hero-campaign-photo figcaption span {
  color: #d9bd8d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero-campaign-photo figcaption strong {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.hero-orbit {
  position: absolute;
  width: min(590px, 78%);
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(25, 25, 25, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hero-orbit::before,
.hero-orbit::after {
  content: "✦";
  position: absolute;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 23px;
}

.hero-orbit::before {
  right: 8%;
  top: 5%;
}

.hero-orbit::after {
  left: -2%;
  bottom: 17%;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: #ddd;
  border: 10px solid var(--white);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.15);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo.sugar {
  width: 56%;
  aspect-ratio: 0.92;
  right: 3%;
  top: 8%;
  border-radius: 50% 50% 20px 20px;
}

.hero-photo.cream {
  width: 43%;
  aspect-ratio: 0.9;
  left: 4%;
  bottom: 5%;
  border-radius: 18px 18px 50% 50%;
}

.photo-label {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero-note {
  position: absolute;
  z-index: 3;
  left: -34px;
  right: auto;
  top: 3.5%;
  bottom: auto;
  width: 210px;
  padding: 17px 20px;
  background: var(--slate);
  color: var(--white);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
}

.hero-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--yellow);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.star-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.star-field i {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  transform: rotate(45deg);
  animation: twinkle 3.8s ease-in-out infinite;
}

.star-field i:nth-child(1) { left: 5%; top: 18%; }
.star-field i:nth-child(2) { left: 43%; top: 12%; animation-delay: -1.1s; }
.star-field i:nth-child(3) { right: 5%; top: 45%; animation-delay: -2.3s; }
.star-field i:nth-child(4) { left: 48%; bottom: 10%; animation-delay: -0.6s; }
.star-field i:nth-child(5) { left: 21%; bottom: 17%; animation-delay: -1.7s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.35; transform: rotate(45deg) scale(0.75); }
  50% { opacity: 1; transform: rotate(45deg) scale(1.35); }
}

.intro-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: start;
  padding-block: 86px;
}

.intro-index {
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.16em;
}

.intro-grid h2 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.55;
}

.intro-grid p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.section {
  padding-block: 116px;
}

.section.white {
  background: var(--white);
}

.signature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
}

.signature-card {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  background: var(--white);
}

.signature-card:nth-child(2) {
  margin-top: 84px;
}

.signature-card img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.signature-card img.focus-sugar,
.product-photo img.focus-sugar {
  object-position: 48% center;
}

.signature-card img.focus-cream,
.product-photo img.focus-cream {
  object-position: 100% 24%;
}

.product-photo img.focus-light-roll {
  object-position: 18% center;
}

.product-photo img.focus-choco-roll {
  object-position: 90% center;
}

.signature-card:hover img {
  transform: scale(1.025);
}

.signature-caption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 46px 38px 34px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
}

.signature-caption small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.signature-caption h3 {
  margin: 4px 0 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 400;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.brand-card {
  position: relative;
  grid-column: span 6;
  overflow: hidden;
  min-height: 490px;
  background: var(--slate);
  color: var(--white);
}

.brand-card:nth-child(2),
.brand-card:nth-child(3) {
  background: #4b4d50;
}

.brand-card img {
  width: 100%;
  height: 100%;
  min-height: 490px;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 600ms ease, opacity 400ms ease;
}

.brand-card:hover img,
.brand-card:focus-visible img {
  transform: scale(1.035);
  opacity: 0.96;
}

.brand-card-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 90px 34px 32px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.86));
}

.brand-number {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font: 700 12px var(--sans);
}

.brand-card h3 {
  margin-bottom: 5px;
  font: 400 clamp(28px, 3vw, 44px)/1.25 Georgia, serif;
  letter-spacing: 0.035em;
}

.brand-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.brand-card.featured-brand {
  grid-column: 1 / -1;
  min-height: 560px;
}

.brand-card.featured-brand img {
  min-height: 560px;
  object-position: center 54%;
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 690px;
  background: var(--slate);
  color: var(--white);
}

.split-copy {
  display: flex;
  align-items: center;
  padding: clamp(60px, 8vw, 120px);
}

.split-copy p {
  max-width: 530px;
  color: #d6d6d2;
}

.split-media {
  position: relative;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-media::after {
  content: "✦";
  position: absolute;
  right: 28px;
  top: 28px;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 30px;
}

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

.brand-mori {
  --event-accent: #216aa6;
  --event-tint: #eaf3fb;
  --event-text: #17517f;
}

.brand-etoile {
  --event-accent: #078993;
  --event-tint: #e7f5f5;
  --event-text: #05666d;
}

.brand-patate {
  --event-accent: #bf8500;
  --event-tint: #fbf2dd;
  --event-text: #805900;
}

.brand-canele {
  --event-accent: #ae1555;
  --event-tint: #f9e9f0;
  --event-text: #821040;
}

.schedule-row {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 38px;
  align-items: center;
  padding: 30px 18px 30px 22px;
  border-bottom: 1px solid var(--line);
  border-left: 4px solid var(--event-accent, var(--yellow));
  background: linear-gradient(90deg, var(--event-tint, transparent), transparent 24%);
}

.schedule-date {
  font: 400 17px Georgia, serif;
  letter-spacing: 0.04em;
}

.schedule-row h3 {
  margin: 0;
  font: 400 24px var(--serif);
}

.schedule-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.schedule-brand,
.event-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--event-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.schedule-brand::before,
.event-brand::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--event-accent);
}

.schedule-status {
  padding: 5px 12px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}

.brand-reading {
  display: block;
  margin: -10px 0 18px;
  color: #d7d7d1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.search-faq {
  padding-block: 112px;
  background: var(--yellow-soft);
}

.search-faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.search-faq .section-title {
  position: sticky;
  top: 120px;
  margin-bottom: 0;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 54px 25px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font: 400 23px/31px var(--sans);
  text-align: center;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  margin: -4px 54px 26px 0;
  color: var(--muted);
}

.faq-list details a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.story-section {
  padding-block: 120px;
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.story-mark {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font: 400 clamp(48px, 8vw, 112px) Georgia, serif;
}

.story-mark::after {
  content: "✦";
  position: absolute;
  right: 7%;
  top: 8%;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font: 28px var(--sans);
}

.cta-wrap {
  padding-block: 96px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 8vw, 100px);
  background: var(--yellow);
}

.cta-panel::after {
  content: "PRYMNO";
  position: absolute;
  right: -18px;
  bottom: -58px;
  color: rgba(25, 25, 25, 0.08);
  font: 400 clamp(90px, 17vw, 230px)/1 Georgia, serif;
  letter-spacing: 0.04em;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel p {
  max-width: 620px;
}

.page-hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--slate);
  color: var(--white);
}

.page-hero-grid {
  display: grid;
  min-height: 610px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  padding: 80px 40px 80px 0;
}

.page-hero .eyebrow {
  color: #d7d7d1;
}

.page-hero h1 {
  margin-bottom: 22px;
  font: 400 clamp(47px, 6vw, 84px)/1.2 var(--serif);
  letter-spacing: 0.04em;
}

.page-hero h1.latin {
  font-family: Georgia, serif;
}

.page-hero h1.mori-title {
  font-size: clamp(40px, 5.1vw, 68px);
  letter-spacing: 0.025em;
}

.page-hero p {
  max-width: 560px;
  margin-bottom: 0;
  color: #deded9;
}

.page-hero-media {
  position: relative;
  height: 520px;
  margin-right: -8vw;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-media::before {
  content: "✦";
  position: absolute;
  z-index: 2;
  left: -32px;
  top: -32px;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 26px;
}

.content-section {
  padding-block: 108px;
}

.content-section.white {
  background: var(--white);
}

.brand-overview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.overview-card {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  min-height: 330px;
  background: var(--white);
  border: 1px solid var(--line);
}

.overview-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.overview-card.featured-overview {
  grid-column: 1 / -1;
  grid-template-columns: 1.12fr 0.88fr;
}

.overview-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.overview-copy small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.overview-copy h2 {
  margin: 10px 0 8px;
  font: 400 29px/1.25 Georgia, serif;
}

.overview-copy p {
  color: var(--muted);
  font-size: 14px;
}

.brand-intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.brand-intro h2 {
  font: 400 clamp(36px, 4.6vw, 62px)/1.35 var(--serif);
}

.brand-intro-copy p {
  color: var(--muted);
}

.brand-points {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.brand-point {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.brand-point span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 12px;
  font-weight: 700;
}

.brand-point h3 {
  margin-bottom: 4px;
  font: 400 21px var(--serif);
}

.brand-point p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.product-focus.single {
  max-width: 880px;
  margin-inline: auto;
  grid-template-columns: 1fr;
}

.product-photo {
  margin: 0;
  background: var(--white);
}

.product-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.product-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-top: 0;
}

.product-photo strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.product-photo span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.catalog-panel {
  max-width: 1040px;
  margin-inline: auto;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.catalog-panel.portrait {
  max-width: 760px;
}

.catalog-panel img {
  width: 100%;
  height: auto;
}

.lineup-poster {
  --poster-accent: var(--yellow);
  display: grid;
  max-width: 1120px;
  margin-inline: auto;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  overflow: hidden;
  border-top: 5px solid var(--poster-accent);
  background: var(--slate);
  color: var(--white);
  box-shadow: 0 34px 80px rgba(29, 28, 26, 0.18);
}

.poster-etoile { --poster-accent: #d3ae70; }
.poster-canele { --poster-accent: #b88b59; }
.poster-patate { --poster-accent: #c47f4b; }
.poster-coro { --poster-accent: #a97961; }
.poster-mori { --poster-accent: #73a4c0; }

.lineup-visual {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #d8d1c6;
}

.lineup-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.lineup-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lineup-badge {
  position: absolute;
  z-index: 2;
  left: 24px;
  top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  background: rgba(37, 35, 33, 0.86);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.lineup-badge span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.lineup-badge b {
  color: var(--poster-accent);
  font: 400 20px Georgia, serif;
}

.lineup-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5.5vw, 70px);
}

.lineup-brand small {
  color: var(--poster-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.lineup-brand h3 {
  margin: 12px 0 16px;
  font: 400 clamp(36px, 4vw, 54px)/1.12 Georgia, serif;
  letter-spacing: 0.035em;
}

.lineup-brand p {
  max-width: 490px;
  margin-bottom: 0;
  color: #d8d5cf;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.85;
}

.lineup-divider {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 34px 0 12px;
  color: #aaa69f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.lineup-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.19);
  list-style: none;
}

.flavor-grid li {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 11px;
  padding: 14px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
  font-size: 14px;
  line-height: 1.55;
}

.flavor-grid li:nth-child(odd) {
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.19);
}

.flavor-grid li:nth-child(even) {
  padding-left: 18px;
}

.flavor-grid li span {
  flex: 0 0 22px;
  color: var(--poster-accent);
  font: 400 12px/1.8 Georgia, serif;
}

.flavor-grid li strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.flavor-grid.dense li {
  padding-block: 11px;
}

.flavor-grid.featured {
  grid-template-columns: 1fr;
}

.flavor-grid.featured li {
  padding: 17px 8px;
  border-right: 0;
}

.lineup-note {
  margin: 28px 0 0;
  color: #aaa69f;
  font-size: 13px;
}

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

.product-category {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  color: var(--white);
}

.product-category.featured-product {
  grid-column: 1 / -1;
  min-height: 540px;
}

.product-category.featured-product img {
  object-position: center 54%;
}

.product-category img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  filter: brightness(0.72);
  transition: transform 600ms ease;
}

.product-category:hover img,
.product-category:focus-visible img {
  transform: scale(1.03);
}

.product-category-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 88px 30px 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.86));
}

.product-category h2 {
  margin-bottom: 6px;
  font: 400 clamp(31px, 3vw, 46px)/1.2 Georgia, serif;
}

.product-category p {
  margin-bottom: 0;
}

.events-lead {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  margin-bottom: 64px;
}

.events-lead h2 {
  font: 400 clamp(34px, 4vw, 58px)/1.4 var(--serif);
}

.events-lead p {
  color: var(--muted);
}

.brand-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.brand-key {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--event-accent) 28%, var(--line));
  background: var(--white);
  color: var(--event-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-key::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--event-accent);
}

.event-month + .event-month {
  margin-top: 78px;
}

.event-month-heading {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: baseline;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.event-month-heading span {
  color: var(--gold);
  font: 400 15px Georgia, serif;
  letter-spacing: 0.12em;
}

.event-month-heading h2 {
  margin: 0;
  font: 400 29px var(--serif);
}

.event-cards {
  display: grid;
  gap: 18px;
}

.event-card {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 34px;
  background: var(--white);
  border-left: 5px solid var(--event-accent, var(--yellow));
  box-shadow: 0 12px 32px rgba(37, 35, 33, 0.05);
}

.event-card time {
  font: 400 19px Georgia, serif;
}

.event-card h3 {
  margin-bottom: 4px;
  font: 400 25px var(--serif);
}

.event-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.event-card .tag {
  padding: 6px 12px;
  background: var(--event-tint, var(--paper));
  color: var(--event-text, var(--ink));
  font-size: 12px;
  font-weight: 700;
}

.events-note {
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.events-empty {
  margin: 26px 0 0;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  text-align: center;
}

.company-story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 84px;
  align-items: center;
}

.company-story h2 {
  font: 400 clamp(37px, 4.7vw, 66px)/1.45 var(--serif);
}

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

.company-emblem {
  display: grid;
  min-height: 460px;
  place-items: center;
  background: var(--slate);
  color: var(--white);
  text-align: center;
}

.company-emblem .star {
  display: grid;
  width: 110px;
  height: 110px;
  place-items: center;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 47px;
}

.company-emblem strong {
  font: 400 44px Georgia, serif;
  letter-spacing: 0.08em;
}

.info-list {
  max-width: 960px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

.info-row {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 32px;
  padding: 23px 4px;
  border-bottom: 1px solid var(--line);
}

.info-row dt {
  font-weight: 700;
}

.info-row dd {
  margin: 0;
  color: var(--muted);
}

.profile-lines {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-lines li {
  position: relative;
  padding-left: 18px;
}

.profile-lines li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}

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

.recruit-card {
  padding: 42px;
  background: var(--white);
  border-top: 6px solid var(--yellow);
}

.recruit-card small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.recruit-card h2 {
  margin: 12px 0 20px;
  font: 400 32px var(--serif);
}

.recruit-card ul {
  margin: 0;
  padding-left: 1.3em;
  color: var(--muted);
}

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

.contact-grid.single {
  grid-template-columns: minmax(0, 900px);
}

.contact-card {
  padding: clamp(38px, 5vw, 62px);
  background: var(--white);
  border: 1px solid var(--line);
}

.contact-card.yellow {
  background: var(--yellow);
  border-color: var(--yellow);
}

.contact-card small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.contact-card h2 {
  margin: 14px 0 10px;
  font: 400 clamp(29px, 3.2vw, 43px) var(--serif);
}

.contact-card .contact-value {
  display: inline-block;
  margin: 14px 0 24px;
  border-bottom: 1px solid currentColor;
  font: 400 clamp(19px, 2.2vw, 28px) Georgia, var(--serif);
}

.privacy {
  max-width: 900px;
  margin-top: 80px;
}

.privacy h2 {
  font: 400 30px var(--serif);
}

.privacy p {
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 1fr);
  gap: 60px;
  padding-block: 78px;
}

.site-footer .brandmark {
  margin-bottom: 24px;
}

.footer-about p,
.footer-contact p {
  color: #bfbfba;
  font-size: 14px;
}

.footer-column h2 {
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: 0.15em;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li + li {
  margin-top: 9px;
}

.footer-column a {
  color: #d8d8d3;
  font-size: 14px;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #9f9f9a;
  font-size: 12px;
}

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

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

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .header-inner {
    width: calc(100% - 40px);
  }

  .site-nav {
    gap: 16px;
    font-size: 11px;
  }

  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .hero-note {
    right: 12px;
  }

  .overview-card {
    grid-template-columns: 1fr;
  }

  .overview-card.featured-overview {
    grid-template-columns: 1fr;
  }

  .overview-card img {
    height: 290px;
    min-height: 0;
  }
}

@media (max-width: 880px) {
  .container {
    width: min(100% - 40px, var(--max));
  }

  .site-header {
    height: 70px;
    background: var(--paper);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .header-inner {
    width: calc(100% - 30px);
  }

  .brandmark {
    font-size: 22px;
  }

  .brandmark-star {
    width: 30px;
    height: 30px;
  }

  .menu-button {
    display: block;
    position: relative;
    z-index: 3;
  }

  .site-nav {
    position: fixed;
    z-index: 2;
    inset: 70px 0 auto;
    display: flex;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 26px max(48px, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--paper);
    box-shadow: 0 16px 28px rgba(29, 28, 26, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

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

  .site-nav .nav-contact {
    margin-top: 18px;
    padding: 15px 18px;
    text-align: center;
  }

  main {
    padding-top: 70px;
  }

  .hero-grid,
  .page-hero-grid,
  .intro-grid,
  .split-feature,
  .story-grid,
  .search-faq-grid,
  .brand-intro,
  .events-lead,
  .company-story {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 0;
  }

  .home-hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    padding: 72px 0 34px;
  }

  .hero-art {
    min-height: 600px;
  }

  .hero-campaign-photo {
    inset: 0 -20px 38px;
  }

  .hero-note {
    left: 0;
    top: -18px;
  }

  .intro-grid {
    gap: 24px;
    padding-block: 68px;
  }

  .section,
  .content-section,
  .story-section {
    padding-block: 86px;
  }

  .search-faq {
    padding-block: 86px;
  }

  .search-faq .section-title {
    position: static;
  }

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

  .signature-card:nth-child(2) {
    margin-top: 0;
  }

  .brand-card {
    grid-column: span 12;
  }

  .brand-card.featured-brand,
  .brand-card.featured-brand img,
  .product-category.featured-product {
    min-height: 460px;
  }

  .split-copy {
    min-height: 560px;
    padding: 70px 28px;
  }

  .split-media {
    min-height: 520px;
  }

  .page-hero,
  .page-hero-grid {
    min-height: auto;
  }

  .page-hero-copy {
    padding: 80px 0 52px;
  }

  .page-hero-media {
    height: 430px;
    margin: 0 -20px;
  }

  .page-hero-media::before {
    left: 20px;
  }

  .brand-overview,
  .product-category-grid,
  .recruit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .lineup-poster {
    grid-template-columns: 1fr;
  }

  .lineup-visual {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .lineup-content {
    padding: 54px 42px;
  }

  .brand-intro,
  .events-lead,
  .company-story {
    gap: 44px;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .display-title {
    font-size: clamp(42px, 14vw, 62px);
  }

  .hero-copy .lead {
    font-size: 16px;
  }

  .hero-art {
    min-height: 480px;
  }

  .hero-campaign-photo {
    inset: 0 -14px 42px;
  }

  .hero-campaign-photo img {
    object-position: 66% center;
  }

  .hero-campaign-photo figcaption {
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 11px 13px;
  }

  .hero-photo {
    border-width: 6px;
  }

  .hero-photo.sugar {
    width: 66%;
    right: -3%;
    top: 4%;
  }

  .hero-photo.cream {
    width: 53%;
    left: -1%;
    bottom: 4%;
  }

  .hero-orbit {
    width: 92%;
  }

  .hero-note {
    left: 0;
    right: auto;
    top: -16px;
    bottom: auto;
    width: 174px;
    font-size: 15px;
  }

  .section-title {
    margin-bottom: 36px;
  }

  .signature-card,
  .signature-card img,
  .brand-card,
  .brand-card img,
  .product-category,
  .product-category img {
    min-height: 410px;
  }

  .brand-card.featured-brand,
  .brand-card.featured-brand img,
  .product-category.featured-product,
  .product-category.featured-product img {
    min-height: 410px;
  }

  .signature-caption {
    padding: 70px 22px 23px;
  }

  .brand-card-copy {
    padding: 90px 23px 24px;
  }

  .split-copy {
    min-height: 500px;
  }

  .split-media {
    min-height: 390px;
  }

  .schedule-row,
  .event-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .schedule-row {
    padding: 24px 18px;
  }

  .event-card {
    padding: 25px 22px;
  }

  .event-month + .event-month {
    margin-top: 56px;
  }

  .event-month-heading {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .event-month-heading h2 {
    font-size: 25px;
  }

  .events-note {
    text-align: left;
  }

  .schedule-status,
  .event-card .tag {
    width: max-content;
  }

  .story-mark {
    max-width: 410px;
    margin-inline: auto;
  }

  .page-hero-media {
    height: 340px;
    margin: 0 -14px;
  }

  .page-hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .overview-card {
    min-height: 0;
  }

  .product-focus {
    grid-template-columns: 1fr;
  }

  .product-photo img {
    height: 370px;
  }

  .catalog-panel {
    padding: 10px;
  }

  .lineup-content {
    padding: 42px 22px;
  }

  .lineup-brand h3 {
    font-size: clamp(34px, 10.5vw, 47px);
  }

  .lineup-brand p {
    font-size: 16px;
  }

  .lineup-badge {
    left: 14px;
    top: 14px;
  }

  .lineup-divider {
    margin-top: 30px;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .recruit-card {
    padding: 30px 24px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .flavor-grid:not(.featured) {
    grid-template-columns: 1fr;
  }

  .flavor-grid:not(.featured) li,
  .flavor-grid:not(.featured) li:nth-child(odd),
  .flavor-grid:not(.featured) li:nth-child(even) {
    padding: 13px 6px;
    border-right: 0;
  }
}

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

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

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