:root{
  --bg:#FAF7F2;
  --bg-alt:#F3EEE5;
  --card:#FFFFFF;
  --ink:#2B2620;
  --ink-soft:#6B6255;
  --ink-faint:#9B9284;
  --line:#E7DFD1;
  --gold:#A9895F;
  --gold-strong:#8C6E45;
  --gold-soft:#EFE3D0;
  --shadow: 0 12px 30px -18px rgba(43,38,32,0.35);
}

@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]){
    --bg:#1B1712;
    --bg-alt:#221D17;
    --card:#251F19;
    --ink:#F3EEE5;
    --ink-soft:#BDB2A0;
    --ink-faint:#7C7365;
    --line:#3A3225;
    --gold:#CBA876;
    --gold-strong:#E0BD8B;
    --gold-soft:#332A1C;
    --shadow: 0 12px 30px -18px rgba(0,0,0,0.6);
  }
}
:root[data-theme="dark"]{
  --bg:#1B1712;
  --bg-alt:#221D17;
  --card:#251F19;
  --ink:#F3EEE5;
  --ink-soft:#BDB2A0;
  --ink-faint:#7C7365;
  --line:#3A3225;
  --gold:#CBA876;
  --gold-strong:#E0BD8B;
  --gold-soft:#332A1C;
  --shadow: 0 12px 30px -18px rgba(0,0,0,0.6);
}

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

html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:"Pretendard Variable","Pretendard",-apple-system,BlinkMacSystemFont,system-ui,sans-serif;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3{
  font-family:"Noto Serif KR",serif;
  font-weight:600;
  margin:0;
  text-wrap:balance;
}

p{ margin:0; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
img{ max-width:100%; display:block; }

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

.skip-link{
  position:absolute; left:-999px; top:0; background:var(--ink); color:var(--bg);
  padding:10px 16px; z-index:200; border-radius:0 0 6px 0;
}
.skip-link:focus{ left:0; }

.wrap{ max-width:1200px; margin:0 auto; padding:0 clamp(20px,4vw,48px); }

:focus-visible{ outline:2px solid var(--gold-strong); outline-offset:2px; }

/* ===================== HEADER ===================== */
.site-header{
  position:sticky; top:0; z-index:100;
  background:#FFFFFF;
}
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]) .site-header{ background:var(--bg); }
}
:root[data-theme="dark"] .site-header{ background:var(--bg); }
.header-row{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:20px; padding-bottom:20px; gap:24px;
}
.logo{
  display:inline-flex; align-items:center;
}
.logo-mark{
  width:auto; height:19px; display:block;
}
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]) .logo-mark{ filter:invert(1); }
}
:root[data-theme="dark"] .logo-mark{ filter:invert(1); }

.nav-right{ display:flex; align-items:center; gap:clamp(16px,4vw,72px); }
.main-nav{ display:flex; gap:clamp(16px,3.5vw,56px); }
.main-nav a{
  font-size:clamp(0.82rem,1vw,0.92rem); letter-spacing:0.04em; color:var(--ink-soft);
  position:relative; padding:4px 0; transition:color .15s ease; white-space:nowrap;
}
.main-nav a::after{
  content:""; position:absolute; left:0; right:100%; bottom:-2px; height:1px;
  background:var(--gold-strong); transition:right .2s ease;
}
.main-nav a:hover{ color:var(--ink); }
.main-nav a:hover::after{ right:0; }

.header-actions{ display:flex; align-items:center; gap:clamp(10px,1.5vw,22px); }
.text-btn{
  background:none; border:none; padding:0; font-size:clamp(0.76rem,1vw,0.86rem); color:var(--ink-soft);
  white-space:nowrap; transition:color .15s ease;
}
.text-btn:hover{ color:var(--ink); }

.hamburger{
  display:flex; flex-direction:column; justify-content:center; gap:5px;
  width:26px; height:20px; background:none; border:none; padding:0;
}
.hamburger span{ display:block; width:100%; height:1.5px; background:var(--ink); transition:transform .2s ease, opacity .2s ease; }
.hamburger[aria-expanded="true"] span:nth-child(1){ transform:translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.hamburger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-6.5px) rotate(-45deg); }

