/* Along the Way — editorial storefront */

:root {
  --color-bg: #f7f4ef;
  --color-menu: #f3eee6;
  --color-text: #2b211c;
  --color-text-secondary: #6f6259;
  --color-active: #6a4532;
  --color-gold: #a8875b;
  --color-line: rgba(43, 33, 28, 0.14);
  --color-overlay: rgba(43, 33, 28, 0.08);

  --font-serif: "Cormorant Garamond", "Times New Roman", Times, serif;
  --font-sans: "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --menu-width-desktop: 320px;
  --menu-width-tablet: 360px;
  --menu-width-mobile: min(88vw, 360px);
  --menu-duration: 380ms;
  --menu-ease: cubic-bezier(0.25, 0.1, 0.25, 1);

  --header-pad-x: clamp(1.25rem, 4vw, 3rem);
  --header-pad-y: clamp(0.78rem, 1.75vw, 1.15rem); /* ~12–15% tighter than prior */
  /* Shared header geometry — in-flow only (never fixed/sticky) */
  --header-brand-inset: 0.15rem;
  --site-header-height: calc(44px + var(--header-pad-y) * 2 + var(--safe-top));
  --section-pad: clamp(2.75rem, 6vw, 4.75rem);
  --content-max: 90rem;

  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Shared site header (document flow — never fixed/sticky) ——— */

.site-header {
  position: relative;
  z-index: 60;
  width: 100%;
  background: var(--color-bg);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding-top: calc(var(--header-pad-y) + var(--safe-top));
  padding-bottom: var(--header-pad-y);
  padding-left: calc(var(--header-pad-x) + var(--safe-left));
  padding-right: calc(var(--header-pad-x) + var(--safe-right));
  box-sizing: border-box;
  min-height: var(--site-header-height);
}

.menu-toggle {
  position: relative;
  top: auto;
  left: auto;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin: 0;
  flex-shrink: 0;
}

.menu-toggle__line {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--color-text);
  transition: opacity 200ms ease, transform 200ms ease;
}

body.menu-open .menu-toggle__line:nth-child(2) {
  opacity: 0.55;
}

.brand-mark {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--color-text);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  height: 44px;
  margin-left: var(--header-brand-inset);
  flex-shrink: 1;
  min-width: 0;
}

.site-header__account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  flex-shrink: 0;
  color: var(--color-text);
}

.site-header__account-icon {
  display: block;
  width: 20px;
  height: 20px;
}

/* Legacy class hooks (unused after shared header; kept safe) */
.hero__brand,
.page-brand {
  display: none;
}

.page-brand-wrap {
  display: none;
}

/* ——— Overlay ——— */

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--color-overlay);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--menu-duration) var(--menu-ease),
    visibility var(--menu-duration) var(--menu-ease);
}

body.menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ——— Side menu ——— */

.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: var(--menu-width-desktop);
  height: 100vh;
  height: 100dvh;
  max-width: 100%;
  background: var(--color-menu);
  transform: translateX(-105%);
  transition: transform var(--menu-duration) var(--menu-ease);
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--header-pad-y) + var(--safe-top));
  padding-right: clamp(1.5rem, 3vw, 2rem);
  padding-bottom: calc(1.75rem + var(--safe-bottom));
  /* Align nav copy with the page brand column beside the hamburger */
  padding-left: calc(var(--header-pad-x) + var(--safe-left) + 44px + var(--header-brand-inset));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

body.menu-open .side-menu {
  transform: translateX(0);
}

.side-menu__header {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding-left: 0;
  margin: 0 0 2.75rem;
}

.side-menu__brand-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  color: inherit;
}

.side-menu__eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin: 0;
}

.side-menu__brand {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.4vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--color-text);
  margin: 0;
}

.side-menu__divider {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-line);
  border: 0;
  margin: 1.5rem 0;
}

.side-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.side-menu__nav--primary {
  flex: 1;
}

.side-menu__secondary {
  margin-top: 0;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.35rem 0;
  font-size: 0.82rem;
  font-weight: 450;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  width: fit-content;
  max-width: 100%;
  transition: color 220ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.55rem;
  width: 1.35rem;
  height: 1px;
  background: var(--color-active);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--color-text);
  outline: none;
}

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

.nav-link.is-active {
  color: var(--color-text);
}

