/* ============================================================
   AILEENE — 공유 디자인 시스템
   White & Gold · Minimal · Hairline-driven luxury
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Noto+Serif+KR:wght@200;300;400;500;600;700&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css');

/* ---------- Tokens ---------- */
:root {
  /* base */
  --white: #FFFFFF;
  --ivory: #FAF8F3;
  --ivory-deep: #F3EFE6;

  /* gold (overridable by tweaks) */
  --gold: #C9A86A;
  --gold-deep: #A8843E;
  --gold-soft: rgba(201, 168, 106, 0.12);
  --line: rgba(201, 168, 106, 0.28);
  --line-faint: rgba(201, 168, 106, 0.16);

  /* ink */
  --charcoal: #2A2A28;
  --charcoal-soft: #5A5852;
  --charcoal-faint: #8A877E;

  /* dark surface */
  --dark: #16140F;
  --dark-2: #1E1B14;

  /* fonts */
  --serif-en: 'Cormorant Garamond', serif;
  --serif-kr: 'Noto Serif KR', serif;
  --sans-kr: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;

  /* heading family — flips with the font tweak */
  --font-head: var(--serif-kr);
  --head-weight: 300;

  /* layout */
  --maxw: 1180px;
  --gut: 24px;
  --sect-y: 76px;

  /* motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (min-width: 880px) {
  :root { --gut: 56px; --sect-y: 124px; }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans-kr);
  color: var(--charcoal);
  background: var(--white);
  font-weight: 350;
  line-height: 1.7;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: var(--head-weight); }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- Page transition (leave-fade only; page stays visible on enter) ---------- */
body.page-leaving { opacity: 0; transition: opacity 0.32s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  body.page-leaving { opacity: 1; transition: none; }
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { padding-block: var(--sect-y); position: relative; }
.section--ivory { background: var(--ivory); }

/* ---------- Type scale ---------- */
.eyebrow {
  font-family: var(--sans-kr);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}
.eyebrow--center::before { display: none; }

.display {
  font-family: var(--serif-en);
  font-weight: 400;
  font-size: clamp(46px, 15vw, 130px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.h1 {
  font-family: var(--font-head);
  font-weight: var(--head-weight);
  font-size: clamp(30px, 7vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.h2 {
  font-family: var(--font-head);
  font-weight: var(--head-weight);
  font-size: clamp(25px, 5.4vw, 38px);
  line-height: 1.24;
  letter-spacing: -0.02em;
}
.h3 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(19px, 3.4vw, 23px);
  line-height: 1.35;
}
.lead {
  font-size: clamp(16px, 2.4vw, 19px);
  color: var(--charcoal-soft);
  line-height: 1.8;
  font-weight: 350;
}
.body { font-size: 16px; color: var(--charcoal-soft); line-height: 1.85; }
.small { font-size: 13.5px; color: var(--charcoal-faint); line-height: 1.7; }
.gold-text { color: var(--gold-deep); }
.italic-en { font-family: var(--serif-en); font-style: italic; font-weight: 400; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}
.btn .arr { transition: transform 0.4s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn--gold { background: var(--gold-deep); color: #fff; }
.btn--gold:hover { background: var(--charcoal); }
.btn--ghost { border-color: var(--line); color: var(--charcoal); background: transparent; }
.btn--ghost:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.btn--on-dark { border-color: rgba(201,168,106,0.4); color: var(--gold); }
.btn--on-dark:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold-deep);
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: all 0.35s var(--ease);
}
.textlink .arr { transition: transform 0.35s var(--ease); }
.textlink:hover { border-color: var(--gold); }
.textlink:hover .arr { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gut);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-head.scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: var(--line-faint);
  padding-block: 13px;
}
.site-head.on-dark { color: var(--white); }
.site-head.on-dark .logo, .site-head.on-dark .nav-link { color: var(--white); }
.site-head.on-dark.scrolled { background: rgba(22,20,15,0.7); border-bottom-color: rgba(201,168,106,0.2); }

.logo {
  font-family: var(--serif-en);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  padding-left: 0;
}
.logo b { color: inherit; font-weight: 500; }

.nav {
  display: none;
  align-items: center;
  gap: 30px;
}
@media (min-width: 980px) { .nav { display: flex; } }
.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--charcoal-soft);
  position: relative;
  padding-block: 6px;
  transition: color 0.3s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-deep);
  transition: width 0.35s var(--ease);
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--gold-deep); }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 18px; }
.lang {
  display: none;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--charcoal-faint);
}
@media (min-width: 980px) { .lang { display: flex; } }
.lang b { color: var(--gold-deep); font-weight: 600; }
.lang span { cursor: pointer; transition: color 0.3s; }
.lang span:hover { color: var(--charcoal); }
.lang-opt { cursor: pointer; transition: color 0.3s; }
.lang-opt:hover { color: var(--charcoal); }
.lang .lang-active { color: var(--gold-deep); font-weight: 600; }
.lang-sep { opacity: 0.5; }
.mm-foot .lang-opt { color: var(--charcoal-faint); }
.mm-foot .lang-active { color: var(--gold-deep); font-weight: 600; }
.on-dark .lang-opt:hover { color: var(--white); }
.on-dark .lang .lang-active { color: var(--gold); }