.mobile-nav{
  display:none; flex-direction:column; gap:4px;
  padding:0 clamp(20px,4vw,48px) 20px; border-top:1px solid var(--line);
}
.mobile-nav.is-open{ display:flex; }
.mobile-nav a, .mobile-nav .text-btn{
  padding:12px 0; font-size:0.95rem; color:var(--ink-soft); text-align:left; background:none; border:none;
}
.mobile-nav-divider{ height:1px; background:var(--line); margin:6px 0; }

@media (max-width:860px){
  .main-nav, .header-actions .text-btn{ display:none; }
  .nav-right{ gap:16px; }
}

/* ===================== HERO ===================== */
.hero{
  position:relative; overflow:hidden;
  aspect-ratio:1840/812.8; min-height:480px;
  display:flex; align-items:flex-start;
  background:#EFE8E0;
}
.hero-bg{
  position:absolute; inset:0; z-index:0;
  width:100%; height:100%;
  object-fit:cover; object-position:70% 48%;
}
.hero::after{
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:linear-gradient(100deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.22) 34%, transparent 58%);
}
.hero-content{
  position:relative; z-index:2; width:100%;
  padding-top:clamp(44px,14vw,150px);
}
.hero-copy{ max-width:min(560px,90vw); }
.hero-copy .eyebrow{ font-family:"Noto Serif KR",serif; font-weight:500; color:#857A6E; margin-bottom:16px; }
.hero-copy h1{
  font-family:"Noto Serif KR",serif; font-weight:300;
  color:#262626; font-size:clamp(1.7rem,4vw,2.4rem); line-height:1.3; margin-bottom:clamp(24px,8vw,76px);
}
.hero-sub{ color:#595959; font-size:clamp(0.92rem,1.4vw,1.05rem); line-height:1.8; margin-bottom:clamp(32px,10vw,90px); }

.link-cta{
  display:inline-flex; flex-direction:column; align-items:flex-start; gap:8px;
  font-weight:400; font-size:0.95rem; letter-spacing:0.05em; color:var(--ink);
}
.hero-copy .link-cta{ color:#3D3D3D; }
.cta-arrow{
  display:block; align-self:flex-start;
  width:143px; height:14px; overflow:visible;
  stroke:currentColor; stroke-width:1; fill:none;
  stroke-linecap:round; stroke-linejoin:round;
  transition:transform .18s ease;
}
.link-cta:hover .cta-arrow{ transform:translateX(4px); }
.cta-label{ position:relative; top:5px; }

.eyebrow{
  font-size:0.86rem; color:var(--ink-faint); letter-spacing:0.02em; margin:0 0 14px;
}

@media (max-width:1024px) and (min-width:761px){
  .hero{ aspect-ratio:4/3; min-height:460px; }
  .hero-bg{ object-position:74% 45%; }
}

@media (max-width:760px){
  .hero{ aspect-ratio:3/3.2; min-height:440px; }
  .hero-bg{ object-position:76% 42%; }
  .hero::after{ background:linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.4) 45%, transparent 68%); }
}

@media (max-width:400px){
  .hero{ min-height:480px; }
}

/* ===================== PLACEHOLDER IMAGES ===================== */
.ph{
  position:relative; display:flex; align-items:center; justify-content:center;
  text-align:center; border-radius:4px; overflow:hidden;
  background:
    radial-gradient(circle at 30% 20%, var(--gold-soft), transparent 60%),
    linear-gradient(150deg, var(--bg-alt), var(--card));
  border:1px dashed var(--line); color:var(--ink-faint);
  flex-direction:column; gap:10px;
}
.ph svg{ color:var(--gold); opacity:0.7; }
.ph span{ font-size:0.78rem; line-height:1.5; }
.ph small{ font-size:0.68rem; color:var(--ink-faint); }

/* ===================== FEATURES ===================== */
.features{ background:#FAF9F7; padding:56px 0; }
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]) .features{ background:var(--bg-alt); }
}
:root[data-theme="dark"] .features{ background:var(--bg-alt); }
.features-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:32px;
}
.feature{ text-align:center; display:flex; flex-direction:column; align-items:center; gap:12px; }
.feature-icon{
  display:flex; align-items:center; justify-content:center; height:52px;
}
.feature-icon img{ height:100%; width:auto; }
.feature h3{ font-family:"Pretendard Variable","Pretendard",sans-serif; font-size:1rem; color:#7A746E; }
.feature p{ font-size:0.85rem; color:var(--ink-soft); }

@media (max-width:760px){
  .features-grid{ grid-template-columns:repeat(2,1fr); row-gap:36px; }
}

/* ===================== VALUE GRID ===================== */
.value-grid{ padding:70px 0; background:#FFFFFF; }
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]) .value-grid{ background:var(--bg); }
}
:root[data-theme="dark"] .value-grid{ background:var(--bg); }
.grid-4{ display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:20px; }
.value-card{ margin:0; }
.value-img{
  width:100%; height:auto; aspect-ratio:1520/1120;
  object-fit:cover; border-radius:2px; display:block;
}
.value-card figcaption{
  display:flex; flex-direction:column; align-items:center; gap:2px; text-align:center; padding-top:14px;
}
.value-card .en{ font-size:0.72rem; letter-spacing:0.1em; color:var(--gold-strong); font-weight:700; }
.value-card .kr{ font-size:0.92rem; font-weight:500; }