.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-item--shop {
  position: relative;
  width: 100%;
}

.nav-item__row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  max-width: 100%;
}

.nav-item--shop .nav-link {
  flex: 0 1 auto;
}

button.nav-link {
  font-family: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.nav-item__disclose {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  min-height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-text-secondary);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.nav-item__disclose:hover,
.nav-item__disclose:focus-visible {
  color: var(--color-text);
  outline: none;
}

.nav-sub {
  list-style: none;
  margin: 0.15rem 0 0.45rem;
  padding: 0.15rem 0 0.25rem 0.85rem;
  display: none;
  flex-direction: column;
  gap: 0;
}

.nav-item--shop.is-open .nav-sub {
  display: flex;
}

.nav-sub__link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.2rem 0;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  transition: color 200ms ease, opacity 200ms ease;
}

.nav-sub__link:hover,
.nav-sub__link:focus-visible {
  color: var(--color-text);
  outline: none;
}

/* ——— Hero ——— */

.hero {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--color-bg);
}

.hero__frame {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--color-bg);
}

.hero__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.06);
  transform-origin: center 78%;
  background: var(--color-bg);
}

/* Extremely restrained paper surface — overlay only, image untouched */
.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.028;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* Desktop: no hero overlay caption */
.hero__caption {
  display: none;
}

/* ——— Editorial sections ——— */

.site-main {
  position: relative;
  z-index: 1;
}

.editorial-section,
.home-section {
  padding: var(--section-pad) var(--header-pad-x);
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  box-sizing: border-box;
}

.editorial-section + .editorial-section,
.home-section + .home-section {
  border-top: 1px solid var(--color-line);
}

/* Home: tighter divider → title for Selected / Places only (About unchanged) */
body[data-page="home"] .home-selected.home-section,
body[data-page="home"] .home-places.home-section {
  padding-top: clamp(1.65rem, 3.2vw, 2.5rem);
}

.section-number {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin: 0 0 0.85rem;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0 0 0.7rem;
  text-transform: uppercase;
}

.home-section .section-title {
  letter-spacing: 0.06em;
}

.section-lede {
  max-width: 38rem;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin: 0 0 1.75rem;
}

.section-more {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 1.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  transition: color 200ms ease;
}

.section-more:hover,
.section-more:focus-visible {
  color: var(--color-text);
  outline: none;
}

.home-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 2rem;
  align-items: end;
  margin-bottom: 1.75rem;
}

.home-section__intro .section-lede {
  margin-bottom: 0;
}

.home-section__more {
  margin-top: 0;
  margin-bottom: 0;
  justify-self: end;
  align-self: end;
  white-space: nowrap;
  /* Match final intro line height, not the section heading */
  min-height: 0;
  line-height: 1.8;
  padding-top: 0;
  padding-bottom: 0;
}

/* Home — About (typography matches dedicated ABOUT page; layout unchanged) */

.home-about__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}

.home-about__copy {
  min-width: 0;
}

.home-about .section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.2;
  text-transform: none;
  color: var(--color-text);
  margin: 0 0 0.65rem;
}

.home-about__text {
  font-weight: 400;
  font-size: clamp(0.84rem, 0.95vw, 0.92rem);
  line-height: 1.58;
  color: var(--color-text-secondary);
  max-width: min(36rem, 100%);
}

.home-about__text--ko {
  font-family: "Noto Sans KR", var(--font-sans);
  font-weight: 400;
}

.home-about__text--en {
  font-family: var(--font-sans);
  margin-top: 1.75rem;
  padding-top: 0.15rem;
}

.home-about__lead {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--color-text);
  margin: 0 0 0.65rem;
}

.home-about__text p {
  margin: 0 0 0.55rem;
}

.home-about__text p:last-child {
  margin-bottom: 0;
}

/* Mobile-only intentional About line breaks (desktop stays one line) */
.home-about__br-mobile {
  display: none;
}

/*
 * HOME ABOUT image:
 * - Height matches dedicated ABOUT figure (92% of About page content box)
 * - Width fills the right column to the PLACES grid edge (wider than About)
 * - Same vertical crop; object-position shifted right to reveal more arm
 * - Text column unchanged
 */
