/* ===== TOKENS ===== */
:root {
  /* OURSLIPPU original palette (extracted from cafe24 optimizer.css) */
  --bg: #ffffff;
  --bg-warm: #fbfafa;          /* near-white grey */
  --bg-soft: #f5f5f6;          /* subtle panel */
  --bg-deep: #1b1b1b;          /* near-black */
  --ink: #1b1b1b;
  --ink-mid: #353535;
  --ink-soft: #757575;
  --line: #e6e6e6;
  --line-soft: #d7d5d5;
  --accent: #353535;
  --accent-deep: #000000;

  --serif: 'Libre Baskerville', 'Noto Sans KR', Georgia, serif;
  --sans:  'Noto Sans', 'Noto Sans KR', -apple-system, BlinkMacSystemFont,
           'Apple SD Gothic Neo', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --max: 1280px;
  --pad: clamp(20px, 4vw, 56px);

  --t-fast: 200ms cubic-bezier(.2,.7,.2,1);
  --t-slow: 600ms cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
em { font-style: italic; font-family: var(--serif); font-weight: 500; }

/* ===== UTILITIES ===== */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.eyebrow--light { color: rgba(255,255,255,.7); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all var(--t-fast);
}
.btn--solid {
  background: var(--ink);
  color: #fff;
}
.btn--solid:hover { background: var(--accent-deep); }
.btn--white {
  background: #fff;
  color: var(--ink);
}
.btn--white:hover { background: var(--bg-warm); }
.btn--ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }

.link-arrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap var(--t-fast);
}

/* ===== PLACEHOLDER (시안 이미지 자리) ===== */
.ph {
  width: 100%;
  aspect-ratio: 4/3;
  background:
    linear-gradient(135deg, var(--bg-warm) 0%, #ebeaea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-deep);
  font-size: 11px;
  letter-spacing: 0.3em;
  position: relative;
  overflow: hidden;
}
.ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0) 0,
      rgba(255,255,255,0) 12px,
      rgba(255,255,255,.35) 12px,
      rgba(255,255,255,.35) 13px);
  opacity: .35;
}
.ph span { position: relative; z-index: 1; }
.ph--alt { background: linear-gradient(135deg, #f5f5f5 0%, #d7d5d5 100%); }
.ph--tall { aspect-ratio: 3/4; }
.ph--square { aspect-ratio: 1/1; }

/* ===== TICKER ===== */
.ticker {
  background: var(--bg-deep);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  overflow: hidden;
}
.ticker__inner {
  display: flex;
  gap: 28px;
  padding: 10px var(--pad);
  white-space: nowrap;
  animation: tick 28s linear infinite;
}
.dot { color: var(--accent); }
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px var(--pad);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__logo {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}
.logo-mark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.02em;
}
.logo-mark--accent { color: var(--accent-deep); font-style: italic; }
.nav__menu {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  letter-spacing: 0.16em;
}
.nav__menu a {
  position: relative;
  padding: 6px 0;
  transition: color var(--t-fast);
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-slow);
}
.nav__menu a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__util {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
}
.lang {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}
.hamburger { display: none; flex-direction: column; gap: 4px; }
.hamburger span { width: 22px; height: 1px; background: var(--ink); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 96px);
  padding: clamp(40px, 8vw, 120px) var(--pad);
  background: var(--bg);
  overflow: hidden;
}
.hero__media .hero__placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #fbfafa 0%, #d7d5d5 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--accent-deep);
  letter-spacing: 0.32em;
  font-size: 11px;
  position: relative;
}
.hero__placeholder small {
  letter-spacing: 0.12em;
  font-size: 11px;
  color: rgba(53, 53, 53, .6);
}
.hero__placeholder::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(27, 27, 27, .12);
}
.hero__copy { max-width: 540px; }
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 12px 0 32px;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .italic {
  font-style: italic;
  color: var(--accent-deep);
}
.hero__sub {
  color: var(--ink-soft);
  font-size: 17px;
  margin-bottom: 36px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: var(--pad);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--ink-soft);
}
.line-v {
  width: 1px;
  height: 40px;
  background: var(--ink-soft);
  animation: drop 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes drop {
  0%   { transform: scaleY(0); }
  50%  { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== SECTION COMMON ===== */
section { padding: clamp(80px, 10vw, 140px) var(--pad); }
.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--ink-soft);
  font-size: 16px;
}
.section-foot { text-align: center; margin-top: 56px; }

/* ===== SIGNATURE ===== */
.signature { background: var(--bg); }
.signature__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.card {
  display: block;          /* anchors used as cards must not be inline */
  background: var(--bg);
  transition: transform var(--t-slow);
  color: inherit;
}
.card:hover h3 { color: var(--accent-deep); }
.card:hover { transform: translateY(-4px); }
.card--lg { grid-row: span 2; }
.card--lg .ph { aspect-ratio: 4/5; }
.card__media { position: relative; overflow: hidden; }
.card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 5px 10px;
}
.card__body { padding: 18px 4px 0; }
.card__body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 6px;
}
.card__meta {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.card__price { font-size: 14px; }

/* ===== SPLIT (DOG / CAT) ===== */
.split {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split__panel {
  position: relative;
  display: block;
  overflow: hidden;
}
.split__panel .ph { aspect-ratio: auto; height: clamp(420px, 60vh, 640px); }
.split__copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px var(--pad);
  background: linear-gradient(to top, rgba(0,0,0,.5), rgba(0,0,0,0));
  color: #fff;
}
.split__copy h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 40px);
  margin: 8px 0 18px;
}
.split__copy .eyebrow { color: rgba(255,255,255,.85); margin-bottom: 0; }

