:root {
  --ivory: #fbf7f0;
  --paper: #fffdf9;
  --paper-2: #fff7f1;
  --plum: #43033d;
  --plum-2: #641056;
  --rose: #a96582;
  --ink: #24131f;
  --muted: #6f5b67;
  --line: rgba(67, 3, 61, .16);
  --gold: #c9a76c;
  --green: #43885f;
  --shadow: 0 18px 54px rgba(46, 14, 38, .16);
  --soft-shadow: 0 10px 26px rgba(67, 3, 61, .09);
  --radius: 8px;
  --max: 1190px;
  --header-h: 65px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --scroll-progress: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, #fffdf9 0, #fbf5ef 54%, #fffaf6 100%);
  color: var(--ink);
  overflow-x: clip;
}

body.menu-locked,
body.modal-locked {
  overflow: hidden;
}

a,
button {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-progress {
  position: fixed;
  z-index: 140;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
  background: rgba(67, 3, 61, .08);
}

.site-progress span {
  display: block;
  width: calc(var(--scroll-progress) * 100%);
  height: 100%;
  background: var(--plum);
}

.site-header {
  position: sticky;
  z-index: 120;
  top: 0;
  min-height: var(--header-h);
  background: rgba(255, 253, 249, .97);
  border-bottom: 1px solid rgba(67, 3, 61, .08);
  backdrop-filter: blur(14px);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 253, 249, .98);
  box-shadow: 0 8px 26px rgba(67, 3, 61, .08);
}

.header-inner {
  width: min(calc(100% - 36px), var(--max));
  min-height: var(--header-h);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 172px;
  color: var(--plum);
  line-height: 1;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.brand::before {
  content: none;
}

.brand::after {
  content: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.35vw, 34px);
  color: var(--plum);
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.primary-nav a {
  position: relative;
  padding: 8px 0;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -4px;
  height: 1px;
  background: var(--plum);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s var(--ease);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.profile-link,
.store-link,
.deep-button,
.footer-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), background .24s var(--ease);
}

.profile-link {
  padding: 0 18px;
  color: var(--plum);
  border: 1px solid rgba(67, 3, 61, .42);
  background: rgba(255, 255, 255, .86);
}

.store-link,
.deep-button,
.footer-store {
  padding: 0 20px;
  color: #fff;
  background: var(--plum);
  box-shadow: 0 9px 18px rgba(67, 3, 61, .20);
}

.profile-link:hover,
.store-link:hover,
.deep-button:hover,
.footer-store:hover,
.profile-link:focus-visible,
.store-link:focus-visible,
.deep-button:focus-visible,
.footer-store:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(67, 3, 61, .18);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.mobile-menu-visual {
  display: none;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--plum);
  border-radius: 999px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}

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

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

.mobile-panel {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 110;
  padding: 20px;
  background: rgba(255, 253, 249, .96);
  backdrop-filter: blur(18px);
}

.mobile-panel[hidden] {
  display: none;
}

.mobile-panel nav {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
}

.mobile-panel a {
  padding: 14px;
  border-bottom: 1px solid rgba(67, 3, 61, .08);
  color: var(--plum);
  font-weight: 700;
}

.page-canvas {
  width: 100%;
}

.hero-canvas {
  background: #ede4d8;
}

.hero-stage {
  position: relative;
  height: 382px;
  min-height: 382px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 38vw);
  background:
    linear-gradient(90deg, rgba(255, 253, 249, .96) 0, rgba(255, 253, 249, .72) 24%, rgba(255, 253, 249, .08) 53%, rgba(36, 19, 31, .26) 72%, rgba(36, 19, 31, .30) 100%),
    #decbb6;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, .88) 0%, rgba(255, 253, 249, .58) 20%, rgba(255, 253, 249, .12) 45%, rgba(255, 253, 249, 0) 64%),
    linear-gradient(90deg, rgba(36, 19, 31, 0) 58%, rgba(36, 19, 31, .18) 100%);
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 22% center;
  transform: none;
  transition: filter .45s var(--ease);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(450px, calc(100vw - 42px));
  align-self: center;
  margin-left: max(34px, calc((100vw - var(--max)) / 2 + 34px));
  padding: 0;
  color: var(--plum);
}

.hero-copy h1 {
  margin: 0;
  color: var(--plum);
  max-width: 540px;
  font-size: 54px;
  line-height: .96;
  letter-spacing: 0;
}

.hero-brand-sub {
  margin: 5px 0 14px;
  color: var(--plum);
  font-size: clamp(19px, 1.75vw, 24px);
  font-style: italic;
  line-height: 1.1;
}

.hero-title {
  margin: 0 0 13px;
  color: var(--plum);
  font-size: clamp(23px, 2.25vw, 30px);
  font-weight: 700;
  line-height: 1.35;
}

.hero-lead {
  margin: 0 0 20px;
  width: min(330px, 100%);
  color: #2d1728;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.78;
}

.deep-button {
  min-height: 34px;
  padding: 0 22px;
}

.shop-cards {
  position: relative;
  z-index: 3;
  grid-column: 2;
  display: grid;
  grid-template-rows: 194px 204px;
  align-content: center;
  align-self: stretch;
  gap: 10px;
  padding: 10px max(26px, calc((100vw - var(--max)) / 2 + 26px)) 10px 0;
}

.shop-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 28px rgba(31, 14, 28, .18);
  cursor: pointer;
  text-align: left;
}

.shop-card picture,
.shop-card img {
  width: 100%;
  height: 100%;
}

.shop-card img {
  object-fit: cover;
  transition: transform .42s var(--ease), filter .42s var(--ease);
}

.shop-card:hover img,
.shop-card:focus-visible img {
  transform: scale(1.04);
}

.shop-card:focus-visible {
  outline: 2px solid var(--plum);
  outline-offset: 3px;
}

.shop-card-beach {
  height: 100%;
  min-height: 0;
}

.shop-card-beach picture {
  position: absolute;
  inset: 0;
}

.shop-card-beach span {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  width: 56%;
  height: 100%;
  min-height: 0;
  margin-left: auto;
  padding: 26px 18px 16px;
  color: var(--plum);
  background: linear-gradient(90deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .86) 18%, rgba(255, 255, 255, .91));
}