.home-about .about-figure {
  grid-area: unset;
  margin: 0;
  width: 100%;
  max-width: 100%;
  aspect-ratio: auto;
  /* About shell height minus About page vertical padding, then × 0.92 */
  height: calc(
    0.92 * (100vh - (2.5rem + var(--safe-top)) - 0.9rem - (0.85rem + var(--safe-bottom)))
  );
  height: calc(
    0.92 * (100dvh - (2.5rem + var(--safe-top)) - 0.9rem - (0.85rem + var(--safe-bottom)))
  );
  max-height: calc(
    0.92 * (100vh - (2.5rem + var(--safe-top)) - 0.9rem - (0.85rem + var(--safe-bottom)))
  );
  max-height: calc(
    0.92 * (100dvh - (2.5rem + var(--safe-top)) - 0.9rem - (0.85rem + var(--safe-bottom)))
  );
  justify-self: stretch;
  align-self: start;
}

.home-about .about-figure__image {
  width: 100%;
  height: 100%;
  /* Same vertical framing as About; wider box reveals more of the right/arm */
  object-fit: cover;
  object-position: 60% 54%;
}

/* Home — Places (typography matches SELECTED PIECES; layout unchanged) */

.home-places .home-places__lede {
  font-family: "Noto Sans KR", var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.home-places .place-card__meta {
  gap: 0.25rem;
}

.home-places .place-card__en {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--color-text);
}

.home-places .place-card__ko {
  font-family: "Noto Sans KR", var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: none;
  color: var(--color-text-secondary);
  margin-top: 0.15rem;
}

.place-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem) clamp(1rem, 2vw, 1.75rem);
  width: 100%;
}

.place-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.place-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #efe9e0;
  overflow: hidden;
}

.place-card__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.place-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.place-card__en {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
}

.place-card__ko {
  margin: 0;
  font-family: "Noto Sans KR", var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--color-text-secondary);
}

/* Place detail */

.page-shell--place {
  max-width: min(90rem, 100%);
}

.place-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.place-detail__gallery {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.place-detail__item {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.place-detail__item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.place-detail__info {
  position: sticky;
  top: 1.5rem;
}

.place-detail__name {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 0.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
}

.place-detail__location {
  margin: 0 0 1.5rem;
  font-family: "Noto Sans KR", var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-text-secondary);
}

.place-detail__story {
  max-width: 28rem;
}

.place-detail__story p {
  margin: 0 0 0.9rem;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
}

.place-detail__story p:last-child {
  margin-bottom: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 2.8vw, 2.25rem) clamp(1.25rem, 2.2vw, 2rem);
  width: 100%;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #efe9e0;
  overflow: hidden;
}

.product-card__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #efe9e0;
}

.product-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: none;
}

.product-card__detail,
.product-card__status {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
}

.product-card__status {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.75rem;
  margin: 0 0 2.25rem;
  padding-bottom: 0.25rem;
}

.shop-filter {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.25rem 0;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  white-space: nowrap;
  transition: color 220ms ease;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.shop-filter::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.55rem;
  width: 1.25rem;
  height: 1px;
  background: var(--color-active);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.shop-filter:hover,
.shop-filter:focus-visible {
  color: var(--color-text);
  outline: none;
}

.shop-filter:hover::after,
.shop-filter:focus-visible::after,
.shop-filter.is-active::after {
  transform: scaleX(1);
}

.shop-filter.is-active {
  color: var(--color-text);
}

.collection-links,
.place-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
}

.collection-link,
.place-link {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-line);
  min-height: 4.5rem;
  transition: color 220ms ease;
}

.collection-link:hover,
.place-link:hover {
  color: var(--color-active);
}

