@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@600;700&family=Noto+Serif+KR:wght@600&display=swap');

:root {
  --lm-ink: #17352f;
  --lm-leaf: #2f6b4f;
  --lm-citrus: #f36b32;
  --lm-sage: #eef3e8;
  --lm-cream: #fff8ed;
  --lm-white: #ffffff;
  --lm-line: #d7ddd5;
  --lm-muted: #68756f;
  --lm-dark: #102a25;
  --lm-blue: #315d78;
  --lm-shadow: 0 18px 48px rgba(23, 53, 47, 0.1);
  --lm-max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--lm-ink);
  background: var(--lm-white);
  font-family: Pretendard, Arial, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { overflow-wrap: anywhere; }

.lm-container {
  width: min(var(--lm-max), calc(100% - 56px));
  margin-inline: auto;
}
.lm-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;
}
.lm-announcement {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 7px 20px;
  background: var(--lm-citrus);
  color: var(--lm-white);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
.lm-site-header {
  position: relative;
  z-index: 50;
  height: 80px;
  background: var(--lm-white);
  border-bottom: 1px solid var(--lm-line);
}
.lm-header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 30px;
}
.lm-brand {
  display: inline-flex;
  align-items: center;
  width: 148px;
  min-height: 44px;
}
.lm-brand img { width: 148px; height: auto; }
.lm-brand-word {
  color: var(--lm-ink);
  font-family: Manrope, Pretendard, sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
}
.lm-main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  min-width: 0;
}
.lm-main-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 650;
}
.lm-main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--lm-citrus);
  transition: right 180ms ease;
}
.lm-main-nav a:hover::after,
.lm-main-nav a[aria-current='page']::after { right: 0; }
.lm-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lm-icon-button {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  flex: 0 0 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  line-height: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.lm-icon-button:hover { background: var(--lm-sage); }
.lm-icon-button > svg,
.lm-icon-button > i {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0;
}
.lm-menu-button { display: none; }
.lm-cart-link { position: relative; }
.lm-cart-count {
  position: absolute;
  top: 5px;
  right: 3px;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lm-citrus);
  color: var(--lm-white);
  font-size: 10px;
  line-height: 1;
}
.lm-mobile-nav {
  display: none;
  position: fixed;
  z-index: 45;
  inset: 114px 0 0;
  padding: 30px 24px 48px;
  background: var(--lm-white);
  overflow-y: auto;
}
.lm-mobile-nav.is-open { display: block; }
.lm-mobile-nav a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--lm-line);
  font-size: 20px;
  font-weight: 750;
}
.lm-mobile-nav a > svg { width: 20px; height: 20px; }
.lm-search-panel {
  display: none;
  position: absolute;
  z-index: 60;
  left: 0;
  right: 0;
  top: 80px;
  padding: 24px 0;
  background: var(--lm-white);
  border-bottom: 1px solid var(--lm-line);
  box-shadow: var(--lm-shadow);
}
.lm-search-panel.is-open { display: block; }
.lm-search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.lm-search-form input {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--lm-ink);
  border-radius: 4px;
}
.lm-search-form button { min-width: 116px; }

.lm-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border: 1px solid var(--lm-ink);
  border-radius: 5px;
  background: transparent;
  color: var(--lm-ink);
  font-weight: 750;
  cursor: pointer;
}
.lm-button > svg { width: 18px; height: 18px; }
.lm-button--primary {
  background: var(--lm-citrus);
  border-color: var(--lm-citrus);
  color: var(--lm-white);
}
.lm-button--dark {
  background: var(--lm-ink);
  border-color: var(--lm-ink);
  color: var(--lm-white);
}
.lm-button--light { border-color: var(--lm-white); color: var(--lm-white); }
.lm-button:hover { transform: translateY(-1px); }
.lm-text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid currentColor;
  font-weight: 750;
}
.lm-text-link > svg { width: 17px; height: 17px; }
.lm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lm-citrus);
  font-family: Manrope, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.lm-eyebrow::before {
  content: '';
  width: 34px;
  height: 3px;
  background: currentColor;
}
.lm-section { padding: 104px 0; }
.lm-section--sage { background: var(--lm-sage); }
.lm-section--cream { background: var(--lm-cream); }
.lm-section--dark { background: var(--lm-dark); color: var(--lm-white); }
.lm-section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 44px;
}
.lm-section-head h2 {
  margin: 12px 0 0;
  font-family: 'Noto Serif KR', serif;
  font-size: 42px;
  line-height: 1.32;
}
.lm-section-head p {
  max-width: 590px;
  margin: 0 0 4px;
  color: var(--lm-muted);
  font-size: 16px;
  line-height: 1.78;
}