.shop-card b {
  display: block;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0;
}

.shop-card em {
  display: block;
  margin-top: 8px;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
}

.shop-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 28px;
  margin-top: 8px;
  padding: 0 18px;
  border: 1px solid rgba(67, 3, 61, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--plum);
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.shop-card-store {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: 44% 56%;
}

.shop-card-store picture {
  display: block;
  height: 100%;
}

.shop-card-store img {
  height: 100%;
}

.shop-card-store span {
  display: grid;
  align-content: center;
  padding: 12px 18px;
  color: var(--plum);
  background:
    linear-gradient(135deg, rgba(255, 253, 250, .91), rgba(246, 238, 233, .90)),
    url("okaberry-c-luxury/img/shop-yoyogi-current-20260623.jpg") center / cover no-repeat;
}

.shop-card-store b {
  font-size: 20px;
  line-height: 1.03;
}

.shop-card-store em {
  font-size: 10.5px;
  line-height: 1.30;
}

.shop-card-store strong {
  height: 28px;
  min-height: 28px;
  margin-top: 5px;
}

.shop-card-store small {
  font-size: 13px;
}

.news-instagram-band,
.story-band,
.product-section,
.company-section {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
}

.news-instagram-band {
  display: grid;
  grid-template-columns: 1.48fr .95fr;
  gap: 22px;
  padding: 16px 0 15px;
  border-bottom: 1px solid rgba(67, 3, 61, .10);
  background: rgba(255, 253, 249, .76);
}

.panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.section-kicker {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.section-kicker h2,
.product-shelf-head h2,
.company-copy h2,
.gallery-head h3 {
  margin: 0;
  color: var(--plum);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
}

.section-kicker p,
.eyebrow {
  margin: 0;
  color: var(--plum);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.panel-head a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  color: var(--plum);
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.news-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  min-height: 96px;
  padding: 9px;
  border: 1px solid rgba(67, 3, 61, .06);
  border-radius: 10px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 8px 18px rgba(67, 3, 61, .05);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}

.news-item:hover,
.news-item:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--soft-shadow);
  outline: none;
}

.news-item picture,
.news-item img {
  width: 86px;
  height: 78px;
}

.news-item img {
  object-fit: cover;
  border-radius: 5px;
}

.news-item span {
  min-width: 0;
  display: block;
}

.news-item time {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.news-category {
  display: block;
  margin-bottom: 3px;
  color: var(--plum);
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
}

.news-item b {
  display: -webkit-box;
  overflow: hidden;
  color: var(--plum);
  font-size: 12.5px;
  line-height: 1.35;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-item em {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 5px;
  color: var(--muted);
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.45;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.news-archive-page {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, .96), rgba(250, 243, 238, .92));
}

.news-archive-hero {
  padding: calc(var(--header-h) + 58px) 0 38px;
  background:
    linear-gradient(110deg, rgba(255, 253, 249, .96), rgba(255, 249, 244, .72)),
    url("okaberry-c-luxury/img/10.webp") center / cover no-repeat;
  border-bottom: 1px solid rgba(67, 3, 61, .10);
}

.news-archive-hero-inner,
.news-archive-section {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
}

.news-archive-hero h1 {
  margin: 8px 0 12px;
  color: var(--plum);
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1;
  letter-spacing: 0;
}

.news-archive-hero p:not(.eyebrow) {
  max-width: 540px;
  margin: 0 0 22px;
  color: #2f1b2a;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.news-archive-section {
  padding: 38px 0 74px;
}

.news-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.news-archive-item {
  display: grid;
  grid-template-columns: 156px 1fr;
  gap: 18px;
  min-height: 154px;
  padding: 14px;
  border: 1px solid rgba(67, 3, 61, .08);
  border-radius: 10px;
  background: rgba(255, 255, 255, .90);
  box-shadow: 0 12px 28px rgba(67, 3, 61, .06);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}

.news-archive-item:hover,
.news-archive-item:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
  outline: none;
}

.news-archive-item picture,
.news-archive-item img {
  width: 156px;
  height: 126px;
}

.news-archive-item img {
  object-fit: cover;
  border-radius: 7px;
}

.news-archive-item span {
  min-width: 0;
  align-self: center;
}

.news-archive-item time {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.news-archive-item b {
  display: block;
  color: var(--plum);
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.45;
}

.news-archive-item em {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 8px;
  color: var(--muted);
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.instagram-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.instagram-list button,
.gallery-strip button,
.yoyogi-grid button {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
}

button[data-lightbox-src] img,
button[data-lightbox-src] video {
  pointer-events: none;
}

.instagram-list button {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 7px;
}

.instagram-list picture,
.instagram-list img {
  display: block;
  width: 100%;
  height: 100%;
}

.instagram-list img {
  border-radius: 7px;
  object-fit: cover;
  box-shadow: 0 7px 16px rgba(67, 3, 61, .10);
}

.instagram-embed {
  min-height: 190px;
  max-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(67, 3, 61, .08);
  border-radius: 12px;
  background: rgba(255, 255, 255, .82);
}

.instagram-embed .embedsocial-hashtag {
  min-height: 190px;
}

.story-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(300px, 1.45fr);
  gap: 14px;
  padding: 0 0 10px;
  align-items: stretch;
}

.story-card,
.story-cta {
  height: auto;
  min-height: 160px;
  border: 1px solid rgba(67, 3, 61, .22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(255, 247, 242, .94));
  box-shadow: 0 6px 16px rgba(67, 3, 61, .04);
}

.story-card {
  position: relative;
  overflow: hidden;
  padding: 24px 22px 18px 30px;
}

.story-open {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--plum);
  text-align: left;
  cursor: pointer;
}

.story-open span {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
}

.story-open i {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 999px;
  background: var(--plum);
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 18px;
  line-height: 1;
}

.story-card p {
  margin: 14px 34px 0 0;
  color: #2e1a28;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.62;
}

.story-cta {
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 160px;
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}

.story-cta picture {
  position: absolute;
  inset: 0;
}

