:root {
  --sesame: #b8860b;
  --sesame-light: #e8c547;
  --sesame-dark: #5c3d0a;
  --brown: #3d2914;
  --cream: #faf6ee;
  --cream-dark: #f0e6d4;
  --ink: #1f1408;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(61, 41, 20, 0.12);
  --radius: 20px;
  --font-sans: "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: "Noto Serif KR", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: var(--sesame-dark);
}

.container {
  width: min(1180px, calc(100% - clamp(1.25rem, 5vw, 3rem)));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(92, 61, 10, 0.08);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  display: block;
  width: 40px;
  height: auto;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.brand-text small {
  font-size: 0.72rem;
  color: #7a6248;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
  font-size: 0.92rem;
}

.nav a {
  text-decoration: none;
  color: var(--brown);
  font-weight: 500;
}

.nav-cta {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: var(--brown);
  color: var(--cream) !important;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.2rem;
  border-radius: 999px;
  background: rgba(92, 61, 10, 0.08);
  border: 1px solid rgba(92, 61, 10, 0.12);
}

.lang-switch__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--brown);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}

.lang-switch__btn.is-active {
  background: var(--white);
  color: var(--sesame-dark);
  box-shadow: 0 2px 8px rgba(61, 41, 20, 0.1);
}

body[data-lang="ja"] {
  --font-sans: "Noto Sans JP", "Noto Sans KR", -apple-system, BlinkMacSystemFont,
    sans-serif;
  --font-serif: "Noto Serif JP", "Noto Serif KR", Georgia, serif;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(92, 61, 10, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  border-radius: 2px;
  background: var(--brown);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(232, 197, 71, 0.35), transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(184, 134, 11, 0.2), transparent 40%),
    linear-gradient(180deg, #fff9ef 0%, var(--cream) 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(184, 134, 11, 0.14);
  color: var(--sesame-dark);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--sesame-dark);
}

.lead {
  max-width: 36rem;
  font-size: 1.05rem;
  color: #4a3824;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(145deg, var(--sesame), #9a7209);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(184, 134, 11, 0.28);
}

.btn-ghost {
  border-color: rgba(92, 61, 10, 0.2);
  color: var(--brown);
  background: rgba(255, 255, 255, 0.7);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 1rem 1.25rem;
  font-size: 1rem;
}

.hero-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--brown);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.hero-card-label {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sesame-light);
}

.hero-card h2 {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1.3;
}

.hero-card ul {
  margin: 0.85rem 0 1rem;
  padding-left: 1.1rem;
  color: #f3e8d4;
}

.hero-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0.75rem 0 0;
}

.hero-products img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.15);
}

.hero-card-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sesame-light);
  text-decoration: none;
}

.hero-card-link:hover {
  text-decoration: underline;
}

.products-lead {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  color: #6f5840;
  font-size: 1rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-card {
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(92, 61, 10, 0.08);
  box-shadow: var(--shadow);
  text-align: center;
}

.product-card__img {
  border-radius: 14px;
  overflow: hidden;
  background: #faf6ee;
  margin-bottom: 0.85rem;
}

.product-card__img img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.product-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #7a6248;
  line-height: 1.5;
}

.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section-muted {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.section-dark {
  background: var(--brown);
  color: var(--cream);
}

.section-accent {
  background: linear-gradient(180deg, #fff8ea, var(--cream-dark));
}

.section-label {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sesame-dark);
}

.section-dark .section-label {
  color: var(--sesame-light);
}

.section-title,
.split h2,
.franchise-grid h2,
.app-grid h2 {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.prose {
  color: #4a3824;
  font-size: 1.02rem;
}

.section-dark .prose,
.section-dark p {
  color: #f0e3cf;
}

.store-intro {
  margin: 0;
  max-width: 36rem;
  color: #6f5840;
  font-size: 0.98rem;
}

.store-hub {
  margin-top: 1.25rem;
}

.store-picker-block {
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(92, 61, 10, 0.14);
}

.store-picker-label,
.store-detail-label {
  margin: 0 0 0.75rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sesame-dark);
}

.store-detail-block {
  margin-top: 1.15rem;
  padding: 1.15rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(92, 61, 10, 0.12);
  box-shadow: 0 10px 36px rgba(61, 41, 20, 0.07);
}

.store-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0;
}