@media (max-width:760px){ .grid-4{ grid-template-columns:repeat(2,minmax(0,1fr)); } }

/* ===================== BEST SELLERS ===================== */
.best-sellers{ padding:20px 0 90px; background:#FFFFFF; }
.best-sellers--shop{ padding-top:80px; }
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]) .best-sellers{ background:var(--bg); }
}
:root[data-theme="dark"] .best-sellers{ background:var(--bg); }
.section-head{ text-align:center; margin-bottom:48px; }
.section-head h2{ font-size:clamp(1.6rem,3vw,2.1rem); letter-spacing:0.04em; margin-bottom:10px; }
.section-head p{ color:var(--ink-soft); font-size:0.92rem; }
.section-head--sub{ margin-bottom:36px; }
.section-head--sub h2{ font-size:1.3rem; letter-spacing:0; margin-bottom:0; }

.product-grid{ display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:26px; }
.product-thumb{ position:relative; width:100%; aspect-ratio:1/1; overflow:hidden; border-radius:2px; margin-bottom:18px; }
.product-img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:center; display:block;
}
.product-card{ display:block; }
.product-card--best{ position:relative; }
.badge{ z-index:2; font-weight:700; letter-spacing:0.04em; }
.badge--best{
  position:absolute; top:-29px; left:0px;
  width:62px; height:62px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:var(--card); border:1.5px solid var(--gold);
  color:var(--gold); font-size:0.72rem;
}
.product-card h3{ font-family:"Pretendard Variable","Pretendard",sans-serif; font-weight:600; font-size:0.94rem; margin-bottom:-4px; text-wrap:pretty; }
.product-card .cap{ font-size:0.78rem; color:#2B2B2B; margin-bottom:8px; min-height:1.2em; }
.product-card .price{ font-weight:700; font-size:1rem; }

.view-all-row{ display:flex; justify-content:center; margin-top:44px; }
.outline-btn{
  border:1px solid var(--ink); background:none; color:var(--ink);
  padding:12px 34px; font-size:0.82rem; letter-spacing:0.08em; border-radius:2px;
  transition:background .15s ease, color .15s ease;
}
.outline-btn:hover{ background:var(--ink); color:var(--bg); }

.solid-btn{
  border:none; background:var(--ink); color:var(--bg);
  padding:13px 20px; font-size:0.9rem; font-weight:700; border-radius:3px;
  transition:background .15s ease;
}
.solid-btn:hover{ background:var(--gold-strong); }

@media (max-width:860px){ .product-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); } }