.story-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.story-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(67, 3, 61, .66), rgba(67, 3, 61, .34) 58%, rgba(67, 3, 61, .12));
}

.story-cta div {
  position: relative;
  z-index: 1;
  padding: 22px 26px;
}

.story-cta h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.28;
}

.story-cta p {
  margin: 8px 0 10px;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.story-cta a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .90);
  color: var(--plum);
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.product-section {
  padding: 10px 0 52px;
}

.product-shelf {
  position: relative;
  min-height: 156px;
  padding: 14px 46px 16px;
  border: 1px solid rgba(67, 3, 61, .12);
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(255, 247, 242, .86));
  box-shadow: 0 10px 30px rgba(67, 3, 61, .06);
}

.product-shelf-head {
  margin-bottom: 4px;
}

.product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(128px, 1fr);
  gap: 18px;
  align-items: end;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.product-rail::-webkit-scrollbar {
  display: none;
}

.product-item {
  min-width: 126px;
  min-height: 94px;
  display: grid;
  place-items: end center;
  scroll-snap-align: start;
  text-align: center;
}

.product-item picture {
  width: 118px;
  height: 76px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.product-item img {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 10px rgba(67, 3, 61, .12));
  transition: transform .24s var(--ease);
}

.product-item:hover img,
.product-item:focus-visible img {
  transform: translateY(-2px) scale(1.02);
}

.product-item span {
  display: block;
  margin-top: 5px;
  color: #2d1728;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
}

