:root {
  --cream: #f3f4ec;
  --forest: #2c3d2e;
  --bark: #7a6a52;
  --mist: #c8d4c0;
  --elderflower: #e8e0d0;
  --ink: #1a1a18;
  --light-ink: #4a4a42;
  --rule: #b8b0a0;
  --spruce: #3d6b5c;
  --spruce-card: #4a7869;
  --soil: #5a4a38;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 58px;
  display: flex;
  align-items: center;
  padding: 0 max(22px, calc((100vw - 1120px) / 2));
  background: rgba(243, 244, 236, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184, 176, 160, 0.55);
}
.brand {
  margin-right: auto;
  color: var(--forest);
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  font-style: italic;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.contact {
  border: 0;
  padding: 0;
  color: var(--bark);
  background: transparent;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
main { min-height: 70vh; }
.section,
.footer {
  padding-left: max(24px, calc((100vw - 1120px) / 2));
  padding-right: max(24px, calc((100vw - 1120px) / 2));
}
.eyebrow {
  margin-bottom: 14px;
  color: var(--bark);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
h1,
h2,
h3,
p { margin-top: 0; }
h2 {
  margin-bottom: 0;
  color: var(--forest);
  font-size: clamp(22px, 3.2vw, 35px);
  font-weight: 500;
  letter-spacing: -0.03em;
}
.section {
  padding-top: clamp(44px, 7vw, 78px);
  padding-bottom: clamp(48px, 7vw, 82px);
  border-bottom: 1px solid rgba(184, 176, 160, 0.55);
}
.press-section {
  padding-top: clamp(28px, 4.5vw, 48px);
  background: var(--cream);
}
.section.muted { background: #eef1e6; }
.section-head { margin-bottom: 26px; }
.press-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.52fr) minmax(250px, 0.74fr);
  gap: clamp(32px, 6vw, 68px);
  align-items: start;
}
.card,
.press-feature {
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.58);
}
.press-feature { display: grid; grid-template-columns: minmax(240px, 38%) minmax(0, 1fr); min-height: 360px; overflow: hidden; align-items: stretch; }
.thumb {
  min-height: 260px;
  background: var(--mist);
  overflow: hidden;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.thumb.empty { display: flex; align-items: center; justify-content: center; color: var(--bark); font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }
.press-feature > * { min-width: 0; }
.press-feature .thumb { width: 100%; height: 100%; min-height: 360px; aspect-ratio: auto; }
.press-feature .thumb-link { grid-column: 1; align-self: stretch; height: 100%; overflow: hidden; }
.press-feature .card-body { grid-column: 2; min-width: 0; overflow: hidden; }
.card-body { padding: clamp(22px, 3vw, 34px); display: flex; flex-direction: column; gap: 14px; }
.meta,
.list-title {
  color: var(--bark);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.card-body h3 { margin-bottom: 0; color: var(--forest); font-size: clamp(16px, 1.75vw, 22px); line-height: 1.36; }
.press-feature .card-body h3 { font-size: clamp(18px, 2vw, 26px); line-height: 1.34; }
.card-title-link,
.thumb-link { color: inherit; text-decoration: none; }
.thumb-link { display: block; min-height: 100%; }
.thumb-link:hover img,
.card-title-link:hover { color: var(--spruce); }
.thumb-link:hover img { transform: scale(1.025); }
.card-body p { margin-bottom: 0; color: var(--light-ink); line-height: 1.75; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; padding-top: 10px; }
.press-actions { flex-direction: column; align-items: stretch; }
.action-row { display: flex; gap: 10px; width: 100%; }
.primary-row { flex-wrap: nowrap; }
.primary-row .btn { flex: 1 1 0; min-width: max-content; padding-left: 12px; padding-right: 12px; }
.detail-row .btn { width: 100%; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--forest);
  border-radius: 2px;
  padding: 11px 15px;
  color: var(--forest);
  background: transparent;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}
.btn.primary,
.btn:hover { background: var(--forest); color: var(--cream); }
.btn.disabled { pointer-events: none; border-color: var(--rule); color: var(--bark); opacity: 0.72; }
.btn.request { cursor: pointer; }
.btn-icon {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.inline-chevron,
.press-row-chevron {
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.press-list-wrap {
  padding: 0;
  border-top: 1px solid var(--bark);
  border-bottom: 1px solid var(--bark);
  background: transparent;
}
.press-list-wrap .list-title { padding: 12px 0 2px; }
.press-list { display: flex; flex-direction: column; gap: 0; }
.press-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 14px;
  gap: 10px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(184, 176, 160, 0.55);
  text-decoration: none;
}
.press-row:last-child { border-bottom: 0; }
.press-row:hover .press-row-title { color: var(--spruce); }
.press-row-date { color: var(--bark); font-family: 'DM Mono', monospace; font-size: 10.5px; }
.press-row-title { color: var(--forest); font-weight: 400; line-height: 1.36; }
.press-row-chevron {
  justify-self: end;
  color: var(--spruce);
  opacity: 0.82;
}
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-card { display: flex; flex-direction: column; min-height: 100%; }
.product-card .thumb { aspect-ratio: 4 / 3; min-height: 0; }
.badge { display: inline-flex; width: max-content; border: 1px solid currentColor; border-radius: 999px; padding: 5px 10px; color: var(--spruce); font-size: 12px; font-weight: 400; }
.empty-state { padding: 28px; border: 1px dashed var(--rule); color: var(--bark); text-align: center; }
.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 34px;
  padding-bottom: 34px;
  background: var(--ink);
  color: rgba(243, 244, 236, 0.78);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.06em;
}
.footer a { color: var(--cream); text-decoration: none; }
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.contact-modal.open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 24, 0.48);
  backdrop-filter: blur(4px);
}
.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  max-height: calc(100vh - 44px);
  overflow: auto;
  border: 1px solid var(--rule);
  background: var(--cream);
  padding: clamp(26px, 5vw, 38px);
  box-shadow: 0 20px 60px rgba(26, 26, 24, 0.24);
}
.modal-card h2 { font-size: clamp(24px, 5vw, 34px); }
.modal-card p { color: var(--light-ink); line-height: 1.75; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--bark);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
.modal-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.contact-phone { color: var(--forest); font-weight: 400; text-decoration: none; }
body.modal-open { overflow: hidden; }
@media (max-width: 840px) {
  .press-layout,
  .press-feature,
  .product-grid { grid-template-columns: 1fr; }
  .press-feature .thumb-link,
  .press-feature .card-body { grid-column: auto; }
  .press-feature .thumb { height: auto; aspect-ratio: 3 / 4; }
  .actions .btn { width: 100%; }
  .action-row { flex-direction: column; }
  .primary-row .btn { min-width: 0; }
  .topbar { padding-left: 22px; padding-right: 22px; }
  .press-section { padding-top: 26px; }
  .press-list-wrap { margin-top: 4px; }
}