.store-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(92, 61, 10, 0.12);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(61, 41, 20, 0.06);
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.store-card:hover {
  transform: translateY(-1px);
  border-color: rgba(184, 134, 11, 0.35);
}

.store-card.is-active {
  border-color: rgba(184, 134, 11, 0.55);
  box-shadow: 0 12px 32px rgba(184, 134, 11, 0.16);
}

.store-card__badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(184, 134, 11, 0.12);
  color: var(--sesame-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.store-card__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.3;
}

.store-card__meta,
.store-card__hours {
  font-size: 0.82rem;
  color: #7a6248;
  line-height: 1.4;
}

.store-panels {
  margin-top: 0;
}

.store-panel {
  display: none;
  animation: storeFade 0.25s ease;
}

.store-panel.is-active {
  display: block;
}

@keyframes storeFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.store-layout--compact {
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.85rem;
  align-items: stretch;
  min-height: 480px;
}

.store-layout--compact > * {
  min-width: 0;
}

.store-layout--compact .store-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.45rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(92, 61, 10, 0.1);
  box-shadow: 0 8px 24px rgba(61, 41, 20, 0.06);
}

.store-info__logo {
  display: block;
  width: 52px;
  height: auto;
  margin-bottom: 0.15rem;
}

.store-layout--compact .store-info h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.25;
}

.store-layout--compact .store-tagline {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
}

.store-facts {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0.65rem 0 0;
  border-top: 1px solid rgba(92, 61, 10, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.store-facts li {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.35rem;
  align-items: start;
  font-size: 0.82rem;
  line-height: 1.4;
}

.store-facts__label {
  font-weight: 700;
  color: var(--sesame-dark);
}

.store-facts__value {
  color: #5c4a36;
  word-break: break-word;
}

.store-facts__value--muted {
  color: #9a8268;
}

.store-facts__link {
  color: var(--sesame-dark);
  font-weight: 600;
  text-decoration: none;
}

.store-facts__link:hover {
  text-decoration: underline;
}

.ig-post--compact {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.ig-post--compact .ig-post__media:not(.ig-post__media--soon) {
  flex: 1 1 auto;
  width: 100%;
  min-height: 260px;
  aspect-ratio: 1190 / 1792;
}

.ig-post--compact .ig-post__body {
  flex-shrink: 0;
  padding: 0.55rem 0.85rem 0.75rem;
}

.ig-post--compact .ig-post__caption {
  font-size: 0.8rem;
  line-height: 1.35;
}

.ig-post--compact .ig-post__cta {
  margin-top: 0.35rem;
  font-size: 0.78rem;
}

.ig-post__media--soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(180deg, #faf6ee 0%, #f0e6d4 100%);
  color: #7a6248;
  text-align: center;
  padding: 1.5rem;
}

.ig-post__media--soon img {
  width: 72px;
  height: auto;
  opacity: 0.85;
}

.ig-post__media--soon p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
}

.store-gallery--compact {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 0.75rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dbdbdb;
  box-shadow: 0 8px 32px rgba(61, 41, 20, 0.1);
}

.store-gallery--compact .store-gallery__title {
  flex-shrink: 0;
  margin-bottom: 0.5rem;
}

.store-gallery--compact .store-gallery__preview {
  flex: 1 1 auto;
  min-height: 0;
  margin: 0 0 0.5rem;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
}

.store-gallery--compact .store-gallery__preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.store-gallery__preview--empty {
  display: grid;
  place-items: center;
  min-height: 100%;
  background: linear-gradient(180deg, #faf6ee 0%, #f0e6d4 100%);
  border: 1px dashed rgba(92, 61, 10, 0.18);
  color: #9a8268;
  font-size: 0.88rem;
  text-align: center;
  padding: 1rem;
}

.store-gallery--compact .store-gallery__grid--photos {
  flex-shrink: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.store-gallery--compact .store-gallery__item {
  aspect-ratio: 1;
}

.store-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.store-instagram {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sesame-dark);
  text-decoration: none;
}

.store-instagram:hover {
  text-decoration: underline;
}

.store-placeholder {
  margin: 0.35rem 0 0;
  color: #7a6248;
  font-size: 0.92rem;
}

.store-coming-soon {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 2rem;
  border-radius: 8px;
  background: var(--white);
  border: 1px dashed rgba(92, 61, 10, 0.2);
  color: #7a6248;
  text-align: center;
}

.store-gallery__title {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sesame-dark);
}

.store-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.store-gallery__grid--photos {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.store-gallery__grid--photos-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.store-gallery__grid--empty {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.store-gallery__item {
  position: relative;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  aspect-ratio: 4 / 5;
}

.store-gallery__item.is-active {
  border-color: var(--sesame);
}

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

.store-gallery__item span {
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
}

.store-gallery__preview {
  margin: 0.75rem 0 0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(92, 61, 10, 0.1);
  box-shadow: 0 8px 24px rgba(61, 41, 20, 0.08);
}

.store-gallery__preview img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.store-gallery__placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed rgba(92, 61, 10, 0.18);
  color: #9a8268;
  font-size: 0.82rem;
  text-align: center;
  padding: 0.5rem;
}

.store-info {
  padding: 0.25rem 0;
}

.store-info h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.65rem;
}

.ig-post {
  display: block;
  width: 100%;
  max-width: none;
  margin-left: 0;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dbdbdb;
  box-shadow: 0 8px 32px rgba(61, 41, 20, 0.1);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ig-post:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(61, 41, 20, 0.14);
}

.ig-post__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #efefef;
}

.ig-post__avatar {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #efefef;
  object-fit: cover;
  background: #faf6ee;
}

.ig-post__user {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.ig-post__user strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: #262626;
}

.ig-post__user span {
  font-size: 0.75rem;
  color: #8e8e8e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ig-post__media {
  position: relative;
  aspect-ratio: 1190 / 1792;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}

.ig-post__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.55s ease;
}