.shelf-arrow {
  position: absolute;
  z-index: 2;
  top: 66px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(67, 3, 61, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--plum);
  box-shadow: 0 8px 18px rgba(67, 3, 61, .08);
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.shelf-arrow-prev {
  left: 16px;
}

.shelf-arrow-next {
  right: 16px;
}

.product-note {
  margin: 5px 0 0;
  color: #2e1a28;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.gallery-ribbon {
  margin-top: 32px;
  padding: 22px;
  border: 1px solid rgba(67, 3, 61, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
}

.gallery-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.gallery-head p:last-child {
  margin: 0;
  color: var(--muted);
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 1fr);
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.company-section {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 28px;
  padding: 52px 0 70px;
}

.company-copy p:last-child {
  color: var(--muted);
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.company-profile {
  display: grid;
  grid-template-columns: minmax(260px, .92fr) 1fr;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .76);
}

.company-profile figure {
  margin: 0;
}

.company-profile img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.company-list {
  margin: 0;
  display: grid;
  gap: 0;
}

.company-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(67, 3, 61, .09);
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 1.55;
}

.company-list dt {
  color: var(--plum);
  font-weight: 800;
}

.company-list dd {
  margin: 0;
  color: #2c1a27;
  font-weight: 600;
}

.site-footer {
  background: rgba(255, 250, 246, .96);
  border-top: 1px solid rgba(67, 3, 61, .10);
}

.footer-inner {
  width: min(calc(100% - 64px), var(--max));
  min-height: 112px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1.4fr 1.35fr auto;
  gap: 36px;
  align-items: start;
  padding: 22px 0 24px;
}

.footer-logo {
  display: grid;
  width: 138px;
  color: var(--plum);
  line-height: 1;
}

.footer-logo img {
  display: none;
}

.footer-logo::before {
  content: "Okaberry";
  font-size: 28px;
  font-style: italic;
  font-weight: 800;
}

.footer-logo::after {
  content: "BRAZILIAN ACAI CAFE";
  margin-top: 4px;
  padding-left: 28px;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 7px;
  font-weight: 800;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-social a,
.footer-inner nav a {
  color: var(--plum);
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.footer-inner nav {
  display: grid;
  gap: 9px;
}

.copyright {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
  padding: 0 0 22px;
  color: var(--muted);
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 11px;
}

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

.luxury-modal {
  width: min(920px, calc(100% - 32px));
  max-height: min(86vh, 900px);
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: transparent;
}

.luxury-modal::backdrop {
  background: rgba(32, 14, 28, .54);
  backdrop-filter: blur(7px);
}

.modal-frame {
  position: relative;
  max-height: min(86vh, 900px);
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 16px;
  background: #fffdf9;
  box-shadow: var(--shadow);
}

.modal-close,
.lightbox-close {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(67, 3, 61, .12);
  border-radius: 999px;
  background: #fff;
  color: var(--plum);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.modal-close:focus-visible,
.lightbox-close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .86);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(67, 3, 61, .20);
}

.modal-frame h2 {
  margin: 6px 0 22px;
  color: var(--plum);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.timeline,
.business-grid {
  display: grid;
  gap: 14px;
}

.timeline article,
.business-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 247, 242, .65);
}

.timeline span,
.business-grid b {
  color: var(--plum);
  font-weight: 800;
}

.timeline h3,
.business-grid h3 {
  margin: 6px 0 8px;
  color: var(--plum);
  font-size: 18px;
}

.timeline p,
.business-grid p {
  margin: 0;
  color: var(--muted);
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

.modal-company-layout {
  display: grid;
  gap: 20px;
}

.modal-company-layout img {
  width: 100%;
  border-radius: 10px;
}

.yoyogi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.yoyogi-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.lightbox {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(52px, 6vw, 72px) 20px 24px;
  background: rgba(20, 9, 18, .88);
  backdrop-filter: blur(12px);
  cursor: zoom-out;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img,
.lightbox video {
  display: block;
  width: auto;
  height: auto;
  max-width: min(1320px, 94vw);
  max-height: 86vh;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(12, 5, 10, .5);
  background: #140912;
  cursor: default;
}

.lightbox img[hidden],
.lightbox video[hidden] {
  display: none !important;
}

@media (max-width: 1180px) {
  :root {
    --max: 1040px;
  }

  .header-inner {
    grid-template-columns: 170px 1fr auto;
    gap: 14px;
  }

  .primary-nav {
    gap: 18px;
    font-size: 12px;
  }

  .profile-link {
    display: none;
  }

  .hero-stage {
    grid-template-columns: minmax(0, 1fr) 390px;
  }

  .hero-media {
    inset: 0;
  }

  .news-instagram-band {
    grid-template-columns: 1fr;
  }

  .news-archive-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 940px) {
  .header-inner {
    width: min(calc(100% - 28px), var(--max));
    grid-template-columns: 158px 1fr;
  }

  .primary-nav,
  .header-actions .profile-link,
  .header-actions .store-link {
    display: none;
  }

  .menu-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    justify-self: end;
    border-color: rgba(255, 255, 255, .68);
    background:
      radial-gradient(circle at 30% 18%, rgba(255, 255, 255, .24), transparent 34%),
      linear-gradient(135deg, #7d0a73, #3f003a);
    box-shadow: 0 14px 30px rgba(75, 3, 70, .28);
  }

  .menu-button span {
    margin: 0;
    background: #fff;
  }

  .header-actions {
    grid-column: 2;
    justify-self: end;
  }

  .hero-stage {
    height: auto;
    min-height: 0;
    overflow: visible;
    grid-template-columns: 1fr;
    background: #ede4d8;
  }

  .hero-media {
    position: relative;
    inset: auto;
    height: 430px;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(255, 253, 249, .94) 0%, rgba(255, 253, 249, .76) 42%, rgba(255, 253, 249, .30) 66%, rgba(255, 253, 249, 0) 100%);
  }

  .hero-image {
    object-position: 18% center;
  }

  .hero-copy {
    position: absolute;
    inset: 0 auto auto 0;
    margin-left: 24px;
    padding-top: 46px;
    text-shadow: 0 1px 10px rgba(255, 253, 249, .82);
  }

  .shop-cards {
    grid-column: 1;
    padding: 12px 20px 18px;
    background: rgba(47, 28, 42, .18);
  }

  .story-band {
    grid-template-columns: 1fr 1fr;
  }

  .story-cta {
    grid-column: 1 / -1;
  }

  .company-section,
  .company-profile,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .news-instagram-band,
  .story-band,
  .product-section,
  .company-section,
  .footer-inner,
  .copyright {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero-media {
    height: 470px;
  }

  .hero-copy {
    width: calc(100% - 48px);
    padding-top: 42px;
  }

  .hero-copy h1 {
    font-size: 54px;
  }

  .hero-title {
    font-size: 25px;
  }

  .hero-lead {
    width: 275px;
    font-size: 13px;
    line-height: 1.8;
  }

  .shop-card-beach span {
    width: 66%;
    padding: 28px 18px 18px;
  }

  .shop-card-store {
    grid-template-columns: 45% 55%;
  }

  .news-list {
    grid-template-columns: 1fr 1fr;
  }

  .instagram-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .story-band {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-shelf {
    padding: 16px 42px 24px;
  }

  .product-rail {
    grid-auto-columns: 148px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    min-height: 60px;
  }

  :root {
    --header-h: 60px;
  }

  .brand {
    width: 142px;
  }

  .hero-media {
    height: 420px;
  }

  .hero-image {
    object-position: 16% center;
  }

  .hero-copy h1 {
    font-size: 46px;
  }

  .hero-brand-sub {
    font-size: 18px;
  }

  .hero-title {
    font-size: 21px;
  }

  .deep-button {
    min-height: 32px;
    padding: 0 16px;
    font-size: 11px;
  }

  .shop-card-beach {
    min-height: 170px;
  }

  .shop-card-beach span {
    width: 76%;
    min-height: 170px;
  }

  .shop-card b {
    font-size: 22px;
  }

  .news-list {
    grid-template-columns: 1fr;
  }

  .news-archive-hero {
    padding: calc(var(--header-h) + 42px) 0 28px;
  }

  .news-archive-hero-inner,
  .news-archive-section {
    width: min(calc(100% - 28px), var(--max));
  }

  .news-archive-section {
    padding: 28px 0 54px;
  }

  .news-archive-item {
    grid-template-columns: 112px 1fr;
    gap: 12px;
    min-height: 122px;
    padding: 10px;
  }

  .news-archive-item picture,
  .news-archive-item img {
    width: 112px;
    height: 102px;
  }

  .news-archive-item b {
    font-size: 15px;
    line-height: 1.42;
  }

  .news-archive-item em {
    font-size: 11px;
    line-height: 1.55;
  }

  .story-card {
    padding: 20px;
  }

  .product-shelf {
    padding: 16px 38px 22px;
  }
}

/* ============================================================
   2026-06-18 C-plan art direction upgrade
   Modern luxury / apparel-like editorial polish
   ============================================================ */
:root {
  --ink: #20121d;
  --muted: #73636d;
  --ivory: #fbf6ef;
  --paper: #fffdf9;
  --paper-2: #f6eee8;
  --plum: #4b0346;
  --plum-2: #760b6a;
  --deep-plum: #35002f;
  --gold: #c7a66d;
  --line: rgba(75, 3, 70, .13);
  --shadow: 0 26px 70px rgba(45, 11, 39, .16);
  --soft-shadow: 0 16px 42px rgba(45, 11, 39, .08);
  --font-display: "Bodoni 72", "Didot", "Cormorant Garamond", "Times New Roman", "Hiragino Mincho ProN", serif;
  --font-body: "Helvetica Neue", "Avenir Next", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}

body {
  background:
    radial-gradient(circle at 12% 5%, rgba(255, 255, 255, .96) 0, rgba(255, 255, 255, 0) 28%),
    linear-gradient(180deg, #fffdf9 0, #faf3ee 46%, #fff8f4 100%);
  font-family: var(--font-body);
}

.hero-copy h1,
.hero-brand-sub,
.section-kicker h2,
.story-open span,
.story-cta h2,
.product-shelf-head h2,
.gallery-head h3,
.company-copy h2,
.modal-frame h2,
.footer-inner h2 {
  font-family: var(--font-display);
  font-weight: 500;
}

.site-header {
  min-height: 72px;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, .92), rgba(255, 253, 249, .78)),
    url("okaberry-c-luxury/img/hero.webp") center 39% / cover no-repeat;
  border-bottom: 1px solid rgba(75, 3, 70, .08);
  backdrop-filter: blur(18px) saturate(1.1);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 166, 109, .48), transparent);
  pointer-events: none;
}

.site-header.is-scrolled {
  background:
    linear-gradient(90deg, rgba(255, 253, 249, .96), rgba(255, 250, 246, .90)),
    url("okaberry-c-luxury/img/hero.webp") center 39% / cover no-repeat;
  box-shadow: 0 14px 38px rgba(62, 12, 54, .08);
}

.header-inner {
  min-height: 72px;
  grid-template-columns: 196px minmax(0, 1fr) auto;
}

.brand {
  width: 184px;
  transition: transform .45s var(--ease), filter .45s var(--ease);
}

.brand:hover,
.brand:focus-visible {
  outline: none;
  transform: translateY(-1px);
  filter: drop-shadow(0 8px 14px rgba(75, 3, 70, .12));
}

.primary-nav {
  position: relative;
  isolation: isolate;
  gap: clamp(18px, 2vw, 30px);
  padding: 8px 14px;
  border: 1px solid rgba(75, 3, 70, .08);
  border-radius: 999px;
  background: rgba(255, 253, 249, .40);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 700;
}

.primary-nav::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: calc(var(--nav-x, 50) * 1%);
  width: 112px;
  height: 34px;
  border-radius: 999px;
  opacity: var(--nav-hover, 0);
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 45% 50%, rgba(255,255,255,.94), rgba(255,255,255,.28) 72%),
    linear-gradient(120deg, rgba(199,166,109,.26), rgba(75,3,70,.10));
  box-shadow: 0 10px 26px rgba(75, 3, 70, .10);
  transition: left .22s var(--ease), opacity .28s var(--ease);
  pointer-events: none;
}