.collection-link__label,
.place-link__label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.place-link__region {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

.site-footer {
  padding: 2.5rem var(--header-pad-x) calc(2.5rem + var(--safe-bottom));
  border-top: 1px solid var(--color-line);
  text-align: center;
}

.site-footer__brand {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.site-footer__note {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

/* ——— Inner pages ——— */

.page-shell {
  padding: 1.25rem var(--header-pad-x) calc(3.5rem + var(--safe-bottom));
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  box-sizing: border-box;
  min-height: calc(100vh - var(--site-header-height));
  min-height: calc(100dvh - var(--site-header-height));
}

.page-shell__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.page-shell__lede {
  max-width: 32rem;
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
}

/* ——— My Page (front-end structure only) ——— */

.mypage-sections {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  max-width: 36rem;
}

.mypage-section {
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-line);
}

.mypage-section__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.55rem;
  color: var(--color-text);
}

.mypage-section__note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

/* ——— About page (scoped) ——— */

body[data-page="about"] {
  position: relative;
  overflow-x: hidden;
}

body[data-page="about"] .about-page.page-shell {
  display: flex;
  flex-direction: column;
  height: calc(100vh - var(--site-header-height));
  height: calc(100dvh - var(--site-header-height));
  max-height: calc(100vh - var(--site-header-height));
  max-height: calc(100dvh - var(--site-header-height));
  min-height: 0;
  max-width: min(90rem, 100%);
  /* Align text with brand wordmark (~50–60px right of hamburger column) */
  padding-left: calc(var(--header-pad-x) + 3.5rem);
  padding-right: var(--header-pad-x);
  padding-top: 0.9rem;
  padding-bottom: calc(0.85rem + var(--safe-bottom));
  box-sizing: border-box;
  overflow: hidden;
}

body[data-page="about"] .about-page .about-page__title {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin: 0 0 0.65rem;
  flex: 0 0 auto;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  grid-template-rows: auto minmax(0, 1fr);
  grid-template-areas:
    "title image"
    "text  image";
  column-gap: clamp(0.65rem, 1.5vw, 1.15rem);
  row-gap: 0;
  align-items: stretch;
  flex: 1 1 auto;
  min-height: 0;
  max-width: none;
}

.about-page__title {
  grid-area: title;
}

.about-story__text {
  grid-area: text;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.85rem;
  min-width: 0;
  min-height: 0;
  max-width: 32rem;
  overflow: auto;
  padding-top: 0.95rem;
}

.about-copy {
  font-weight: 400;
  font-size: clamp(0.84rem, 0.95vw, 0.92rem);
  line-height: 1.58;
  color: var(--color-text-secondary);
}

.about-copy--ko {
  font-family: "Noto Sans KR", var(--font-sans);
  font-weight: 400;
}

.about-copy--en {
  font-family: var(--font-sans);
}

.about-copy p {
  margin: 0 0 0.55rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-copy__lead {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--color-text);
  margin-bottom: 0.65rem;
}

.about-figure {
  grid-area: image;
  margin: 1.1rem 0 0;
  padding: 0;
  min-height: 0;
  width: 92%;
  max-width: 92%;
  height: 92%;
  max-height: 92%;
  justify-self: start;
  align-self: start;
  background: #efe9e0;
  overflow: hidden;
}

.about-figure__image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: 60% 54%;
  background: #efe9e0;
}

@media (max-width: 1023px) {
  body[data-page="about"] .about-page.page-shell {
    height: auto;
    max-height: none;
    min-height: 0;
    overflow: visible;
    padding-left: var(--header-pad-x);
    padding-right: var(--header-pad-x);
    padding-bottom: calc(2.5rem + var(--safe-bottom));
  }

  .about-story {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "title"
      "text"
      "image";
    gap: 1.25rem;
  }

  .about-story__text {
    max-width: 36rem;
    overflow: visible;
    gap: 1.35rem;
    padding-top: 0;
  }

  .about-figure {
    width: min(100%, 28rem);
    max-width: min(100%, 28rem);
    max-height: none;
    height: auto;
    margin-top: 0;
    aspect-ratio: 4 / 5;
  }

  .home-about .about-figure {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 5;
  }

  .about-figure__image {
    height: 100%;
  }

  .about-copy {
    font-size: 0.92rem;
    line-height: 1.8;
  }

  .about-copy p {
    margin-bottom: 1.15rem;
  }

  .home-about__text {
    font-size: 0.92rem;
    line-height: 1.8;
  }

  .home-about__text p {
    margin-bottom: 1.15rem;
  }

  .home-about__text p:last-child {
    margin-bottom: 0;
  }
}

.empty-state {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  max-width: 28rem;
}

/* ——— Product detail (Items) ——— */

.page-shell--product {
  max-width: min(90rem, 100%);
}