/* ===================== BRAND STORY ===================== */
.story-grid{ display:grid; grid-template-columns:1fr 1fr; min-height:460px; }
.story-copy{
  background:#F6F2EF; display:flex; flex-direction:column; justify-content:center;
  padding:64px clamp(24px,6vw,88px);
}
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]) .story-copy{ background:var(--bg-alt); }
}
:root[data-theme="dark"] .story-copy{ background:var(--bg-alt); }
.story-copy h2{ font-size:clamp(1.5rem,3vw,2rem); line-height:1.4; margin-bottom:20px; }
.story-sub{ color:var(--ink-soft); margin-bottom:28px; }

.brand-intro{ padding:64px 0 80px; }
.brand-intro-grid{ display:grid; grid-template-columns:minmax(280px,620px) 1fr; gap:72px; align-items:start; }
.brand-intro-visual img{ width:100%; height:auto; display:block; border-radius:2px; }
.brand-intro-copy{ padding-top:8px; }
.brand-intro-copy h1{
  font-family:"Pretendard Variable","Pretendard",sans-serif; font-weight:700;
  font-size:clamp(1.25rem,2.1vw,1.55rem); line-height:1.55; color:var(--ink);
  margin-bottom:28px;
}
.brand-intro-copy .brand-lede{ font-weight:700; line-height:1.85; color:var(--ink); margin-bottom:24px; }
.brand-intro-copy .story-sub{ line-height:1.85; margin-bottom:20px; }
.brand-intro-copy .brand-closing{ font-weight:700; line-height:1.85; color:var(--ink); margin:0; }
@media (max-width:860px){
  .brand-intro-grid{ grid-template-columns:1fr; gap:32px; }
}
.story-visual{ position:relative; overflow:hidden; }
.story-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; display:block; }
@media (max-width:860px){
  .story-grid{ grid-template-columns:1fr; min-height:0; }
  .story-visual{ order:-1; aspect-ratio:982/508; }
  .story-copy{ padding:48px clamp(20px,6vw,48px); }
}

/* ===================== INSTAGRAM ===================== */
.instagram{ padding:80px 0; text-align:center; background:#FFFFFF; }
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]) .instagram{ background:var(--bg); }
}
:root[data-theme="dark"] .instagram{ background:var(--bg); }
.insta-head{ font-size:1.1rem; letter-spacing:0.06em; margin-bottom:32px; color:var(--ink-soft); }
.insta-grid{ display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:clamp(14px,4vw,48px); }
.insta-item{ display:block; position:relative; width:100%; aspect-ratio:1/1; overflow:hidden; border-radius:2px; }
.insta-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; display:block; }
@media (max-width:760px){ .insta-grid{ grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; } }