.primary-nav a {
  padding: 10px 0;
  transition: transform .32s var(--ease), color .32s var(--ease);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--deep-plum);
  outline: none;
  transform: translateY(-1px);
}

.primary-nav a::after {
  inset: auto 8% -3px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--plum));
  transform: scaleX(0);
}

.profile-link {
  min-height: 38px;
  padding: 0 18px;
  border-color: rgba(75, 3, 70, .20);
  background: rgba(255,255,255,.58);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.88);
}

.store-link,
.deep-button,
.footer-store {
  min-height: 38px;
  background:
    radial-gradient(circle at 18% 15%, rgba(255,255,255,.22), transparent 34%),
    linear-gradient(135deg, #65045e, #42003d);
  box-shadow: 0 14px 30px rgba(75, 3, 70, .25);
}

.menu-button {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(75, 3, 70, .18);
  background:
    radial-gradient(circle at 35% 24%, rgba(255,255,255,.94), rgba(255,255,255,.52) 44%, rgba(246,238,232,.90));
  box-shadow: 0 12px 26px rgba(75, 3, 70, .12);
}

.menu-button::before {
  content: "";
  position: absolute;
  inset: -42%;
  background: conic-gradient(from 120deg, transparent, rgba(199,166,109,.34), transparent 38%);
  animation: menuSheen 5s linear infinite;
}

.menu-button span {
  position: relative;
  width: 17px;
  height: 1.5px;
  background: var(--deep-plum);
}

@keyframes menuSheen {
  to { transform: rotate(1turn); }
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 110;
  padding: calc(var(--header-h) + 24px) 18px 24px;
  background:
    radial-gradient(circle at 80% 8%, rgba(199,166,109,.10), transparent 28%),
    linear-gradient(135deg, #fffdf9, #f6eee8),
    url("okaberry-c-luxury/img/hero.webp") center / cover no-repeat;
  backdrop-filter: blur(20px);
}

.mobile-panel nav {
  width: min(100%, 560px);
  border: 1px solid rgba(255,255,255,.70);
  border-radius: 28px;
  background: #fffdf9;
  backdrop-filter: blur(28px) saturate(1.04);
  box-shadow: 0 30px 90px rgba(75, 3, 70, .18);
}

.mobile-panel a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(75, 3, 70, .08);
  color: var(--deep-plum);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .02em;
}

.mobile-panel a::after {
  content: "→";
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gold);
}

.hero-stage {
  height: clamp(430px, 31vw, 462px);
  min-height: 430px;
  background: #e9ddd0;
}

.hero-media::after {
  background:
    linear-gradient(102deg, rgba(255,253,249,.94) 0%, rgba(255,253,249,.76) 26%, rgba(255,253,249,.10) 48%, rgba(255,253,249,0) 63%),
    linear-gradient(90deg, rgba(36,19,31,0) 58%, rgba(36,19,31,.22) 100%);
}

.hero-copy {
  width: min(540px, calc(100vw - 42px));
}

.hero-copy h1 {
  font-size: 54px;
  line-height: .96;
}

.hero-brand-sub {
  margin: 8px 0 16px;
  font-size: clamp(22px, 1.9vw, 28px);
}

.hero-title {
  font-family: var(--font-display);
  margin-top: 16px;
  font-size: clamp(25px, 2vw, 32px);
  font-weight: 500;
}

.hero-lead {
  width: min(385px, 100%);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.9;
}

.deep-button {
  position: relative;
  overflow: hidden;
}

.deep-button::after,
.store-link::after,
.footer-store::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0 30%, rgba(255,255,255,.32) 48%, transparent 66% 100%);
  transform: translateX(-110%);
  transition: transform .7s var(--ease);
}

.deep-button:hover::after,
.store-link:hover::after,
.footer-store:hover::after {
  transform: translateX(110%);
}

.shop-cards {
  grid-template-rows: 190px 210px;
  align-content: center;
  gap: 12px;
}

.shop-card {
  border-color: rgba(255,255,255,.78);
  border-radius: 10px;
  box-shadow: 0 18px 46px rgba(31,14,28,.18);
}

.shop-card-beach span {
  width: 56%;
  padding: 24px 18px 18px;
  background: linear-gradient(90deg, rgba(255,255,255,.22), rgba(255,255,255,.86) 18%, rgba(255,255,255,.91));
}

.shop-card b {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
}

.shop-card em {
  font-family: var(--font-body);
  font-size: 12px;
}

.shop-card strong {
  min-width: 134px;
  height: 30px;
  white-space: nowrap;
}