.lm-home-hero {
  min-height: 690px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--lm-white);
  background: var(--lm-dark) url('images/client-hero-current.jpg') center / cover no-repeat;
}
.lm-home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 49, 38, 0.64);
}
.lm-home-hero__content {
  position: relative;
  z-index: 1;
  padding: 72px 0;
}
.lm-home-hero h1 {
  max-width: 760px;
  margin: 23px 0;
  font-size: 62px;
  line-height: 1.12;
}
.lm-home-hero p {
  max-width: 580px;
  margin: 0 0 34px;
  color: #edf3ef;
  font-size: 18px;
  line-height: 1.75;
}
.lm-action-row { display: flex; flex-wrap: wrap; gap: 10px; }
.lm-routine-rail { background: var(--lm-sage); border-bottom: 1px solid var(--lm-line); }
.lm-routine-grid {
  display: grid;
  grid-template-columns: 280px repeat(3, 1fr);
}
.lm-routine-intro,
.lm-routine-tile {
  min-height: 232px;
  padding: 42px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.lm-routine-intro h2 { margin: 16px 0 0; font-size: 28px; line-height: 1.3; }
.lm-routine-tile {
  border: 0;
  border-left: 1px solid var(--lm-line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.lm-routine-tile:hover,
.lm-routine-tile:focus-visible { background: var(--lm-white); }
.lm-routine-tile__number { color: var(--lm-citrus); font: 700 12px Manrope, sans-serif; }
.lm-routine-tile h3 { margin: 28px 0 8px; font-size: 23px; }
.lm-routine-tile p { margin: 0; color: var(--lm-muted); font-size: 14px; line-height: 1.6; }
.lm-routine-tile svg { width: 21px; height: 21px; margin-top: 18px; }

.lm-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.lm-product-card { min-width: 0; }
.lm-product-card[hidden] { display: none; }
.lm-product-card__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f6f2;
  border: 1px solid #e4e8e2;
  border-radius: 5px;
}
.lm-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}
.lm-product-card:hover .lm-product-card__media img { transform: scale(1.025); }
.lm-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 9px;
  border-radius: 3px;
  background: var(--lm-white);
  color: var(--lm-leaf);
  font-size: 11px;
  font-weight: 800;
}
.lm-product-card__body { padding: 18px 1px 6px; }
.lm-product-card__category { color: var(--lm-leaf); font-size: 12px; font-weight: 800; }
.lm-product-card h3 { min-height: 52px; margin: 8px 0 5px; font-size: 18px; line-height: 1.45; }
.lm-product-card__description { min-height: 42px; margin: 0 0 12px; color: var(--lm-muted); font-size: 14px; line-height: 1.5; }
.lm-product-card__price { font-size: 17px; font-weight: 850; }
.lm-product-card__price del { margin-left: 7px; color: #9ba39f; font-size: 13px; font-weight: 450; }
.lm-product-card__action {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 13px;
  border-top: 1px solid var(--lm-line);
  font-size: 13px;
  font-weight: 750;
}
.lm-product-card__action svg { width: 17px; height: 17px; }
.lm-data-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--lm-line);
  border-bottom: 1px solid var(--lm-line);
}
.lm-data-item { padding: 34px; text-align: center; }
.lm-data-item + .lm-data-item { border-left: 1px solid var(--lm-line); }
.lm-data-item strong { display: block; color: var(--lm-citrus); font-family: Manrope, sans-serif; font-size: 32px; }
.lm-data-item span { display: block; margin-top: 8px; color: var(--lm-muted); font-size: 14px; }
.lm-story-band { display: grid; grid-template-columns: 1.08fr 0.92fr; min-height: 580px; }
.lm-story-band__media { min-height: 580px; }
.lm-story-band__media img { width: 100%; height: 100%; object-fit: cover; }
.lm-story-band__copy {
  padding: 72px max(48px, calc((100vw - var(--lm-max)) / 2));
  padding-left: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--lm-dark);
  color: var(--lm-white);
}
.lm-story-band__copy h2 { margin: 16px 0 22px; font: 600 42px/1.36 'Noto Serif KR', serif; }
.lm-story-band__copy p { max-width: 490px; margin: 0 0 18px; color: #d7e5df; line-height: 1.8; }
.lm-compare-wrap { overflow-x: auto; }
.lm-compare-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  border-top: 2px solid var(--lm-ink);
  border-bottom: 1px solid var(--lm-line);
  text-align: left;
}
.lm-compare-table th,
.lm-compare-table td { padding: 20px; border-bottom: 1px solid var(--lm-line); border-left: 1px solid var(--lm-line); }
.lm-compare-table th:first-child,
.lm-compare-table td:first-child { border-left: 0; }
.lm-compare-table thead th { background: var(--lm-sage); }
.lm-compare-table tbody th { width: 180px; }
.lm-feature-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lm-feature {
  min-height: 240px;
  padding: 30px;
  border: 1px solid var(--lm-line);
  border-radius: 5px;
  background: var(--lm-white);
}
.lm-feature__icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  line-height: 0;
  background: var(--lm-sage);
  color: var(--lm-leaf);
}
.lm-feature__icon > svg { display: block; width: 21px; height: 21px; margin: 0; }
.lm-feature h3 { margin: 28px 0 10px; font-size: 21px; }
.lm-feature p { margin: 0; color: var(--lm-muted); line-height: 1.7; }
.lm-faq { border-top: 2px solid var(--lm-ink); }
.lm-faq-item { border-bottom: 1px solid var(--lm-line); }
.lm-faq-button {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 4px;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 750;
  cursor: pointer;
}
.lm-faq-button > svg { width: 20px; height: 20px; flex: 0 0 20px; transition: transform 180ms ease; }
.lm-faq-button[aria-expanded='true'] > svg { transform: rotate(45deg); }
.lm-faq-answer { display: none; padding: 0 4px 22px; color: var(--lm-muted); line-height: 1.75; }
.lm-faq-answer.is-open { display: block; }
.lm-cta-band { padding: 74px 0; background: var(--lm-citrus); color: var(--lm-white); }
.lm-cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.lm-cta-band h2 { margin: 0; font: 600 36px/1.35 'Noto Serif KR', serif; }