/* ===== ABOUT ===== */
.about { background: var(--bg-warm); }
.about__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.about__copy h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.15;
  margin-bottom: 28px;
}
.about__copy p { margin-bottom: 18px; color: #353535; }
.about__en {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent-deep);
}
.about__pillars {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.about__pillars strong {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.about__pillars span {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* ===== PARTNERSHIP ===== */
.partnership {
  background: var(--bg-deep);
  color: #fbfafa;
}
.partnership__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.partnership h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.15;
  margin-bottom: 24px;
}
.partnership .lead {
  max-width: 640px;
  margin: 0 auto 56px;
  color: rgba(255,255,255,.75);
}
.partnership__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
  margin-bottom: 64px;
}
.pcard {
  border: 1px solid rgba(255,255,255,.18);
  padding: 28px 24px;
  transition: all var(--t-fast);
}
.pcard:hover { border-color: var(--accent); transform: translateY(-2px); }
.pcard__num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 18px;
}
.pcard h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 8px;
}
.pcard p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
}
.partnership__form {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
  display: grid;
  gap: 16px;
}
.partnership__form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.partnership__form label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.partnership__form input,
.partnership__form select,
.partnership__form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font: inherit;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color var(--t-fast);
}
.partnership__form input:focus,
.partnership__form select:focus,
.partnership__form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.partnership__form button { justify-self: start; margin-top: 8px; }
.form__note {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  letter-spacing: 0.04em;
}

/* ===== UGC ===== */
.ugc { background: var(--bg); }
.ugc__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.ugc__cell { display: block; overflow: hidden; }
.ugc__cell .ph { aspect-ratio: 1/1; transition: transform var(--t-slow); }
.ugc__cell:hover .ph { transform: scale(1.03); }