.shop-card-store {
  grid-template-columns: 44% 56%;
}

.shop-card-store strong {
  min-width: 140px;
}

.shop-card-store b {
  font-size: clamp(20px, 1.45vw, 23px);
  line-height: 1.03;
}

.shop-card-store em {
  margin-top: 5px;
  font-size: 10.5px;
  line-height: 1.30;
}

.shop-card-store span {
  align-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.story-band {
  gap: 14px;
  padding-top: 28px;
}

.story-card,
.story-cta {
  border-radius: 14px;
  border-color: rgba(75,3,70,.11);
  box-shadow: 0 18px 46px rgba(75,3,70,.07);
}

.story-card {
  min-height: 160px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,249,245,.74)),
    radial-gradient(circle at 90% 20%, rgba(199,166,109,.11), transparent 32%);
}

.story-open i {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #760b6a, #43033d);
  box-shadow: 0 14px 28px rgba(75,3,70,.24);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.story-open:hover i,
.story-open:focus-visible i {
  transform: rotate(90deg) scale(1.06);
  box-shadow: 0 18px 38px rgba(75,3,70,.30);
}

.product-section {
  width: min(calc(100% - 24px), 1500px);
  scroll-margin-top: calc(var(--header-h) + 18px);
  padding: clamp(42px, 5vw, 70px) 0 clamp(54px, 7vw, 90px);
  background: transparent;
}

.product-shelf {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-shelf-head {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 0;
  margin: 0 0 34px;
  padding-inline: 0;
  text-align: center;
}

.product-title-row {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: 100%;
}

.product-shelf-head h2,
.gallery-head h3,
.company-copy h2 {
  margin: 0;
  color: var(--plum);
  font-size: clamp(32px, 3.25vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.product-shelf-head .eyebrow,
.gallery-head .eyebrow,
.company-copy .eyebrow {
  display: block;
  margin: 0;
  color: #a38b70;
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
}

.product-shelf-head p:not(.eyebrow),
.gallery-head p:last-child,
.company-copy p:last-child {
  max-width: 760px;
  margin: 0;
  color: #8b7b84;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.product-store-link {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 14px;
  white-space: nowrap;
}

.product-card-grid {
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.55vw, 22px);
  max-width: 1120px;
  margin-inline: auto;
  overflow: visible;
}

.product-card {
  display: block;
  min-width: 0;
  min-height: 0;
  border: 1px solid rgba(67, 3, 61, .10);
  border-radius: 7px;
  overflow: hidden;
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 28px rgba(75,3,70,.08);
  text-align: left;
  transition: transform .42s var(--ease), box-shadow .42s var(--ease);
}

.product-card:hover,
.product-card:focus-visible {
  outline: none;
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(75,3,70,.16);
}

.product-card picture {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1.45 / 1;
  background: #f2e8e2;
}

.product-card img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  filter: none;
  transition: transform .7s var(--ease);
}

.product-card--contain picture {
  background: #fff;
}

.product-card--contain img {
  object-fit: contain;
  padding: clamp(8px, 1.1vw, 14px);
}

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

.product-card span {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 18px 20px 20px;
  color: var(--ink);
  background: rgba(255,255,255,.96);
}

.product-card b {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.12vw, 18px);
  font-weight: 800;
  line-height: 1.35;
}

.product-card small {
  color: var(--muted);
  font-size: clamp(11px, .8vw, 13px);
  font-weight: 600;
  line-height: 1.55;
}

.product-note {
  display: none;
}

.shelf-arrow {
  display: none;
}

.gallery-ribbon {
  width: 100vw;
  margin: clamp(70px, 8vw, 110px) 0 0 calc(50% - 50vw);
  padding: clamp(70px, 8vw, 110px) max(24px, calc((100vw - var(--max)) / 2)) clamp(72px, 8vw, 110px);
  border: 0;
  border-radius: 0;
  background: #f6ece6;
}

.gallery-head {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin: 0 0 48px;
  text-align: center;
}

.gallery-head .eyebrow {
  margin: 0;
}

.gallery-head h3 {
  margin: 0;
}

.gallery-head p:last-child {
  margin: 0;
}

.gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 24px;
  overflow-x: auto;
  padding: 0 0 18px;
  scrollbar-width: none;
}

.gallery-strip::-webkit-scrollbar {
  display: none;
}

.gallery-strip button {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 24px 58px rgba(64,25,45,.14);
  cursor: zoom-in;
  touch-action: manipulation;
}

.gallery-strip img,
.gallery-strip video {
  display: block;
  width: 100%;
  aspect-ratio: 1 / .98;
  object-fit: cover;
  border-radius: 18px;
  pointer-events: none;
  transition: transform .75s var(--ease), filter .75s var(--ease);
}

.gallery-strip button:hover img,
.gallery-strip button:focus-visible img,
.gallery-strip button:hover video,
.gallery-strip button:focus-visible video {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.company-section {
  display: block;
  padding: clamp(76px, 8vw, 120px) 0 clamp(78px, 8vw, 116px);
}

.company-copy {
  max-width: 850px;
  margin: 0 auto 34px;
  text-align: center;
}

.company-copy h2 {
  margin: 0;
}

.company-copy p:last-child {
  margin: 0 auto;
}

.company-profile {
  display: grid;
  grid-template-columns: minmax(360px, 490px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 5vw, 64px);
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid rgba(75,3,70,.10);
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 24px 70px rgba(75,3,70,.08);
}

.company-profile-visual {
  margin: 0;
}

.company-profile-visual img {
  width: 100%;
  height: auto;
  min-height: 0;
  display: block;
  border-radius: 13px;
}

.company-detail-list {
  display: grid;
  align-content: center;
  gap: 0;
  min-width: 0;
  margin: 0;
}

.company-detail-list div {
  display: grid;
  grid-template-columns: minmax(112px, .22fr) minmax(0, 1fr);
  column-gap: clamp(28px, 3.6vw, 58px);
  align-items: center;
  min-height: 56px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(75,3,70,.12);
}

.company-detail-list dt {
  color: #7a1a70;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
}

.company-detail-list dd {
  min-width: 0;
  margin: 0;
  color: #50464e;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
}

.site-footer {
  background:
    radial-gradient(circle at 70% 0%, rgba(142, 16, 124, .36), transparent 34%),
    linear-gradient(135deg, #4c0045, #3b0036 62%, #540047);
  border: 0;
  color: rgba(255,255,255,.78);
}

.footer-inner {
  width: min(calc(100% - 64px), var(--max));
  min-height: 310px;
  grid-template-columns: 1.55fr repeat(4, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  padding: clamp(62px, 7vw, 86px) 0 clamp(46px, 5vw, 64px);
}

.footer-logo {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 34px rgba(21, 0, 24, .18);
}

.footer-logo img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
}

.footer-logo::before,
.footer-logo::after {
  content: none;
}

.footer-about p {
  max-width: 310px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}

.footer-inner h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 18px;
}

.footer-social a,
.footer-inner nav a,
.footer-inner nav button {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.64);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
  text-align: left;
  cursor: pointer;
  transition: color .28s var(--ease), transform .28s var(--ease);
}