.lm-page-hero {
  min-height: 430px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--lm-sage);
}
.lm-page-hero--brand { background: #f7f7f4 url('images/client-hero-mobile.jpg') center / cover no-repeat; }
.lm-page-hero--shop { color: var(--lm-white); background: var(--lm-dark) url('images/client-hero-current.jpg') center / cover no-repeat; }
.lm-page-hero--shop::before { content: ''; position: absolute; inset: 0; background: rgba(15, 49, 38, 0.66); }
.lm-page-hero--event { background: #f5f7f3 url('images/stock-green.jpg') right center / 62% auto no-repeat; }
.lm-page-hero__content { position: relative; z-index: 1; max-width: 720px; padding: 72px 0; }
.lm-page-hero h1 { margin: 18px 0; font: 600 54px/1.2 'Noto Serif KR', serif; }
.lm-page-hero p { max-width: 590px; margin: 0; color: var(--lm-muted); font-size: 18px; line-height: 1.75; }
.lm-page-hero--shop p { color: #e5eeea; }
.lm-breadcrumb { min-height: 52px; display: flex; align-items: center; gap: 8px; color: var(--lm-muted); font-size: 13px; }
.lm-breadcrumb svg { width: 14px; height: 14px; }

.lm-brand-intro { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 96px; }
.lm-brand-intro h2 { margin: 12px 0 0; font: 600 42px/1.38 'Noto Serif KR', serif; }
.lm-brand-intro__copy p { margin: 0 0 20px; color: var(--lm-muted); font-size: 17px; line-height: 1.85; }
.lm-timeline { border-top: 2px solid var(--lm-ink); }
.lm-timeline-item { display: grid; grid-template-columns: 160px 1fr; gap: 50px; padding: 34px 0; border-bottom: 1px solid var(--lm-line); }
.lm-timeline-item strong { color: var(--lm-citrus); font: 700 24px Manrope, sans-serif; }
.lm-timeline-item h3 { margin: 0 0 9px; font-size: 21px; }
.lm-timeline-item p { margin: 0; color: var(--lm-muted); line-height: 1.7; }
.lm-principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lm-principle { padding-top: 20px; border-top: 3px solid var(--lm-citrus); }
.lm-principle span { color: var(--lm-citrus); font: 700 12px Manrope, sans-serif; }
.lm-principle h3 { margin: 24px 0 12px; font: 600 25px 'Noto Serif KR', serif; }
.lm-principle p { color: var(--lm-muted); line-height: 1.75; }

.lm-shop-tools {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}
.lm-shop-search { position: relative; }
.lm-shop-search > svg { position: absolute; left: 15px; top: 50%; width: 19px; height: 19px; transform: translateY(-50%); color: var(--lm-muted); }
.lm-shop-search input,
.lm-select {
  min-height: 48px;
  border: 1px solid var(--lm-line);
  border-radius: 4px;
  background: var(--lm-white);
}
.lm-shop-search input { width: 100%; padding: 0 16px 0 46px; }
.lm-select { min-width: 165px; padding: 0 38px 0 14px; }
.lm-filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.lm-filter-button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--lm-line);
  border-radius: 4px;
  background: var(--lm-white);
  cursor: pointer;
}
.lm-filter-button.is-active { border-color: var(--lm-ink); background: var(--lm-ink); color: var(--lm-white); }
.lm-result-count { color: var(--lm-muted); font-size: 14px; }
.lm-empty-state { display: none; padding: 72px 24px; text-align: center; border-top: 1px solid var(--lm-line); border-bottom: 1px solid var(--lm-line); }
.lm-empty-state.is-visible { display: block; }

.lm-product-detail { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 70px; padding: 34px 0 100px; }
.lm-gallery-main { aspect-ratio: 1; overflow: hidden; background: #f5f6f2; border: 1px solid var(--lm-line); }
.lm-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.lm-gallery-thumbs { display: grid; grid-template-columns: repeat(2, 86px); gap: 10px; margin-top: 12px; }
.lm-gallery-thumb { width: 86px; height: 86px; padding: 0; border: 1px solid var(--lm-line); background: #f5f6f2; cursor: pointer; }
.lm-gallery-thumb.is-active { border: 2px solid var(--lm-ink); }
.lm-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lm-purchase-panel { align-self: start; position: sticky; top: 24px; }
.lm-product-kicker { color: var(--lm-leaf); font-size: 13px; font-weight: 800; }
.lm-purchase-panel h1 { margin: 10px 0 16px; font-size: 36px; line-height: 1.3; }
.lm-price-line { display: flex; align-items: baseline; gap: 10px; margin-bottom: 24px; }
.lm-price-line strong { font-size: 28px; }
.lm-price-line del { color: #9aa39f; }
.lm-product-summary { margin: 0 0 26px; color: var(--lm-muted); line-height: 1.75; }
.lm-purchase-facts { margin: 0 0 24px; border-top: 1px solid var(--lm-line); }
.lm-purchase-fact { display: grid; grid-template-columns: 110px 1fr; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--lm-line); font-size: 14px; }
.lm-purchase-fact dt { font-weight: 750; }
.lm-purchase-fact dd { margin: 0; color: var(--lm-muted); }
.lm-option-label { display: block; margin: 20px 0 8px; font-size: 14px; font-weight: 750; }
.lm-option-select { width: 100%; min-height: 50px; padding: 0 14px; border: 1px solid var(--lm-line); background: var(--lm-white); }
.lm-quantity-row { display: flex; align-items: center; justify-content: space-between; margin: 18px 0; padding: 15px 0; border-top: 1px solid var(--lm-line); border-bottom: 1px solid var(--lm-line); }
.lm-stepper { display: grid; grid-template-columns: 44px 50px 44px; height: 44px; border: 1px solid var(--lm-line); }
.lm-stepper button { border: 0; background: var(--lm-white); cursor: pointer; }
.lm-stepper button > svg { display: block; width: 16px; height: 16px; margin: auto; }
.lm-stepper output { display: grid; place-items: center; border-left: 1px solid var(--lm-line); border-right: 1px solid var(--lm-line); }
.lm-total { display: flex; justify-content: space-between; align-items: baseline; margin: 22px 0; }
.lm-total strong { font-size: 24px; }
.lm-purchase-actions { display: grid; grid-template-columns: 1fr 1.45fr; gap: 8px; }
.lm-product-information { background: var(--lm-cream); }
.lm-info-blocks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 2px solid var(--lm-ink); }
.lm-info-block { min-height: 220px; padding: 30px; border-bottom: 1px solid var(--lm-line); }
.lm-info-block + .lm-info-block { border-left: 1px solid var(--lm-line); }
.lm-info-block span { color: var(--lm-citrus); font: 700 12px Manrope, sans-serif; }
.lm-info-block h3 { margin: 24px 0 12px; font-size: 21px; }
.lm-info-block p { margin: 0; color: var(--lm-muted); line-height: 1.7; }

.lm-event-tabs { display: flex; gap: 6px; margin-bottom: 28px; }
.lm-event-tab { min-height: 46px; padding: 0 20px; border: 1px solid var(--lm-line); background: var(--lm-white); cursor: pointer; }
.lm-event-tab.is-active { background: var(--lm-ink); border-color: var(--lm-ink); color: var(--lm-white); }
.lm-event-empty { padding: 80px 24px; text-align: center; border-top: 2px solid var(--lm-ink); border-bottom: 1px solid var(--lm-line); }
.lm-event-empty__icon { width: 54px; height: 54px; display: grid; place-items: center; margin: 0 auto 22px; background: var(--lm-sage); color: var(--lm-leaf); }
.lm-event-empty__icon svg { width: 24px; height: 24px; }
.lm-event-empty h2 { margin: 0 0 10px; font-size: 25px; }
.lm-event-empty p { margin: 0; color: var(--lm-muted); line-height: 1.7; }
.lm-guide-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 22px; }
.lm-guide-feature { min-height: 480px; position: relative; overflow: hidden; color: var(--lm-white); }
.lm-guide-feature img { width: 100%; height: 100%; object-fit: cover; }
.lm-guide-feature__copy { position: absolute; left: 0; right: 0; bottom: 0; padding: 34px; background: rgba(16, 42, 37, 0.82); }
.lm-guide-feature h3 { margin: 10px 0; font: 600 28px 'Noto Serif KR', serif; }
.lm-guide-list { border-top: 2px solid var(--lm-ink); }
.lm-guide-list article { min-height: 150px; padding: 24px 4px; border-bottom: 1px solid var(--lm-line); }
.lm-guide-list small { color: var(--lm-citrus); font: 700 11px Manrope, sans-serif; }
.lm-guide-list h3 { margin: 12px 0 8px; font-size: 18px; }
.lm-guide-list p { margin: 0; color: var(--lm-muted); font-size: 14px; line-height: 1.6; }

.lm-support-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; }
.lm-support-intro h1 { margin: 14px 0 20px; font: 600 48px/1.3 'Noto Serif KR', serif; }
.lm-support-intro p { color: var(--lm-muted); line-height: 1.8; }
.lm-contact-list { margin-top: 36px; border-top: 1px solid var(--lm-line); }
.lm-contact-list div { display: grid; grid-template-columns: 90px 1fr; padding: 16px 0; border-bottom: 1px solid var(--lm-line); font-size: 14px; }
.lm-contact-list strong { color: var(--lm-leaf); }
.lm-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.lm-field { display: flex; flex-direction: column; gap: 8px; }
.lm-field--wide { grid-column: 1 / -1; }
.lm-field label { font-size: 14px; font-weight: 750; }
.lm-field input,
.lm-field select,
.lm-field textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid var(--lm-line); border-radius: 4px; background: var(--lm-white); }
.lm-field textarea { min-height: 150px; resize: vertical; }
.lm-checkbox { grid-column: 1 / -1; display: flex; gap: 10px; align-items: flex-start; color: var(--lm-muted); font-size: 13px; line-height: 1.6; }
.lm-checkbox input { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 1px; accent-color: var(--lm-leaf); }
.lm-form .lm-button { justify-self: start; }