.ig-post__img.is-day {
  opacity: 1;
}

.ig-post__img.is-night {
  opacity: 0;
}

.ig-post__media.is-hover .ig-post__img.is-day,
.ig-post__media.is-night .ig-post__img.is-day {
  opacity: 0;
}

.ig-post__media.is-hover .ig-post__img.is-night,
.ig-post__media.is-night .ig-post__img.is-night {
  opacity: 1;
}

.ig-post__body {
  padding: 0.65rem 1rem 1rem;
}

.ig-post__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  color: #262626;
}

.ig-post__actions svg {
  display: block;
  fill: currentColor;
}

.ig-post__caption {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #262626;
}

.ig-post__caption strong {
  font-weight: 600;
  margin-right: 0.35rem;
}

.ig-post__cta {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0095f6;
}

.store-badge {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(184, 134, 11, 0.12);
  color: var(--sesame-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.store-hanja {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: #8a6d4f;
  letter-spacing: 0.06em;
}

.store-tagline {
  margin: 0.35rem 0 0.75rem;
  color: #7a6248;
  font-size: 0.95rem;
}

.store-info address {
  margin: 0;
  font-style: normal;
  color: #5c4a36;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.store-hours {
  margin: 0.35rem 0 0.75rem;
  font-size: 0.9rem;
  color: #7a6248;
}

.process-head {
  max-width: 42rem;
}

.process-lead {
  margin: 0;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  line-height: 1.6;
  color: #e8d5b8;
}

.process-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 400px) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  margin-top: 1.75rem;
}

.process-ig {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dbdbdb;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.process-ig__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #efefef;
}

.process-ig__avatar {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #efefef;
  object-fit: cover;
  background: #faf6ee;
}

.process-ig__user {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.process-ig__user strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: #262626;
}

.process-ig__user span {
  font-size: 0.75rem;
  color: #8e8e8e;
}

.process-ig__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #111;
  overflow: hidden;
}

.process-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-content: center;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 100%;
  padding: 1.35rem 1.4rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-step__num {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--sesame-light);
}

.process-step h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.process-step p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: #f0e3cf;
}

.franchise-grid,
.app-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.check-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sesame-dark);
  font-weight: 700;
}

.franchise-panel,
.download-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(92, 61, 10, 0.08);
}