/* ===================== FOOTER ===================== */
.site-footer{ background:#F6F2EF; color:#111111; padding:56px 0; }
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]) .site-footer{ background:var(--bg-alt); color:var(--ink); }
}
:root[data-theme="dark"] .site-footer{ background:var(--bg-alt); color:var(--ink); }
.footer-grid{ display:grid; grid-template-columns:1.6fr 1fr; gap:40px; }
.logo--footer{ display:inline-flex; margin-bottom:20px; }
.logo--footer .logo-mark{ height:23px; }
.footer-links{ display:flex; gap:22px; flex-wrap:wrap; margin-bottom:22px; }
.footer-links a{ font-size:0.84rem; color:#111111; }
.footer-links a:hover{ color:var(--gold-strong); }
.biz-info{ font-size:0.78rem; color:#111111; line-height:1.9; }

.footer-cs{ border-left:1px solid var(--line); padding-left:40px; }
.cs-label{ font-size:0.74rem; letter-spacing:0.1em; color:#111111; font-weight:700; margin-bottom:8px; }
.cs-phone{ font-family:"Pretendard Variable","Pretendard",sans-serif; font-size:1.4rem; font-weight:600; margin-bottom:6px; }
.cs-hours{ font-size:0.8rem; color:#111111; }
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]) .footer-links a{ color:var(--ink-soft); }
  :root:not([data-theme="light"]) .biz-info{ color:var(--ink-faint); }
  :root:not([data-theme="light"]) .cs-hours{ color:var(--ink-soft); }
  :root:not([data-theme="light"]) .cs-label{ color:var(--gold-strong); }
}
:root[data-theme="dark"] .footer-links a{ color:var(--ink-soft); }
:root[data-theme="dark"] .biz-info{ color:var(--ink-faint); }
:root[data-theme="dark"] .cs-hours{ color:var(--ink-soft); }
:root[data-theme="dark"] .cs-label{ color:var(--gold-strong); }

@media (max-width:760px){
  .footer-grid{ grid-template-columns:1fr; }
  .footer-cs{ border-left:none; padding-left:0; border-top:1px solid var(--line); padding-top:24px; }
}

/* ===================== MODAL ===================== */
.modal-backdrop{
  position:fixed; inset:0; background:rgba(20,17,13,0.5); display:none;
  align-items:center; justify-content:center; z-index:300; padding:20px;
}
.modal-backdrop.is-open{ display:flex; }
.modal{
  background:var(--card); border-radius:8px; padding:34px 30px; width:100%; max-width:380px;
  position:relative; box-shadow:var(--shadow);
}
.modal-close{
  position:absolute; top:16px; right:16px; background:none; border:none; font-size:1.1rem; color:var(--ink-faint);
}
.modal-close:hover{ color:var(--ink); }
.modal-tabs{ display:flex; gap:24px; margin-bottom:24px; border-bottom:1px solid var(--line); }
.modal-tab{
  background:none; border:none; padding:0 0 12px; font-size:0.98rem; color:var(--ink-faint);
  border-bottom:2px solid transparent; margin-bottom:-1px; font-weight:600;
}
.modal-tab[aria-selected="true"]{ color:var(--ink); border-bottom-color:var(--gold-strong); }
.modal-form{ display:flex; flex-direction:column; gap:16px; }
.modal-form label{ display:flex; flex-direction:column; gap:6px; font-size:0.82rem; color:var(--ink-soft); }
.modal-form input{
  border:1px solid var(--line); background:var(--bg); color:var(--ink);
  border-radius:4px; padding:11px 12px; font-size:0.92rem; font-family:inherit;
}
.modal-form input:focus-visible{ outline:2px solid var(--gold-strong); outline-offset:1px; }
.modal-submit{ margin-top:6px; }
.modal-note{ font-size:0.74rem; color:var(--ink-faint); text-align:center; }

/* ===================== PRODUCT DETAIL (PDP) ===================== */
.pdp-crumb{
  display:flex; align-items:center; gap:10px; padding:22px 0;
  font-size:0.78rem; letter-spacing:0.02em; color:var(--ink-faint);
}
.pdp-crumb a{ color:var(--ink-faint); }
.pdp-crumb a:hover{ color:var(--ink); }
.pdp-crumb span:first-of-type{ color:var(--line); }
.pdp-crumb #pdpCrumbName{ color:var(--ink); }

.pdp{ padding:56px 0 72px; }
.pdp-grid{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.pdp-media{ position:sticky; top:96px; }
.pdp-img{ width:100%; height:auto; border-radius:4px; background:var(--bg-alt); display:block; }

.pdp-info{ padding-top:8px; }
.pdp-badge{ color:var(--gold-strong); margin:0 0 10px; }
.pdp-info h1{
  font-family:"Noto Serif KR",serif; font-weight:600;
  font-size:clamp(1.5rem,2.6vw,2rem); line-height:1.4; margin-bottom:10px;
}
.pdp-tagline{ color:var(--ink-soft); font-size:0.95rem; margin-bottom:22px; }

.pdp-price-row{
  display:flex; align-items:baseline; gap:12px; padding-bottom:22px;
  margin-bottom:22px; border-bottom:1px solid var(--line);
}
.pdp-price{ font-size:1.6rem; font-weight:700; }
.pdp-cap{ font-size:0.85rem; color:var(--ink-faint); }

.pdp-desc{ color:var(--ink-soft); line-height:1.8; margin-bottom:28px; max-width:46ch; }

.pdp-qty{
  display:inline-flex; align-items:center; gap:0; border:1px solid var(--line);
  border-radius:3px; margin-bottom:18px; overflow:hidden;
}
.qty-btn{
  width:40px; height:40px; background:var(--bg-alt); border:none; color:var(--ink);
  font-size:1.1rem; cursor:pointer;
}
.qty-btn:hover{ background:var(--gold-soft); }
#qtyInput{
  width:52px; height:40px; border:none; border-left:1px solid var(--line); border-right:1px solid var(--line);
  text-align:center; font-size:0.95rem; font-family:inherit; background:var(--card); color:var(--ink);
}

.pdp-actions{ display:flex; gap:12px; margin-bottom:16px; }
.pdp-actions .outline-btn, .pdp-actions .solid-btn{ flex:1; padding:15px 20px; }
.pdp-note{ font-size:0.76rem; color:var(--ink-faint); }

.pdp-detail-image{ max-width:860px; margin:0 auto; }
.pdp-detail-image img{ width:100%; height:auto; display:block; }

.pdp-detail{ background:var(--bg-alt); padding:64px 0; }
.pdp-detail h2{
  font-family:"Noto Serif KR",serif; font-weight:600; font-size:1.4rem; margin-bottom:32px;
}
.pdp-spec{ margin:0; max-width:640px; }
.pdp-spec > div{
  display:grid; grid-template-columns:140px 1fr; gap:20px;
  padding:18px 0; border-bottom:1px solid var(--line);
}
.pdp-spec > div:last-child{ border-bottom:none; }
.pdp-spec dt{ font-size:0.85rem; color:var(--ink-faint); font-weight:600; }
.pdp-spec dd{ margin:0; font-size:0.92rem; color:var(--ink); line-height:1.7; }

@media (max-width:860px){
  .pdp-grid{ grid-template-columns:1fr; gap:32px; }
  .pdp-media{ position:static; }
  .pdp-spec > div{ grid-template-columns:100px 1fr; }
}

/* ===================== LEGAL / INFO PAGES ===================== */
.legal-hero{ padding:48px 0 32px; }
.legal-hero h1{
  font-family:"Noto Serif KR",serif; font-weight:600;
  font-size:clamp(1.6rem,3vw,2.2rem); margin:8px 0 0;
}
.legal-hero p{ color:var(--ink-soft); margin-top:10px; }

.legal-body{ max-width:760px; margin:0 auto; padding:56px 0 90px; }
.legal-body h2{
  font-family:"Noto Serif KR",serif; font-weight:600; font-size:1.1rem;
  margin:40px 0 14px;
}
.legal-body h2:first-child{ margin-top:0; }
.legal-body p{ color:var(--ink-soft); line-height:1.85; margin:0 0 14px; }
.legal-body ul, .legal-body ol{ color:var(--ink-soft); line-height:1.85; margin:0 0 14px; padding-left:1.3em; }
.legal-body li{ margin-bottom:4px; }
.legal-body strong{ color:var(--ink); }
.legal-body .updated{ font-size:0.8rem; color:var(--ink-faint); margin-top:-6px; margin-bottom:32px; }

.info-section{ padding-bottom:70px; }
.info-section--last{ padding-bottom:90px; }
.info-section + .info-section{ padding-top:0; }
.info-section h2{
  font-family:"Noto Serif KR",serif; font-weight:600; font-size:1.2rem; margin:0 0 22px;
}

.faq-list{ max-width:760px; border-top:1px solid var(--line); }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-item summary{
  padding:18px 4px; cursor:pointer; font-weight:600; font-size:0.95rem;
  display:flex; justify-content:space-between; align-items:center; list-style:none;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; font-weight:400; color:var(--ink-faint); font-size:1.1rem; }
.faq-item[open] summary::after{ content:"–"; }
.faq-item p{ margin:0; padding:0 4px 18px; color:var(--ink-soft); line-height:1.8; max-width:64ch; }

.contact-card{
  max-width:600px; border:1px solid var(--line); border-radius:6px;
  padding:28px 26px; background:var(--bg-alt); margin-bottom:48px;
}
.contact-card h3{ font-size:1rem; margin:0 0 6px; }
.contact-card p{ color:var(--ink-soft); font-size:0.9rem; margin:0; }
.contact-card .contact-phone{ font-family:"Noto Serif KR",serif; font-size:1.3rem; font-weight:600; margin:10px 0 2px; }

.contact-form{ display:flex; flex-direction:column; gap:18px; max-width:560px; }
.contact-form .row2{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.contact-form label{ display:flex; flex-direction:column; gap:7px; font-size:0.85rem; color:var(--ink-soft); }
.contact-form input, .contact-form select, .contact-form textarea{
  border:1px solid var(--line); background:var(--card); color:var(--ink);
  border-radius:4px; padding:11px 12px; font-size:0.92rem; font-family:inherit;
}
.contact-form textarea{ min-height:130px; resize:vertical; }
.contact-form input:focus-visible, .contact-form select:focus-visible, .contact-form textarea:focus-visible{
  outline:2px solid var(--gold-strong); outline-offset:1px;
}
.form-note{ font-size:0.78rem; color:var(--ink-faint); }
.contact-form .submit-btn{ align-self:flex-start; padding:14px 32px; }
@media (max-width:560px){ .contact-form .row2{ grid-template-columns:1fr; } }

.info-section--first{ padding-top:48px; }
.partner-list{ color:var(--ink-soft); line-height:1.85; max-width:64ch; padding-left:1.2em; margin-bottom:8px; }
.partner-list strong{ color:var(--ink); }

.eyebrow--gold{ color:var(--gold-strong); }
.form-note--spaced{ margin-top:24px; }

.event-benefits{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.event-benefits .contact-card{ max-width:none; margin-bottom:0; }
@media (max-width:760px){ .event-benefits{ grid-template-columns:1fr; } }

/* ===================== COMMUNITY ===================== */
.board-list{ list-style:none; margin:0; padding:0; border-top:1px solid var(--line); }
.board-row{
  display:flex; align-items:center; gap:16px; padding:16px 4px;
  border-bottom:1px solid var(--line);
}
.board-badge{
  flex:none; font-size:0.72rem; font-weight:700; letter-spacing:0.02em;
  padding:4px 10px; border-radius:999px;
}
.board-badge--notice{ background:var(--gold-soft); color:var(--gold-strong); }
.board-badge--done{ background:var(--bg-alt); color:var(--ink-soft); }
.board-badge--wait{ background:#F6DFCB; color:#B5501C; }
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]) .board-badge--wait{ background:#3A2414; color:#FF9C5C; }
}
:root[data-theme="dark"] .board-badge--wait{ background:#3A2414; color:#FF9C5C; }
.board-title{ flex:1; font-size:0.92rem; color:var(--ink); min-width:0; }
a.board-title:hover{ color:var(--gold-strong); }
.board-date{ flex:none; font-size:0.8rem; color:var(--ink-faint); }
@media (max-width:560px){
  .board-row{ flex-wrap:wrap; }
  .board-title{ flex-basis:100%; order:3; }
}

.review-grid{ display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:20px; }
.review-card{ display:flex; flex-direction:column; }
.review-card img{ width:100%; aspect-ratio:1/1; object-fit:cover; border-radius:2px; margin-bottom:12px; display:block; }
.review-stars{ color:var(--gold-strong); font-size:0.85rem; letter-spacing:0.05em; margin-bottom:6px; display:block; }
.review-card p{ font-size:0.86rem; color:var(--ink-soft); line-height:1.6; margin:0 0 8px; }
.review-name{ font-size:0.78rem; color:var(--ink-faint); }
@media (max-width:860px){ .review-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); } }