.lm-site-footer { padding: 52px 0; background: var(--lm-dark); color: #b8c7c1; }
.lm-footer-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; }
.lm-footer-brand { display: inline-block; margin-bottom: 18px; color: var(--lm-white); font: 700 26px Manrope, sans-serif; }
.lm-site-footer p { margin: 0 0 8px; font-size: 13px; line-height: 1.7; }
.lm-footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; align-content: flex-start; gap: 14px 22px; font-size: 13px; }
.lm-demo-notice {
  padding: 12px 24px;
  background: #f1eee5;
  color: #555b57;
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}
.lm-toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 28px;
  max-width: calc(100% - 36px);
  padding: 13px 18px;
  border-radius: 4px;
  background: var(--lm-dark);
  color: var(--lm-white);
  box-shadow: var(--lm-shadow);
  transform: translate(-50%, 130%);
  transition: transform 220ms ease;
}
.lm-toast.is-visible { transform: translate(-50%, 0); }

@media (max-width: 1000px) {
  .lm-header-inner { grid-template-columns: 1fr auto; }
  .lm-main-nav { display: none; }
  .lm-menu-button { display: inline-grid; }
  .lm-routine-grid { grid-template-columns: 1fr 1fr; }
  .lm-routine-intro { grid-column: 1 / -1; min-height: 150px; }
  .lm-routine-tile { border-top: 1px solid var(--lm-line); }
  .lm-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lm-story-band { grid-template-columns: 1fr; }
  .lm-story-band__media { min-height: 430px; }
  .lm-story-band__copy { padding: 64px 36px; }
  .lm-feature-list { grid-template-columns: 1fr 1fr; }
  .lm-brand-intro { grid-template-columns: 1fr; gap: 32px; }
  .lm-product-detail { grid-template-columns: 1fr; gap: 42px; }
  .lm-purchase-panel { position: static; }
  .lm-guide-grid { grid-template-columns: 1fr; }
  .lm-support-layout { grid-template-columns: 1fr; gap: 52px; }
}