/* ===== NEWS ===== */
.news {
  background: var(--bg-warm);
  text-align: center;
}
.news__inner { max-width: 560px; margin: 0 auto; }
.news h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 12px;
}
.news p { color: var(--ink-soft); margin-bottom: 28px; }
.news__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}
.news__form input {
  padding: 12px 4px;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 15px;
}
.news__form input:focus { outline: none; }
.news__form button { background: transparent; color: var(--ink); padding: 12px 8px; border: 0; }
.news__form button:hover { color: var(--accent-deep); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-deep);
  color: #999999;
  padding: 80px var(--pad) 32px;
}
.footer__top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 6vw, 96px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand p {
  margin-top: 14px;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(255,255,255,.5);
}
.footer__brand .logo-mark { color: #fff; }
.footer__brand .logo-mark--accent { color: var(--accent); }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer__cols h5 {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.footer__cols a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  padding: 4px 0;
  transition: color var(--t-fast);
}
.footer__cols a:hover { color: var(--accent); }
.footer__legal {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 32px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  line-height: 1.8;
}
.copy { margin-top: 12px; letter-spacing: 0.06em; }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .signature__grid { grid-template-columns: 1fr 1fr; }
  .card--lg { grid-column: span 2; grid-row: auto; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .ugc__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav__menu { display: none; }
  .nav__util .lang, .nav__util a:nth-child(2) { display: none; }
  .hamburger { display: inline-flex; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 32px;
  }
  .hero__media { order: 2; }
  .hero__copy { order: 1; }
  .hero__scroll { display: none; }

  .signature__grid { grid-template-columns: 1fr; }
  .card--lg { grid-column: auto; }

  .split { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .about__pillars { grid-template-columns: 1fr; gap: 8px; }

  .partnership__grid { grid-template-columns: 1fr; }
  .partnership__form .row { grid-template-columns: 1fr; }

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

/* ===== Real-image variant (ourslippu.com 핫링크) ===== */
.ph--img {
  background-size: cover;
  background-position: center;
  color: transparent;
}
.ph--img::after { display: none; }
.ph--img span { display: none; }

.hero__placeholder--img {
  background: none;
  background-size: cover;
  background-position: center;
  color: transparent;
}
.hero__placeholder--img::before { display: none; }
.hero__placeholder--img span,
.hero__placeholder--img small { display: none; }

/* ===== MOTION REDUCED ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}


/* ===== Multipage extras ===== */
.signature__grid--even { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px){ .signature__grid--even { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 600px){ .signature__grid--even { grid-template-columns: 1fr;} }

.nav__menu a.is-active { color: var(--accent-deep); }
.nav__menu a.is-active::after { transform: scaleX(1); transform-origin: left; }
/* Language dropdown */
.lang-dd { position: relative; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 0.18em;
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.lang-toggle:hover { border-color: var(--ink); }
.lang-toggle .caret { font-size: 9px; transition: transform var(--t-fast); }
.lang-toggle[aria-expanded="true"] .caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 6px); right: 0;
  list-style: none; margin: 0; padding: 6px 0;
  min-width: 160px;
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  opacity: 0; visibility: hidden;
  transform: translateY(-4px);
  transition: opacity var(--t-fast), transform var(--t-fast), visibility 0s linear var(--t-fast);
  z-index: 60;
}
.lang-toggle[aria-expanded="true"] + .lang-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity var(--t-fast), transform var(--t-fast), visibility 0s;
}
.lang-menu a {
  display: flex; gap: 12px; align-items: center;
  padding: 10px 16px;
  font-size: 13px; letter-spacing: 0.04em;
  color: var(--ink-mid);
  white-space: nowrap;
}
.lang-menu a:hover { background: var(--bg-warm); color: var(--ink); }
.lang-menu .code {
  font-family: var(--serif); font-weight: 700;
  font-size: 12px; letter-spacing: 0.18em;
  min-width: 22px; color: var(--ink);
}
.lang-menu .label { color: var(--ink-soft); font-size: 12px; }
.lang-menu a.is-active { background: var(--bg-warm); }
.lang-menu a.is-active .label { color: var(--ink); }
.nav__util .util-link {
  font-size: 12px; letter-spacing: 0.14em;
  padding: 8px 14px; border: 1px solid var(--ink); color: var(--ink);
  transition: all var(--t-fast);
}
.nav__util .util-link:hover { background: var(--ink); color: #fff; }

/* Fluid hero / about image — scale with viewport, no clipping */
.hero { align-items: center; }
.hero__media { width: 100%; }
.hero__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.about__media { width: 100%; }
.about__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Mobile menu dropdown */
@media (max-width: 768px) {
  body.menu-open .nav__menu {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 64px; right: 0; left: 0;
    background: var(--bg);
    padding: 16px var(--pad) 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    z-index: 49;
    gap: 0;
  }
  body.menu-open .nav__menu a {
    padding: 14px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--line);
  }
  body.menu-open .nav__menu a:last-child { border-bottom: 0; }
  body.menu-open .nav__menu a::after { display: none; }
  .hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }
  .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }
  .hamburger span { transition: all .2s; }
  body.menu-open { overflow: hidden; }
  .nav__util .util-link { display: none; }
}