.footer-inner nav a,
.footer-inner nav button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
}

.footer-social a:hover,
.footer-inner nav a:hover,
.footer-inner nav button:hover,
.footer-inner nav a:focus-visible,
.footer-inner nav button:focus-visible {
  color: #fff;
  outline: none;
  transform: translateX(2px);
}

.footer-social {
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 11px;
}

.copyright {
  width: 100%;
  margin: 0;
  padding: 28px 24px 34px;
  border-top: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.46);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

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

.luxury-modal {
  width: min(920px, calc(100% - 32px));
  border-radius: 26px;
}

.luxury-modal::backdrop {
  background: rgba(42, 20, 36, .58);
  backdrop-filter: blur(9px);
}

.modal-frame {
  border-radius: 26px;
  box-shadow: 0 32px 90px rgba(42, 11, 36, .25);
}

.company-modal .modal-frame {
  padding: 0;
}

.company-modal .eyebrow,
.company-modal h2 {
  display: none;
}

.modal-company-layout {
  gap: 0;
}

.modal-company-layout img {
  border-radius: 0;
}

.modal-company-layout .deep-button {
  justify-self: center;
  margin: 0 0 28px;
}

.company-modal {
  width: min(780px, calc(100% - 32px));
}

.company-modal .modal-frame {
  overflow: hidden;
  background: #fffdf9;
}

.company-modal-head {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(22px, 4vw, 30px);
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 255, 255, .18), transparent 34%),
    linear-gradient(135deg, #76006b 0%, #54004d 58%, #41013c 100%);
  color: #fff;
}

.company-modal-head h2 {
  display: block;
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.1vw, 25px);
  font-weight: 500;
  letter-spacing: .04em;
}

.company-modal-head .modal-close {
  position: static;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  box-shadow: none;
}

.company-modal-head .modal-close:hover,
.company-modal-head .modal-close:focus-visible {
  background: rgba(255, 255, 255, .28);
  color: #fff;
  transform: rotate(90deg);
}

.company-modal-body {
  max-height: calc(86vh - 76px);
  overflow: auto;
  padding: clamp(26px, 4vw, 40px);
}

.company-modal-list {
  display: grid;
  margin: 0;
}

.company-modal-list div {
  display: grid;
  grid-template-columns: minmax(112px, 140px) minmax(0, 1fr);
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(73, 17, 66, .11);
}

.company-modal-list dt {
  color: var(--plum);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .03em;
}

.company-modal-list dd {
  margin: 0;
  color: #43343d;
  font-size: 14px;
  line-height: 1.9;
}

.ceo-profile-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(73, 17, 66, .07);
  border-radius: 16px;
  background: #f8f3ee;
}

.ceo-profile-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(72, 28, 63, .08);
}

.ceo-profile-card h3 {
  margin: 3px 0 3px;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .04em;
}

.ceo-title {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
}

.ceo-profile-card p:last-child {
  margin: 0;
  color: #71646b;
  font-size: 13px;
  line-height: 1.9;
}