.pdp-back {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.pdp-back:hover,
.pdp-back:focus-visible {
  color: var(--color-text);
  outline: none;
}

.pdp {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.pdp-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pdp-gallery__item {
  position: relative;
  width: 100%;
  background: transparent;
  overflow: hidden;
}

.pdp-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.pdp-info {
  position: sticky;
  top: 1.5rem;
}

.pdp-category {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.pdp-name {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: var(--color-text);
}

.pdp-price {
  margin: 0 0 1.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.pdp-short {
  margin: 0 0 1.15rem;
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
}

.pdp-description {
  margin: 0 0 1.75rem;
  max-width: 28rem;
}

.pdp-description p {
  margin: 0 0 0.9rem;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
}

.pdp-description p:last-child {
  margin-bottom: 0;
}

.pdp-block {
  margin: 0 0 1.5rem;
  max-width: 28rem;
}

.pdp-block__title {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text);
}

.pdp-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pdp-list li {
  position: relative;
  padding: 0.2rem 0 0.2rem 0.9rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--color-text-secondary);
}

.pdp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 0.35rem;
  height: 1px;
  background: var(--color-line);
}

.pdp-note {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.pdp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin: 1.75rem 0 2rem;
}

.pdp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 1.15rem;
  font-family: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-text);
  border: 1px solid var(--color-text);
  cursor: pointer;
}

.pdp-btn--secondary {
  color: var(--color-text);
  background: transparent;
}

.pdp-btn:disabled,
.pdp-btn[disabled] {
  opacity: 0.38;
  cursor: not-allowed;
}

.pdp-accordions {
  border-top: 1px solid var(--color-line);
  max-width: 28rem;
}

.product-accordion {
  border-bottom: 1px solid var(--color-line);
}

.product-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  padding: 0.35rem 0;
  font-family: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text);
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.product-accordion__mark::before {
  content: "+";
  font-size: 1rem;
  line-height: 1;
  color: var(--color-text-secondary);
}

.product-accordion.is-open .product-accordion__mark::before {
  content: "−";
}

.product-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms var(--menu-ease);
}

.product-accordion.is-open .product-accordion__panel {
  grid-template-rows: 1fr;
}

.product-accordion__inner {
  overflow: hidden;
  padding-bottom: 0;
}

.product-accordion.is-open .product-accordion__inner {
  padding-bottom: 1rem;
}