.franchise-panel h3,
.download-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
}

.hint {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: #7a6248;
}

.install-steps {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: #4a3824;
}

.app-icon-wrap {
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.app-icon-img {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 22px;
}

.site-footer {
  padding: 2.5rem 0;
  background: var(--ink);
  color: #d8c9b4;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #f0e3cf;
}

.footer-inner p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links a {
  color: #f0e3cf;
  text-decoration: none;
  font-size: 0.92rem;
}

code {
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
  background: rgba(92, 61, 10, 0.08);
  font-size: 0.9em;
}

@media (max-width: 1100px) {
  .store-layout--compact {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    min-height: 0;
    gap: 1rem;
  }

  .store-layout--compact .store-info,
  .store-layout--compact .ig-post--compact,
  .store-layout--compact .store-gallery--compact {
    height: auto;
    min-height: 0;
  }

  .store-layout--compact .ig-post--compact {
    max-width: 420px;
    margin-inline: auto;
    width: 100%;
  }

  .store-layout--compact .ig-post__media:not(.ig-post__media--soon) {
    flex: none;
    width: 100%;
    min-height: 0;
    max-height: none;
    aspect-ratio: 1190 / 1792;
  }

  .store-layout--compact .store-gallery--compact {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }

  .store-gallery--compact .store-gallery__preview {
    flex: none;
    aspect-ratio: 4 / 5;
    max-height: 480px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.85rem;
    border-radius: 16px;
    background: rgba(250, 246, 238, 0.98);
    border: 1px solid rgba(92, 61, 10, 0.1);
    box-shadow: 0 18px 40px rgba(61, 41, 20, 0.14);
  }

  .site-header.is-nav-open .nav {
    display: flex;
  }

  .nav a {
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
  }

  .nav a:hover {
    background: rgba(184, 134, 11, 0.08);
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.25rem;
  }

  .lang-switch {
    align-self: center;
    margin-bottom: 0.35rem;
  }

  .hero-grid,
  .split,
  .product-grid,
  .franchise-grid,
  .app-grid,
  .store-layout,
  .store-picker,
  .process-showcase,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .store-picker {
    display: flex;
    overflow-x: auto;
    gap: 0.75rem;
    padding-bottom: 0.25rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .store-card {
    flex: 0 0 min(82vw, 280px);
    scroll-snap-align: start;
  }

  .process-ig {
    max-width: none;
    margin-inline: auto;
    width: min(100%, 400px);
  }

  .store-layout--compact {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    min-height: 0;
    gap: 1rem;
  }

  .store-layout--compact .ig-post--compact,
  .store-layout--compact .store-gallery--compact {
    height: auto;
    min-height: 0;
    max-width: none;
    margin-inline: 0;
    width: 100%;
  }

  .store-layout--compact .ig-post__media:not(.ig-post__media--soon) {
    flex: none;
    min-height: 0;
    aspect-ratio: 1190 / 1792;
  }

  .store-gallery--compact .store-gallery__preview {
    flex: none;
    aspect-ratio: 4 / 5;
    max-height: none;
  }

  .store-detail-block {
    padding: 0.85rem;
    overflow: hidden;
  }

  .store-gallery__grid--photos-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero {
    padding: 2.5rem 0 3.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .brand-text small {
    display: none;
  }

  .store-hub {
    margin-top: 1rem;
  }

  .store-detail-block {
    padding: 0.75rem;
    border-radius: 14px;
  }

  .store-layout--compact .store-info {
    padding: 0.9rem 1rem;
  }

  .store-facts li {
    grid-template-columns: 2.75rem 1fr;
    font-size: 0.8rem;
  }

  .store-layout--compact .ig-post--compact {
    max-width: none;
  }

  .store-layout--compact .store-gallery--compact {
    max-width: none;
    padding: 0.65rem;
  }

  .store-gallery__grid--photos-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }

  .hero-card {
    padding: 1.5rem;
  }

  .franchise-panel,
  .download-card {
    padding: 1.5rem;
  }

  .process-step {
    padding: 1.15rem 1.2rem;
  }
}

@media (min-width: 901px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1100px) {
  .process-showcase {
    grid-template-columns: 400px 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-content: stretch;
  }
}