/* hamburger */
.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  padding: 0;
}
@media (min-width: 980px) { .burger { display: none; } }
.burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--charcoal);
  margin-inline: auto;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.on-dark .burger span { background: var(--white); }
body.menu-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--gut);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), visibility 0.5s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: clamp(28px, 9vw, 40px);
  font-weight: 300;
  color: var(--charcoal);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-faint);
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}
.mobile-menu a .idx { font-family: var(--serif-en); font-size: 14px; color: var(--gold); }
body.menu-open .mobile-menu a { opacity: 1; transform: none; }
body.menu-open .mobile-menu a:nth-child(1) { transition-delay: 0.12s; }
body.menu-open .mobile-menu a:nth-child(2) { transition-delay: 0.17s; }
body.menu-open .mobile-menu a:nth-child(3) { transition-delay: 0.22s; }
body.menu-open .mobile-menu a:nth-child(4) { transition-delay: 0.27s; }
body.menu-open .mobile-menu a:nth-child(5) { transition-delay: 0.32s; }
body.menu-open .mobile-menu a:nth-child(6) { transition-delay: 0.37s; }
body.menu-open .mobile-menu a:nth-child(7) { transition-delay: 0.42s; }
.mobile-menu a:hover { color: var(--gold-deep); }
.mobile-menu .mm-foot { margin-top: 40px; display: flex; gap: 18px; font-size: 12px; letter-spacing: 0.1em; color: var(--charcoal-faint); }
.mobile-menu .mm-foot b { color: var(--gold-deep); }

/* ---------- Footer ---------- */
.site-foot {
  background: var(--dark);
  color: rgba(255,255,255,0.62);
  padding-block: 64px 36px;
}
.foot-top {
  display: grid;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201,168,106,0.18);
}
@media (min-width: 760px) { .foot-top { grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; } }
.site-foot .logo { color: var(--white); }
.site-foot .logo b { color: var(--gold); }
.foot-col h4 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-family: var(--sans-kr); font-weight: 600; }
.foot-col a { display: block; font-size: 14px; padding: 5px 0; color: rgba(255,255,255,0.6); transition: color 0.3s; }
.foot-col a:hover { color: var(--gold); }
.foot-certs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.cert-chip {
  font-size: 10.5px; letter-spacing: 0.12em; font-weight: 600;
  padding: 6px 12px; border: 1px solid rgba(201,168,106,0.35);
  border-radius: 999px; color: var(--gold);
}
.foot-bottom {
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  justify-content: space-between; align-items: center;
  padding-top: 28px; font-size: 12px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}
.foot-bottom .partners { display: flex; gap: 16px; }
.foot-bottom .partners b { color: rgba(255,255,255,0.65); font-weight: 500; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
.reveal[data-d="5"] { transition-delay: 0.4s; }

/* hairline draw */
.hairline { height: 1px; background: var(--line); transform-origin: left; transform: scaleX(0); transition: transform 1.2s var(--ease); }
.hairline.in { transform: scaleX(1); }

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
  position: relative;
  padding-top: 150px;
  padding-bottom: var(--sect-y);
  overflow: hidden;
}
.page-hero .num {
  font-family: var(--serif-en);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.page-hero .display { margin-top: 14px; }
.page-hero .kr-title { font-family: var(--font-head); font-weight: var(--head-weight); font-size: clamp(22px, 4.6vw, 30px); color: var(--charcoal); margin-top: 6px; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line-faint);
  padding: 32px 28px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px -30px rgba(168,132,62,0.35);
  border-color: var(--line);
}
.card .ic { color: var(--gold-deep); margin-bottom: 20px; }

/* gold index numeral */
.gnum { font-family: var(--serif-en); font-size: 15px; color: var(--gold); letter-spacing: 0.2em; }