.page { padding: clamp(80px, 10vw, 140px) var(--pad); background: var(--bg); }
.page__inner { max-width: 800px; margin: 0 auto; }
.page__inner--wide { max-width: var(--max); }
.page h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 5vw, 72px); margin: 12px 0 24px; line-height: 1.1; }
.page__lead { color: var(--ink-soft); margin-bottom: 36px; }
.rich { color: #353535; line-height: 1.8; }
.rich h2,.rich h3 { font-family: var(--serif); font-weight: 500; margin: 28px 0 14px; }
.rich img { margin: 18px auto; max-width: 100%; height: auto; }
.rich p { margin-bottom: 14px; }
.rich table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 18px 0; }
.rich td, .rich th { border-top: 1px solid var(--line); padding: 10px 12px; vertical-align: top; }
.rich th { text-align: left; color: var(--ink-soft); width: 28%; background: var(--bg-warm); }
.rich a { color: var(--accent-deep); border-bottom: 1px solid currentColor; }

.pdp { padding: clamp(60px, 8vw, 100px) var(--pad) clamp(80px, 10vw, 120px); }
.pdp__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.pdp__hero { position: sticky; top: 80px; }
.pdp__media { width: 100%; aspect-ratio: 4/5; background: var(--bg-warm) center/cover; }
.pdp__info h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 3vw, 44px); line-height: 1.15; margin: 8px 0 16px; }
.pdp__rating { display: inline-block; font-size: 13px; color: var(--accent-deep); margin-bottom: 16px; }
.pdp__price { font-size: 22px; margin: 18px 0 22px; }
.pdp__desc { color: var(--ink-soft); margin-bottom: 28px; line-height: 1.7; }
.pdp__opts { border-top: 1px solid var(--line); padding-top: 18px; margin-bottom: 28px; }
.pdp__opts h4 { font-size: 11px; letter-spacing: 0.22em; color: var(--ink-soft); text-transform: uppercase; margin-bottom: 10px; }
.pdp__opts li { font-size: 14px; padding: 6px 0; border-bottom: 1px solid var(--line); list-style: none; }
.pdp__cta { margin-top: 24px; }
.pdp__gallery { max-width: var(--max); margin: 80px auto 0; }
.pdp__gallery h2 { font-family: var(--serif); font-weight: 500; font-size: 28px; text-align: center; margin-bottom: 32px; }
.pdp__gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pdp__gallery-item { aspect-ratio: 4/5; overflow: hidden; background: var(--bg-warm); }
.pdp__gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 768px) {
  .pdp__inner { grid-template-columns: 1fr; }
  .pdp__hero { position: static; }
  .pdp__gallery-grid { grid-template-columns: 1fr; gap: 8px; }
}

.board { margin-bottom: 48px; }
.board header h2 { font-family: var(--serif); font-weight: 500; font-size: 24px; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.board__list { list-style: none; padding: 0; }
.board__list li { padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; align-items: baseline; flex-wrap: wrap; }
.board__list li a { color: var(--ink); }
.board__list li a:hover { color: var(--accent-deep); }
.board__list .meta { font-size: 12px; color: var(--ink-soft); letter-spacing: 0.04em; }

.about-curated .lead { font-size: 18px; line-height: 1.7; margin-bottom: 24px; }
.about-curated .en { font-family: var(--serif); font-style: italic; color: var(--ink-mid); margin-bottom: 28px; }
.about-pillars { list-style: none; padding: 24px 0; margin: 24px 0 32px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.about-pillars strong { display: block; font-family: var(--serif); font-weight: 700; letter-spacing: 0.06em; margin-bottom: 4px; font-size: 18px; }
.about-pillars span { font-size: 13px; color: var(--ink-soft); }
.about-curated .note { margin-top: 32px; font-size: 12px; color: var(--ink-soft); border-top: 1px solid var(--line); padding-top: 16px; }
@media (max-width: 768px) { .about-pillars { grid-template-columns: 1fr; } }

.partner-empty { margin: 32px 0 56px; max-width: 720px; }
.partner-empty .lead { font-size: 17px; line-height: 1.7; margin-bottom: 24px; color: var(--ink); }
.partner-list { list-style: none; padding: 0; border-top: 1px solid var(--line); }
.partner-list li { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--ink-mid); }
.partner-list strong { display: inline-block; min-width: 36px; font-family: var(--serif); font-style: italic; color: var(--accent-deep); margin-right: 10px; }
.partner-empty .cta { margin: 32px 0 16px; }
.partner-empty .note { font-size: 12px; color: var(--ink-soft); }