.company-pdf-button {
  display: flex;
  width: min(320px, 100%);
  margin: 24px auto 0;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 184px minmax(0, 1fr) auto;
  }

  .brand {
    width: 174px;
  }

  .primary-nav {
    gap: 14px;
    font-size: 12px;
  }

  .product-card-grid {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-store-link {
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .product-section {
    width: min(calc(100% - 28px), 1500px);
  }

  .product-shelf-head {
    align-items: center;
    justify-items: center;
    min-height: 0;
    margin-bottom: 26px;
    padding-inline: 0;
  }

  .product-title-row {
    gap: 10px;
  }

  .product-store-link {
    justify-self: center;
    min-height: 42px;
    padding-inline: 20px;
    font-size: 12px;
  }

  .product-card-grid {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 720px;
    overflow: visible;
    overscroll-behavior-x: auto;
    scroll-snap-type: none;
    scrollbar-width: auto;
  }

  .product-card-grid::-webkit-scrollbar {
    display: initial;
  }

  .product-card {
    scroll-snap-align: none;
  }

  .product-card:nth-last-child(1):nth-child(odd) {
    width: min(100%, 360px);
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 600px) {
  .product-shelf-head {
    gap: 8px;
  }

  .product-title-row {
    gap: 8px;
  }

  .product-shelf-head h2,
  .gallery-head h3,
  .company-copy h2 {
    grid-column: auto;
    font-size: clamp(27px, 7.5vw, 32px);
  }

  .product-shelf-head p:not(.eyebrow),
  .gallery-head p:last-child,
  .company-copy p:last-child {
    max-width: 340px;
    font-size: 13px;
    line-height: 1.75;
  }

  .product-store-link {
    grid-column: auto;
    justify-self: center;
    width: min(100%, 206px);
    min-height: 38px;
    padding-inline: 13px;
    font-size: 11px;
  }

  .product-card-grid {
    width: min(100%, 360px);
    grid-template-columns: 1fr;
    gap: 14px;
    margin-inline: auto;
  }

  .product-card:nth-last-child(1):nth-child(odd) {
    width: 100%;
    grid-column: auto;
    justify-self: stretch;
  }
}

@media (max-width: 360px) {
  .product-title-row {
    gap: 8px;
  }

  .product-store-link {
    padding-inline: 18px;
  }
}

@media (max-width: 940px) {
  .site-header,
  .site-header.is-scrolled {
    min-height: 64px;
  }

  :root {
    --header-h: 64px;
  }

  .header-inner {
    min-height: 64px;
    grid-template-columns: 160px 1fr;
  }

  .brand {
    width: 152px;
  }

  .menu-button {
    border-color: rgba(255, 255, 255, .68);
    background:
      radial-gradient(circle at 30% 18%, rgba(255, 255, 255, .24), transparent 34%),
      linear-gradient(135deg, #7d0a73, #3f003a);
    box-shadow: 0 14px 30px rgba(75, 3, 70, .28);
  }

  .menu-button span {
    background: #fff;
  }

  .hero-stage {
    display: grid;
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    background: #ede4d8;
  }

  .hero-media {
    height: 430px;
  }

  .hero-copy {
    min-height: 430px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .shop-cards {
    position: relative;
    grid-column: 1;
    align-self: auto;
    background:
      linear-gradient(180deg, rgba(62, 30, 54, .15), rgba(62, 30, 54, .08)),
      url("okaberry-c-luxury/img/hero.webp") center bottom / cover no-repeat;
    padding: 18px;
  }

  .shop-card-beach span {
    width: 56%;
  }

  .shop-cards {
    grid-template-rows: 184px 270px;
  }

  .shop-card-store {
    min-height: 270px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .news-instagram-band {
    margin-top: 24px;
  }
}

@media (max-width: 720px) {
  .hero-copy h1 {
    font-size: 46px;
    line-height: .98;
  }

  .hero-lead {
    width: min(320px, 100%);
    font-size: 12.5px;
  }

  .shop-cards {
    padding: 14px;
    grid-template-rows: 184px 226px;
  }

  .shop-card-beach span {
    width: 64%;
    padding: 22px 12px 18px;
    background: linear-gradient(90deg, rgba(255,255,255,.22), rgba(255,255,255,.86) 18%, rgba(255,255,255,.91));
  }

  .product-card-grid {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: 1fr;
    width: min(100%, 360px);
    overflow: visible;
  }

  .gallery-ribbon {
    margin-top: 64px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .gallery-strip {
    grid-auto-columns: minmax(260px, 78vw);
  }

  .company-profile {
    padding: 10px;
    border-radius: 20px;
  }

  .company-modal-head {
    min-height: 68px;
  }

  .company-modal-body {
    padding: 24px 22px 28px;
  }

  .company-modal-list div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 12px 0;
  }

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

  .ceo-profile-card img {
    width: 104px;
    height: 104px;
  }

  .footer-inner {
    width: min(calc(100% - 36px), var(--max));
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    grid-template-columns: 146px 1fr;
  }

  .brand {
    width: 138px;
  }

  .mobile-panel a {
    font-size: 16px;
  }

  .hero-copy {
    padding-top: 38px;
  }

  .hero-copy h1 {
    font-size: 38px;
    line-height: 1;
  }

  .hero-title {
    font-size: 22px;
  }

  .shop-card-store {
    grid-template-columns: 36% 64%;
    min-height: 230px;
  }

  .shop-card-store span {
    min-width: 0;
    padding-inline: 12px;
  }

  .shop-card-store b {
    font-size: 18px;
    line-height: 1.12;
  }

  .shop-card-store em {
    font-size: 10.5px;
  }

  .shop-card-store strong {
    min-width: 118px;
    padding-inline: 10px;
    font-size: 10.5px;
  }
}

@media (max-width: 940px) {
  .mobile-menu-visual {
    position: fixed;
    z-index: 105;
    top: 11px;
    right: 14px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 999px;
    background:
      radial-gradient(circle at 30% 18%, rgba(255, 255, 255, .24), transparent 34%),
      linear-gradient(135deg, #7d0a73, #3f003a);
    box-shadow: 0 14px 30px rgba(75, 3, 70, .28);
    pointer-events: none;
  }

  .mobile-menu-visual span {
    position: absolute;
    left: 12px;
    right: 12px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform .26s var(--ease);
  }

  .mobile-menu-visual span:first-child {
    top: 16px;
  }

  .mobile-menu-visual span:last-child {
    top: 24px;
  }

  .site-header:has(.menu-button[aria-expanded="true"]) .mobile-menu-visual span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header:has(.menu-button[aria-expanded="true"]) .mobile-menu-visual span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .header-actions {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background:
      radial-gradient(circle at 30% 18%, rgba(255, 255, 255, .24), transparent 34%),
      linear-gradient(135deg, #7d0a73, #3f003a);
    box-shadow: 0 14px 30px rgba(75, 3, 70, .28);
  }

  .header-actions::before,
  .header-actions::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 12px;
    right: 12px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform .26s var(--ease);
  }

  .header-actions::before {
    top: 16px;
  }

  .header-actions::after {
    top: 24px;
  }

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

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

  .header-actions .menu-button {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .header-actions .menu-button::before,
  .header-actions .menu-button span {
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .company-profile {
    grid-template-columns: 1fr;
    gap: 30px;
    width: min(calc(100% - 28px), 720px);
  }

  .company-profile-visual {
    width: min(100%, 490px);
    margin: 0 auto;
  }

  .company-detail-list div {
    grid-template-columns: 132px minmax(0, 1fr);
    column-gap: 26px;
  }
}

@media (max-width: 600px) {
  .company-profile {
    gap: 22px;
    padding: 14px;
    border-radius: 20px;
  }

  .company-profile-visual img {
    border-radius: 12px;
  }

  .company-detail-list div {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 0;
    padding: 12px 4px;
  }

  .company-detail-list dt,
  .company-detail-list dd {
    font-size: 13.5px;
    line-height: 1.7;
  }
}

/* company contact button (2026-07-05) */
.company-contact {
  margin-top: 28px;
  text-align: center;
}
.company-contact .deep-button {
  min-height: 48px;
  padding: 0 34px;
  font-size: 14px;
}