/* ---------- Gold media frame (abstract graphics live here) ---------- */
.gold-frame {
  position: relative;
  border: 1px solid var(--line);
  background: var(--ivory);
  overflow: hidden;
}
.gold-frame::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid var(--line-faint);
  pointer-events: none;
}

/* ---------- Section heading block ---------- */
.sect-head { max-width: 640px; }
.sect-head .eyebrow { margin-bottom: 20px; }
.sect-head .h2 { margin-bottom: 0; }

/* ---------- Stat / spec row ---------- */
.spec-row { display: flex; align-items: baseline; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line-faint); }
.spec-row .k { font-size: 14px; color: var(--charcoal-soft); flex: 1; }
.spec-row .v { font-family: var(--serif-en); font-size: clamp(26px, 5vw, 36px); color: var(--gold-deep); line-height: 1; }
.spec-row .u { font-size: 12px; color: var(--charcoal-faint); }

/* ---------- Dark section ---------- */
.section--dark { background: var(--dark); color: rgba(255,255,255,0.7); }
.section--dark .h1, .section--dark .h2, .section--dark .h3 { color: #fff; }
.section--dark .lead { color: rgba(255,255,255,0.7); }
.section--dark .eyebrow { color: var(--gold); }
.section--dark .eyebrow::before { background: var(--gold); }
.section--dark .card { background: var(--dark-2); border-color: rgba(201,168,106,0.2); color: rgba(255,255,255,0.66); }
.section--dark .card .h3 { color: #fff; }
.section--dark .gold-frame { background: var(--dark-2); border-color: rgba(201,168,106,0.3); }
.section--dark .spec-row { border-color: rgba(201,168,106,0.18); }
.section--dark .spec-row .k { color: rgba(255,255,255,0.6); }
.section--dark .spec-row .v { color: var(--gold); }

/* when dark sections are toggled OFF via tweak */
body.no-dark .section--dark { background: var(--ivory); color: var(--charcoal-soft); }
body.no-dark .section--dark .h1, body.no-dark .section--dark .h2, body.no-dark .section--dark .h3 { color: var(--charcoal); }
body.no-dark .section--dark .lead { color: var(--charcoal-soft); }
body.no-dark .section--dark .eyebrow { color: var(--gold-deep); }
body.no-dark .section--dark .card { background: var(--white); border-color: var(--line-faint); color: var(--charcoal-soft); }
body.no-dark .section--dark .card .h3 { color: var(--charcoal); }
body.no-dark .section--dark .gold-frame { background: var(--white); }
body.no-dark .section--dark .spec-row { border-color: var(--line-faint); }
body.no-dark .section--dark .spec-row .k { color: var(--charcoal-soft); }
body.no-dark .section--dark .spec-row .v { color: var(--gold-deep); }
body.no-dark .site-head.on-dark .logo, body.no-dark .site-head.on-dark .nav-link { color: var(--charcoal); }

/* ---------- Utility ---------- */
.grid-2 { display: grid; gap: 32px; }
@media (min-width: 820px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; } }
.grid-3 { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 680px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.center { text-align: center; }
.mt-s { margin-top: 18px; } .mt-m { margin-top: 32px; } .mt-l { margin-top: 56px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .cta-row { justify-content: center; }

/* ---------- Rotating emblem (Rejuran-inspired seal) ---------- */
.emblem { position: relative; width: clamp(96px, 15vw, 148px); aspect-ratio: 1; color: var(--gold-deep); pointer-events: none; }
.emblem svg { width: 100%; height: 100%; animation: emblem-spin 28s linear infinite; }
.emblem text { font-family: var(--sans-kr); font-size: 11px; letter-spacing: 0.26em; fill: var(--gold-deep); font-weight: 500; text-transform: uppercase; }
.section--dark .emblem text, .brand-hero .emblem text { fill: var(--gold); }
.emblem .em-center { position: absolute; inset: 0; display: grid; place-items: center; }
.emblem .em-dot { width: 7px; height: 7px; background: var(--gold-deep); transform: rotate(45deg); }
.section--dark .emblem .em-dot, .brand-hero .emblem .em-dot { background: var(--gold); }
@keyframes emblem-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .emblem svg { animation: none; } }

/* ---------- Editorial section intro (label → big stacked title) ---------- */
.intro-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif-en); font-style: italic; font-weight: 400;
  font-size: clamp(17px, 2.4vw, 21px); color: var(--gold-deep); letter-spacing: 0;
}
.intro-label::before { content: ""; width: 30px; height: 1px; background: var(--gold); }
.intro-title {
  font-family: var(--serif-en); font-weight: 400;
  font-size: clamp(40px, 9vw, 78px); line-height: 0.98; letter-spacing: -0.01em;
  color: var(--charcoal); margin-top: 16px; text-transform: uppercase;
}
.intro-title b { display: block; font-weight: 500; }
.section--dark .intro-title { color: #fff; }
.section--dark .intro-label { color: var(--gold); }
.section--dark .intro-label::before { background: var(--gold); }

/* ---------- Product lineup: clickable cards + detail modal ---------- */
.prod { cursor: pointer; }
.prod-more {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: var(--gold-deep);
}
.prod-more .arr { transition: transform 0.4s var(--ease); }
.prod:hover .prod-more .arr { transform: translateX(5px); }

.pm-overlay {
  position: fixed; inset: 0; z-index: 1000; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(22,20,15,0.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.pm-overlay.open { display: flex; opacity: 1; }
.pm-dialog {
  position: relative; width: 100%; max-width: 940px; max-height: 90svh; overflow: auto;
  background: #fff; border: 1px solid var(--line);
  box-shadow: 0 50px 110px -40px rgba(0,0,0,0.5);
  transform: translateY(18px); transition: transform 0.4s var(--ease);
}
.pm-overlay.open .pm-dialog { transform: none; }
.pm-close {
  position: absolute; top: 14px; right: 14px; z-index: 4; width: 42px; height: 42px;
  border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,0.9);
  color: var(--charcoal); font-size: 15px; line-height: 1; display: grid; place-items: center;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.pm-close:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.pm-top { display: grid; grid-template-columns: 1fr; }
@media (min-width: 780px) { .pm-top { grid-template-columns: 0.82fr 1.18fr; } }
.pm-visual {
  position: relative; background: var(--ivory); border-bottom: 1px solid var(--line-faint);
  min-height: 320px; overflow: hidden;
}
@media (min-width: 780px) { .pm-visual { border-bottom: none; border-right: 1px solid var(--line-faint); } }
.pm-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pm-body { padding: clamp(26px, 4vw, 42px); }
.pm-eyebrow { margin-bottom: 14px; }
.pm-name { font-family: var(--serif-en); font-size: clamp(28px, 4vw, 40px); color: var(--charcoal); line-height: 1.05; }
.pm-use { font-size: 14px; color: var(--charcoal-faint); margin-top: 8px; letter-spacing: 0.02em; }
.pm-specs { margin-top: 22px; border-top: 1px solid var(--line); }
.pm-specs .row { display: grid; grid-template-columns: 132px 1fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line-faint); }
.pm-specs .row .k { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); padding-top: 2px; }
.pm-specs .row .v { font-size: 14.5px; color: var(--charcoal); }
.pm-ba { padding: clamp(22px, 3vw, 30px) clamp(26px, 4vw, 42px) clamp(28px, 4vw, 42px); border-top: 1px solid var(--line); }
.pm-ba-head { display: inline-flex; align-items: center; gap: 12px; font-family: var(--serif-en); font-style: italic; font-size: 20px; color: var(--gold-deep); }
.pm-ba-head::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.pm-ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 18px; }
.pm-slot {
  position: relative; aspect-ratio: 4/3; margin: 0; border: 1px dashed var(--line);
  background: repeating-linear-gradient(45deg, var(--ivory), var(--ivory) 9px, var(--ivory-deep) 9px, var(--ivory-deep) 18px);
  display: grid; place-items: center;
}
.pm-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pm-slot span { font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace; font-size: 11px; letter-spacing: 0.22em; color: var(--charcoal-faint); text-transform: uppercase; }
.pm-ba-note { font-size: 12.5px; color: var(--charcoal-faint); margin-top: 14px; }
body.pm-lock { overflow: hidden; }
@media (prefers-reduced-motion: reduce) { .pm-overlay, .pm-dialog { transition: none; } }

/* ---------- Footer: company intro + business notice ---------- */
.foot-about { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 34ch; margin: 0; }
.foot-biz { padding-top: 26px; margin-top: 8px; border-top: 1px solid rgba(201,168,106,0.16); display: grid; gap: 5px; }
.foot-biz p { margin: 0; font-size: 12px; color: rgba(255,255,255,0.42); letter-spacing: 0.01em; line-height: 1.7; }
.foot-biz a { color: var(--gold); }
.foot-biz a:hover { color: #fff; }
