/* ===== LAURELLAI v3 Common Stylesheet ===== */
:root {
  --ink: #0a0a0a;
  --charcoal: #1a1a1a;
  --graphite: #4a4a4a;
  --stone: #8a8580;
  --silver: #c4bfb8;
  --paper: #ededea;
  --offwhite: #f0eeea;
  --white: #ffffff;
  --gold: #a08552;
  --gold-soft: #b8a078;
  --line: #d8d4cc;
  --accent: #c9335a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  line-break: strict;
  -webkit-line-break: strict;
}
html, body { max-width: 100%; overflow-x: hidden; }
body {
  font-family: 'Inter', 'Noto Sans KR', sans-serif;
  background: var(--offwhite);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
  letter-spacing: -0.01em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { word-break: keep-all; overflow-wrap: break-word; }

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(240, 238, 234, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header-top {
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-side { display: flex; align-items: center; gap: 22px; flex: 1; }
.header-side.right { justify-content: flex-end; }
.icon-btn {
  width: 24px; height: 24px;
  cursor: pointer;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.icon-btn svg { width: 20px; height: 20px; }
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink);
  font-style: italic;
}
.header-nav {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 14px 40px;
  display: flex;
  justify-content: center;
  gap: 56px;
}
.header-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-transform: uppercase;
  padding: 4px 0;
  position: relative;
  transition: color 0.3s;
  word-break: normal;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width 0.35s ease;
}
.header-nav a:hover::after,
.header-nav a.active::after { width: 100%; }

/* ===== SECTION COMMON ===== */
section.row { padding: 110px 40px; }
.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
  padding: 0 8px;
}
.section-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 17px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-eyebrow:empty { display: none; }
.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 22px;
}
.section-desc {
  font-size: 15px;
  line-height: 1.95;
  color: var(--graphite);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-wrap: pretty;
  word-break: keep-all;
  line-break: strict;
  letter-spacing: -0.02em;
}
.section-title-ko {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: none;
  line-height: 1.15;
}
.section-title-xl {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.section-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--graphite);
  margin-bottom: 32px;
}
.section-tagline:empty { display: none; margin: 0; }
.acc-showcase {
  max-width: 1200px;
  margin: 0 auto 56px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.acc-showcase .img-slot { aspect-ratio: 4/3; }
.acc-page-intro {
  padding: 150px 40px 0;
  text-align: center;
  background: var(--paper);
}
.acc-page-intro h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.acc-page-intro .acc-page-desc {
  max-width: 720px;
  margin: 0 auto 48px;
}
.detail-long,
.detail-short,
.tech-desc,
.brand-story p,
.acc-list-desc,
.acc-page-desc,
.card-desc,
.cat-card-desc {
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
  letter-spacing: -0.02em;
}
/* ===== IMAGE SLOT ===== */
.img-slot {
  position: relative;
  background: var(--paper);
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-slot img.cms-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}
.img-slot-guide { text-align: center; color: var(--stone); padding: 20px; position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 1; }
.img-slot-guide .label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 8px; }
.img-slot-guide .filename {
  font-family: monospace; font-size: 11px;
  color: var(--graphite);
  background: rgba(255,255,255,0.7);
  padding: 5px 10px; border: 1px solid var(--line);
  display: inline-block;
}

/* ===== BUTTONS ===== */
.btn-solid {
  display: inline-block;
  background: var(--ink); color: var(--offwhite);
  padding: 18px 40px;
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  border: none; cursor: pointer; font-family: inherit;
  transition: background 0.3s;
}
.btn-solid:hover { background: var(--charcoal); }
.btn-pill {
  display: inline-block;
  background: var(--accent); color: white;
  padding: 18px 44px; border-radius: 999px;
  font-size: 15px; font-weight: 500; letter-spacing: 0.05em;
  transition: transform 0.3s;
}
.btn-pill:hover { transform: translateY(-2px); }
.link-arrow {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  display: inline-flex; align-items: center; gap: 12px;
  transition: gap 0.3s;
}
.link-arrow::after { content: '→'; }
.link-arrow:hover { gap: 20px; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  max-width: 1400px; margin: 0 auto;
  padding: 30px 40px 0;
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--stone); text-transform: uppercase;
}
.breadcrumb a { color: var(--stone); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { margin: 0 14px; color: var(--silver); }
.breadcrumb .current { color: var(--ink); }

/* ===== PAGE HERO (서브) ===== */
.page-hero {
  padding: 180px 40px 80px;
  text-align: center;
  background: var(--offwhite);
}
.page-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(56px, 9vw, 140px);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 0.95;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 24px;
  word-break: keep-all;
}
.page-hero .subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--graphite);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
  word-break: keep-all;
  line-break: strict;
}