@media (max-width: 720px) {
  .lm-container { width: min(100% - 36px, var(--lm-max)); }
  .lm-site-header { height: 70px; }
  .lm-brand { width: 128px; }
  .lm-brand img { width: 128px; }
  .lm-brand-word { font-size: 24px; }
  .lm-search-panel { top: 70px; }
  .lm-mobile-nav { inset: 104px 0 0; }
  .lm-user-button { display: none; }
  .lm-section { padding: 74px 0; }
  .lm-section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 34px; }
  .lm-section-head h2 { font-size: 31px; }
  .lm-home-hero { min-height: 650px; background-position: 61% center; }
  .lm-home-hero h1 { font-size: 39px; }
  .lm-home-hero p { font-size: 16px; }
  .lm-action-row { flex-direction: column; align-items: stretch; }
  .lm-action-row .lm-button { width: 100%; }
  .lm-routine-grid { grid-template-columns: 1fr; }
  .lm-routine-intro { grid-column: auto; }
  .lm-routine-tile { border-left: 0; }
  .lm-product-grid { gap: 12px; }
  .lm-product-card h3 { min-height: 48px; font-size: 16px; }
  .lm-product-card__description { font-size: 13px; }
  .lm-product-card__price { font-size: 15px; }
  .lm-data-strip { grid-template-columns: 1fr; }
  .lm-data-item + .lm-data-item { border-left: 0; border-top: 1px solid var(--lm-line); }
  .lm-story-band__media { min-height: 340px; }
  .lm-story-band__copy { padding: 48px 20px; }
  .lm-story-band__copy h2 { font-size: 31px; }
  .lm-feature-list,
  .lm-principle-grid { grid-template-columns: 1fr; }
  .lm-cta-band__inner { align-items: flex-start; flex-direction: column; }
  .lm-cta-band h2 { font-size: 30px; }
  .lm-page-hero { min-height: 390px; }
  .lm-page-hero h1 { font-size: 38px; }
  .lm-page-hero p { font-size: 16px; }
  .lm-page-hero--event { background-size: cover; background-position: 55% center; }
  .lm-page-hero--event::before { content: ''; position: absolute; inset: 0; background: rgba(255, 255, 255, 0.76); }
  .lm-brand-intro h2 { font-size: 31px; }
  .lm-timeline-item { grid-template-columns: 1fr; gap: 12px; }
  .lm-shop-tools { grid-template-columns: 1fr; }
  .lm-select { width: 100%; }
  .lm-product-detail { padding-bottom: 72px; }
  .lm-purchase-panel h1 { font-size: 30px; }
  .lm-purchase-actions { grid-template-columns: 1fr; }
  .lm-info-blocks { grid-template-columns: 1fr; }
  .lm-info-block + .lm-info-block { border-left: 0; }
  .lm-guide-feature { min-height: 390px; }
  .lm-support-intro h1 { font-size: 38px; }
  .lm-form { grid-template-columns: 1fr; }
  .lm-field--wide,
  .lm-checkbox { grid-column: auto; }
  .lm-footer-grid { grid-template-columns: 1fr; }
  .lm-footer-links { justify-content: flex-start; }
}

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