.product-accordion__inner p {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.product-accordion__inner p:last-child {
  margin-bottom: 0;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.product-gallery {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.product-gallery__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  aspect-ratio: 4 / 5;
  background: #efe9e0;
}

.product-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info__name {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.product-info__meta {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.product-info__status {
  margin: 0.85rem 0 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.product-info__short {
  color: var(--color-text);
  max-width: 28rem;
  margin-bottom: 1rem;
}

.product-info__description {
  color: var(--color-text-secondary);
  max-width: 28rem;
  margin-bottom: 1.75rem;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-active);
  border-bottom: 1px solid var(--color-active);
}

.btn-text:hover,
.btn-text:focus-visible {
  color: var(--color-text);
  border-color: var(--color-text);
  outline: none;
}

.btn-text--disabled,
.btn-text:disabled {
  color: var(--color-text-secondary);
  border-color: rgba(43, 33, 28, 0.22);
  cursor: default;
  pointer-events: none;
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 36rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-line);
}

.cart-item__thumb {
  width: 5rem;
  aspect-ratio: 1;
  background: #efe9e0;
}

.cart-item__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.cart-item__price {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 28rem;
}

.contact-list dt {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 0.2rem;
}

.contact-list dd {
  margin: 0 0 0.75rem;
}

/* ——— Tablet ——— */

@media (max-width: 1023px) {
  .side-menu {
    width: var(--menu-width-tablet);
  }

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

  .collection-links,
  .place-links,
  .place-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .pdp {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pdp-info {
    position: static;
  }

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

  .pdp-btn {
    width: 100%;
  }
}

/* ——— Mobile ——— */

@media (max-width: 767px) {
  .brand-mark {
    font-size: 1.05rem;
  }

  .side-menu {
    width: var(--menu-width-mobile);
    padding-right: 1.35rem;
    padding-left: calc(var(--header-pad-x) + var(--safe-left) + 44px + var(--header-brand-inset));
  }

  .side-menu__header {
    padding-left: 0;
    margin-bottom: 2.25rem;
  }

  .hero {
    padding: 0;
  }

  .hero__frame,
  .hero__image {
    width: 100%;
    aspect-ratio: 3 / 2;
  }

  .hero__image {
    object-position: center center;
    transform: scale(1.07);
    transform-origin: center 76%;
  }

  .shop-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.25rem 1.35rem;
    margin-right: calc(-1 * var(--header-pad-x));
    padding-right: var(--header-pad-x);
    scrollbar-width: none;
  }

  .shop-filters::-webkit-scrollbar {
    display: none;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 0.85rem;
  }

  .collection-links,
  .place-links {
    grid-template-columns: 1fr;
  }

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

  .home-about__layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .home-about .about-figure {
    order: 2;
  }

  .home-about__copy {
    order: 1;
  }

  .home-section__head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
  }

  .home-section__more {
    margin-top: 0;
    margin-bottom: 0.35rem;
    justify-self: start;
    align-self: start;
    min-height: 44px;
    line-height: inherit;
  }

  .place-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .place-detail__info {
    position: static;
  }

  .menu-overlay {
    background: rgba(43, 33, 28, 0.14);
  }

  /*
   * ——— HOME mobile polish (body[data-page="home"] only) ———
   * Desktop / tablet ≥768px and all non-home pages: unchanged.
   */
  body[data-page="home"] {
    --home-mobile-pad-x: 1.5rem; /* 24px */
    --home-mobile-section-pad-top: 2rem; /* 32px divider → title */
    --home-mobile-section-pad-bottom: 3.75rem; /* space before next divider */
    --home-mobile-block-gap: 1.85rem;
    --home-mobile-card-gap: 1.1rem 1rem; /* ~18px / 16px */
  }

  /* Compact mobile header — logo +8%, vertical pad ~8–10% tighter; PC header untouched */
  body[data-page="home"] .site-header__inner {
    padding-left: calc(var(--home-mobile-pad-x) + var(--safe-left));
    padding-right: calc(var(--home-mobile-pad-x) + var(--safe-right));
    padding-top: calc(0.675rem + var(--safe-top));
    padding-bottom: 0.675rem;
    min-height: calc(44px + 1.35rem + var(--safe-top));
    gap: 0.1rem;
  }

  body[data-page="home"] .site-header__brand {
    /* Lora 600 — real SemiBold file (not synthesized); mobile logo only */
    font-family: "Lora", "Times New Roman", Times, serif;
    font-size: 1.19rem;
    font-weight: 600;
    font-style: normal;
    font-synthesis: none;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: var(--color-text);
    height: 44px;
    align-items: center;
  }

  /* Mobile hero — show full mobile-hero.png (1080×1350 / 4:5), no crop */
  body[data-page="home"] .hero__frame {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
    overflow: hidden;
  }

  body[data-page="home"] .hero__frame::after {
    display: none;
  }

  body[data-page="home"] .hero__picture {
    display: block;
    width: 100%;
    height: auto;
  }

  body[data-page="home"] .hero__image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    aspect-ratio: auto;
    object-fit: unset;
    object-position: unset;
    transform: none;
    transform-origin: center center;
  }

  body[data-page="home"] .hero__caption {
    display: none !important;
  }

  body[data-page="home"] .home-section {
    padding-top: var(--home-mobile-section-pad-top);
    padding-bottom: var(--home-mobile-section-pad-bottom);
    padding-left: var(--home-mobile-pad-x);
    padding-right: var(--home-mobile-pad-x);
  }

  /* Hero → About: keep approved spacing (do not tighten) */
  body[data-page="home"] .home-about.home-section {
    padding-top: var(--home-mobile-section-pad-top);
  }

  /* Selected / Places: same tighter divider → title on mobile */
  body[data-page="home"] .home-selected.home-section,
  body[data-page="home"] .home-places.home-section {
    padding-top: 1.35rem; /* was 2rem via shared section pad-top */
  }

  body[data-page="home"] .home-section + .home-section {
    border-top-color: rgba(43, 33, 28, 0.1);
  }

  body[data-page="home"] .home-section .section-title {
    font-size: clamp(1.5rem, 5.5vw, 1.7rem);
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
  }

  body[data-page="home"] .home-section__intro .section-lede,
  body[data-page="home"] .home-places .home-places__lede {
    font-size: 0.9rem;
    line-height: 1.65;
    max-width: none;
  }

  body[data-page="home"] .home-section__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: var(--home-mobile-block-gap);
  }

  body[data-page="home"] .home-section__more {
    min-height: 0;
    margin: 0;
    padding: 0.1rem 0;
    line-height: 1.4;
  }

  /* Condensed About */
  body[data-page="home"] .home-about__mobile-hide {
    display: none !important;
  }

  body[data-page="home"] .home-about__br-mobile {
    display: inline;
  }

  body[data-page="home"] .home-about__layout {
    gap: 1.5rem;
  }

  body[data-page="home"] .home-about .section-title {
    font-size: clamp(2rem, 8.5vw, 2.25rem); /* ~32–36px */
    letter-spacing: normal;
    text-transform: none;
    margin-bottom: 0.75rem;
  }

  body[data-page="home"] .home-about__text {
    font-size: 1.03125rem; /* ~16.5px */
    line-height: 1.75;
    max-width: none;
  }

  body[data-page="home"] .home-about__text p {
    margin-bottom: 0.7rem;
  }

  body[data-page="home"] .home-about__text--ko p:last-child {
    margin-bottom: 0;
  }

  body[data-page="home"] .home-about__text--en {
    margin-top: 1.15rem;
    padding-top: 0;
  }

  body[data-page="home"] .home-about__lead {
    font-size: clamp(1.125rem, 4.6vw, 1.25rem); /* ~18–20px */
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.01em;
    margin-bottom: 0;
  }

  /* About image after text — natural width, no tall forced crop */
  body[data-page="home"] .home-about .about-figure {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    margin: 0.15rem 0 0;
  }

  body[data-page="home"] .home-about .about-figure__image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center center;
  }

  /* Places 2×2 — match Selected Pieces 4:5 image proportion */
  body[data-page="home"] .home-places .place-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--home-mobile-card-gap);
  }

  body[data-page="home"] .home-places .place-card {
    gap: 0.5rem;
    min-width: 0;
  }

  body[data-page="home"] .home-places .place-card__media {
    aspect-ratio: 4 / 5;
  }

  body[data-page="home"] .home-places .place-card__media img {
    object-fit: cover;
  }

  body[data-page="home"] .home-places .place-card__en {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  body[data-page="home"] .home-places .place-card__ko {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    margin-top: 0.1rem;
  }

  /* Selected pieces 2×2 */
  body[data-page="home"] .home-selected .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--home-mobile-card-gap);
  }

  body[data-page="home"] .home-selected .product-card {
    gap: 0.5rem;
    min-width: 0;
  }

  body[data-page="home"] .home-selected .product-card__media {
    aspect-ratio: 4 / 5;
  }

  body[data-page="home"] .home-selected .product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body[data-page="home"] .home-selected .product-card__name {
    font-size: 0.95rem;
    line-height: 1.35;
  }

  body[data-page="home"] .home-selected .product-card__status {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    margin-top: 0.1rem;
  }

  body[data-page="home"] .site-footer {
    padding: 1.85rem var(--home-mobile-pad-x) calc(1.5rem + var(--safe-bottom));
  }

  body[data-page="home"] .site-footer__brand {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
  }

  body[data-page="home"] .site-footer__note {
    font-size: 0.7rem;
  }
}

/* Narrow phones: keep 2-col home grids; slightly tighter gaps */
@media (max-width: 420px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .home-selected .product-grid,
  body[data-page="home"] .home-places .place-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0.85rem;
  }

  body[data-page="home"] {
    --home-mobile-pad-x: 1.375rem;
    --home-mobile-section-pad-top: 1.85rem;
    --home-mobile-section-pad-bottom: 3.5rem;
  }

  body[data-page="home"] .home-selected.home-section,
  body[data-page="home"] .home-places.home-section {
    padding-top: 1.25rem;
  }

  body[data-page="home"] .home-selected .product-card__name,
  body[data-page="home"] .home-places .place-card__en {
    font-size: 0.9rem;
  }
}

@media (max-width: 340px) {
  body[data-page="home"] {
    --home-mobile-pad-x: 1.15rem;
  }

  body[data-page="home"] .home-selected .product-grid,
  body[data-page="home"] .home-places .place-grid {
    gap: 0.9rem 0.7rem;
  }
}

/* ——— Reduced motion ——— */

@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;
  }
}