/* ===== FOOTER ===== */
footer {
  background: var(--charcoal);
  color: var(--silver);
  padding: 90px 40px 32px;
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 32px;
  color: var(--offwhite);
  margin-bottom: 20px;
}
.footer-desc { font-size: 12px; line-height: 1.8; color: var(--stone); max-width: 320px; }
.footer-col h5 {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--offwhite); margin-bottom: 20px; font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 12px; color: var(--stone); transition: color 0.3s; }
.footer-col a:hover { color: var(--offwhite); }
.footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between;
  font-size: 10px; color: #6a6560;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.newsletter { margin-top: 24px; display: flex; max-width: 320px; }
.newsletter input {
  flex: 1; background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--offwhite);
  padding: 12px 14px;
  font-family: inherit; font-size: 12px; outline: none;
}
.newsletter button {
  background: var(--gold-soft); color: var(--ink);
  border: none; padding: 12px 20px;
  font-family: inherit; font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer;
}

/* ===== ADMIN BANNER ===== */
.admin-banner {
  position: fixed;
  bottom: 20px; right: 20px;
  background: var(--ink); color: var(--offwhite);
  padding: 14px 22px;
  font-size: 11px; letter-spacing: 0.2em;
  z-index: 200;
  border: 1px solid var(--gold);
  text-transform: uppercase;
  transition: transform 0.3s;
}
.admin-banner:hover { transform: translateY(-2px); }
.admin-banner::before {
  content: '⚙'; color: var(--gold-soft); margin-right: 8px;
}

/* ===== SIDE MENU (햄버거 메뉴) ===== */
.side-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  z-index: 999;
}
.side-menu-overlay.open { opacity: 1; pointer-events: auto; }

.side-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 380px; max-width: 85vw;
  background: var(--offwhite);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.side-menu.open { transform: translateX(0); }
.side-menu-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 32px;
  border-bottom: 1px solid var(--line);
}
.side-menu-header .logo { font-size: 24px; }
.side-menu-close {
  width: 32px; height: 32px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--ink);
  border: none; background: transparent;
}
.side-menu-nav {
  padding: 20px 0;
  flex: 1;
}
.side-menu-section {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--gold);
  padding: 16px 32px 6px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.side-menu-item {
  display: block;
  padding: 14px 32px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--paper);
  transition: background 0.2s, padding 0.3s;
}
.side-menu-item:hover {
  background: var(--paper);
  padding-left: 38px;
}
.side-menu-item.sub {
  padding-left: 48px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--graphite);
  text-transform: none;
  font-weight: 400;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
}
.side-menu-item.sub:hover { padding-left: 54px; }
.side-menu-footer {
  padding: 24px 32px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--stone);
  letter-spacing: 0.1em;
}

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s, transform 1s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  section.row { padding: 70px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .acc-showcase { grid-template-columns: 1fr; padding: 0 16px; margin-bottom: 40px; }
  .acc-page-intro { padding: 120px 16px 0; }
  .header-top { padding: 12px 16px; }
  .header-nav { padding: 10px 12px; gap: 18px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .header-nav::-webkit-scrollbar { display: none; }
  .header-nav a { font-size: 10px; letter-spacing: 0.12em; white-space: nowrap; padding: 2px 0; }
  .header-side { gap: 14px; }
  .logo { font-size: 22px; }
  .page-hero { padding: 130px 16px 50px; }
  .page-hero h1 {
    font-size: clamp(32px, 10vw, 56px);
    word-break: keep-all;
    overflow-wrap: normal;
    white-space: nowrap;
  }
  .page-hero .subtitle { font-size: 14px; }
  .breadcrumb { padding: 24px 16px 0; font-size: 10px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .admin-banner {
    padding: 8px 12px;
    font-size: 9px;
    bottom: 12px;
    right: 12px;
    letter-spacing: 0.15em;
    opacity: 0.85;
  }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  section.row { padding: 50px 16px; }
}
