:root {
  --lk-bg: #f2efe8;
  --lk-surface: #faf8f3;
  --lk-paper: #ffffff;
  --lk-ink: #171714;
  --lk-ink-soft: #2b2924;
  --lk-muted: #6d6860;
  --lk-muted-light: #b8afa3;
  --lk-line: #d8d1c5;
  --lk-line-dark: #403c36;
  --lk-accent: #a9875b;
  --lk-accent-dark: #775b38;
  --lk-danger: #a34538;
  --lk-success: #396a4a;
  --lk-shadow: 0 24px 70px rgba(23, 23, 20, 0.12);
  --lk-overlay: rgba(23, 23, 20, 0.62);
  --lk-header-h: 92px;
  --lk-radius-xs: 4px;
  --lk-radius-sm: 8px;
  --lk-radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--lk-bg);
  color: var(--lk-ink);
  font-family: Pretendard, "Noto Sans KR", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 2px solid var(--lk-accent); outline-offset: 4px; }
[hidden] { display: none !important; }

.lk-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}
.lk-container--wide { max-width: 1360px; }
.lk-section { padding-block: clamp(88px, 10vw, 150px); }
.lk-section--tight { padding-block: clamp(64px, 8vw, 104px); }
.lk-section--dark { background: var(--lk-ink); color: var(--lk-surface); }
.lk-section--surface { background: var(--lk-surface); }
.lk-section--paper { background: var(--lk-paper); }
.lk-grid { display: grid; gap: 24px; }
.lk-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; }

.lk-eyebrow {
  display: block;
  margin-bottom: 22px;
  color: var(--lk-accent-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.lk-section--dark .lk-eyebrow,
.lk-hero--dark .lk-eyebrow { color: var(--lk-accent); }
.lk-display,
h1, h2, h3 {
  font-family: "Noto Serif KR", "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -0.05em;
  text-wrap: balance;
}
.lk-display { margin: 0; font-size: clamp(50px, 6vw, 88px); line-height: 1.03; }
.lk-title { margin: 0; font-size: clamp(40px, 4.6vw, 66px); line-height: 1.1; }
.lk-subtitle { margin: 0; font-size: clamp(28px, 3vw, 42px); line-height: 1.18; }
.lk-lead { max-width: 660px; margin: 28px 0 0; color: var(--lk-muted); font-size: clamp(17px, 1.5vw, 20px); line-height: 1.75; }
.lk-section--dark .lk-lead { color: var(--lk-muted-light); }
.lk-copy { color: var(--lk-muted); }
.lk-rule { border: 0; border-top: 1px solid var(--lk-line); margin: 0; }

.lk-header {
  position: relative;
  z-index: 20;
  height: var(--lk-header-h);
  background: var(--lk-surface);
  border-bottom: 1px solid var(--lk-line);
}
.lk-header--overlay {
  position: absolute;
  inset: 0 0 auto;
  background: transparent;
  color: var(--lk-surface);
  border-color: var(--lk-line-dark);
}
.lk-header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.lk-brand { display: inline-flex; align-items: baseline; gap: 10px; text-decoration: none; }
.lk-brand__name { font-family: "Cormorant Garamond", serif; font-size: 24px; font-weight: 600; letter-spacing: 0.08em; }
.lk-brand__note { color: var(--lk-muted); font-size: 9px; font-weight: 700; letter-spacing: 0.16em; }
.lk-header--overlay .lk-brand__note { color: var(--lk-muted-light); }
.lk-nav { display: flex; align-items: center; gap: 30px; }
.lk-nav a { position: relative; padding-block: 12px; color: var(--lk-muted); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-decoration: none; text-transform: uppercase; }
.lk-header--overlay .lk-nav a { color: var(--lk-muted-light); }
.lk-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 7px; height: 1px; background: var(--lk-accent); transition: right 220ms ease; }
.lk-nav a:hover::after, .lk-nav a[aria-current="page"]::after { right: 0; }
.lk-nav a[aria-current="page"] { color: var(--lk-ink); }
.lk-header--overlay .lk-nav a[aria-current="page"] { color: var(--lk-surface); }
.lk-nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; padding: 0; background: transparent; border: 1px solid currentColor; border-radius: 50%; }
.lk-nav-toggle__icon, .lk-nav-toggle__icon::before, .lk-nav-toggle__icon::after { width: 16px; height: 1px; background: currentColor; transition: transform 220ms ease; }
.lk-nav-toggle__icon { position: relative; display: block; }
.lk-nav-toggle__icon::before, .lk-nav-toggle__icon::after { content: ""; position: absolute; left: 0; }
.lk-nav-toggle__icon::before { top: -5px; }
.lk-nav-toggle__icon::after { top: 5px; }
.nav-open .lk-nav-toggle__icon { background: transparent; }
.nav-open .lk-nav-toggle__icon::before { transform: translateY(5px) rotate(45deg); }
.nav-open .lk-nav-toggle__icon::after { transform: translateY(-5px) rotate(-45deg); }

.lk-button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.lk-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  border: 1px solid var(--lk-accent);
  border-radius: var(--lk-radius-xs);
  background: transparent;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.lk-button:hover { transform: translateY(-2px); }
.lk-button--primary { background: var(--lk-accent); color: var(--lk-ink); }
.lk-button--primary:hover { background: var(--lk-surface); }
.lk-button--dark { background: var(--lk-ink); color: var(--lk-surface); border-color: var(--lk-ink); }
.lk-button--dark:hover { background: var(--lk-accent-dark); border-color: var(--lk-accent-dark); }
.lk-button--ghost { border-color: var(--lk-line); }
.lk-button--text { min-height: auto; padding: 0 0 6px; border-width: 0 0 1px; border-radius: 0; }
.lk-button[disabled] { cursor: not-allowed; opacity: 0.45; transform: none; }

.lk-hero--home {
  min-height: 900px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  background: var(--lk-ink);
  color: var(--lk-surface);
}
.lk-hero--home .lk-hero__copy { display: flex; align-items: flex-end; padding: 160px clamp(22px, 5vw, 72px) 90px; }
.lk-hero--home .lk-hero__copy-inner { width: min(100%, 560px); margin-left: auto; }
.lk-hero--home .lk-display { font-size: clamp(54px, 6vw, 88px); }
.lk-hero--home .lk-lead { color: var(--lk-muted-light); }
.lk-hero__visual { position: relative; overflow: hidden; min-height: 720px; }
.lk-hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.lk-hero__visual::after { content: ""; position: absolute; inset: 0; border-left: 1px solid var(--lk-line-dark); pointer-events: none; }
.lk-hero__visual-note { position: absolute; right: 24px; bottom: 24px; padding: 10px 12px; background: var(--lk-ink); color: var(--lk-muted-light); font-size: 10px; letter-spacing: 0.12em; }

.lk-page-hero { padding-block: clamp(78px, 9vw, 130px); }
.lk-page-hero--dark { background: var(--lk-ink); color: var(--lk-surface); }
.lk-page-hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(40px, 7vw, 96px); align-items: end; }
.lk-page-hero__aside { max-width: 480px; color: var(--lk-muted); font-size: 18px; }
.lk-page-hero--dark .lk-page-hero__aside { color: var(--lk-muted-light); }

.lk-taste-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 54px; }
.lk-image-card { position: relative; min-height: 520px; overflow: hidden; background: var(--lk-ink-soft); color: var(--lk-surface); text-decoration: none; }
.lk-image-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 650ms cubic-bezier(.2,.7,.2,1); }
.lk-image-card:hover img { transform: scale(1.035); }
.lk-image-card::after { content: ""; position: absolute; inset: 58% 0 0; background: var(--lk-overlay); }
.lk-image-card__body { position: absolute; z-index: 1; inset: auto 24px 24px; }
.lk-image-card__body small { display: block; margin-bottom: 8px; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; }
.lk-image-card__body strong { display: block; font-family: "Cormorant Garamond", "Noto Serif KR", serif; font-size: 36px; line-height: 1.05; }

.lk-heading-row { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 60px; align-items: end; margin-bottom: 54px; }
.lk-heading-row p { margin: 0; color: var(--lk-muted); }
.lk-section--dark .lk-heading-row p { color: var(--lk-muted-light); }
.lk-metric-ledger { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--lk-line); }
.lk-metric { min-height: 190px; padding: 34px 26px 30px 0; border-bottom: 1px solid var(--lk-line); }
.lk-metric + .lk-metric { padding-left: 26px; border-left: 1px solid var(--lk-line); }
.lk-metric strong { display: block; color: var(--lk-accent-dark); font-family: "Cormorant Garamond", serif; font-size: 58px; line-height: 1; }
.lk-metric span { display: block; margin-top: 15px; font-weight: 700; }
.lk-metric small { display: block; margin-top: 8px; color: var(--lk-muted); }

.lk-feature-project { display: grid; grid-template-columns: 1.28fr 0.72fr; gap: 18px; margin-top: 70px; }
.lk-feature-project__image { min-height: 590px; }
.lk-feature-project__image img { width: 100%; height: 100%; object-fit: cover; }
.lk-feature-project__body { min-height: 590px; padding: clamp(32px, 5vw, 58px); display: flex; flex-direction: column; justify-content: space-between; background: var(--lk-ink); color: var(--lk-surface); }
.lk-feature-project__body h3 { margin: 0; font-family: "Cormorant Garamond", serif; font-size: clamp(44px, 5vw, 66px); letter-spacing: -0.02em; line-height: 0.95; }
.lk-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lk-meta-grid dt { color: var(--lk-muted-light); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; }
.lk-meta-grid dd { margin: 6px 0 0; }

.lk-principle-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.lk-principle-image { min-height: 650px; }
.lk-principle-image img { width: 100%; height: 100%; object-fit: cover; }
.lk-principles { margin-top: 38px; border-top: 1px solid var(--lk-line); }
.lk-principle { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--lk-line); }
.lk-principle__index { color: var(--lk-accent-dark); font-family: "Cormorant Garamond", serif; font-size: 28px; }
.lk-principle h3 { margin: 0 0 8px; font-family: "Noto Serif KR", serif; font-size: 22px; }
.lk-principle p { margin: 0; color: var(--lk-muted); }

.lk-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 50px; }
.lk-process-card { min-height: 290px; padding: 30px 24px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--lk-line-dark); }
.lk-process-card__index { color: var(--lk-accent); font-family: "Cormorant Garamond", serif; font-size: 50px; }
.lk-process-card h3 { margin: 0 0 10px; font-size: 21px; }
.lk-process-card p { margin: 0; color: var(--lk-muted-light); font-size: 14px; }

.lk-column-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; }
.lk-column-card { display: flex; flex-direction: column; border-top: 1px solid var(--lk-line); text-decoration: none; }
.lk-column-card__image { aspect-ratio: 4 / 3; margin-top: 18px; overflow: hidden; }
.lk-column-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.lk-column-card:hover img { transform: scale(1.035); }
.lk-column-card__meta { display: flex; justify-content: space-between; gap: 16px; margin-top: 20px; color: var(--lk-accent-dark); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; }
.lk-column-card h3 { margin: 15px 0 10px; font-size: 23px; line-height: 1.35; }
.lk-column-card p { margin: 0; color: var(--lk-muted); }

.lk-faq { margin-top: 52px; border-top: 1px solid var(--lk-line); }
.lk-faq details { border-bottom: 1px solid var(--lk-line); }
.lk-faq summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; list-style: none; cursor: pointer; font-family: "Noto Serif KR", serif; font-size: 20px; }
.lk-faq summary::-webkit-details-marker { display: none; }
.lk-faq summary::after { content: "+"; color: var(--lk-accent-dark); font-family: Arial, sans-serif; font-size: 24px; }
.lk-faq details[open] summary::after { content: "−"; }
.lk-faq__answer { max-width: 850px; padding: 0 0 28px; color: var(--lk-muted); }

.lk-cta-band { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.lk-cta-band .lk-title { max-width: 820px; }

.lk-project-filters, .lk-column-tools { padding-block: 28px; border-bottom: 1px solid var(--lk-line); background: var(--lk-surface); }
.lk-filter-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lk-filter-group__label { display: block; margin-bottom: 12px; color: var(--lk-muted); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; }
.lk-filter-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.lk-filter-button { min-height: 42px; padding: 8px 14px; border: 1px solid var(--lk-line); border-radius: 999px; background: transparent; font-size: 13px; cursor: pointer; }
.lk-filter-button[aria-pressed="true"] { background: var(--lk-ink); color: var(--lk-surface); border-color: var(--lk-ink); }
.lk-filter-status { margin: 26px 0 0; color: var(--lk-muted); font-size: 13px; }
.lk-project-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.lk-project-card { grid-column: span 4; position: relative; min-height: 500px; overflow: hidden; background: var(--lk-ink); color: var(--lk-surface); text-decoration: none; }
.lk-project-card:nth-child(5n + 1) { grid-column: span 7; }
.lk-project-card:nth-child(5n + 2) { grid-column: span 5; }
.lk-project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.lk-project-card:hover img { transform: scale(1.035); }
.lk-project-card::after { content: ""; position: absolute; inset: 58% 0 0; background: var(--lk-overlay); }
.lk-project-card__body { position: absolute; z-index: 1; inset: auto 24px 24px; }
.lk-project-card__body small { font-size: 10px; font-weight: 700; letter-spacing: 0.13em; }
.lk-project-card__body h2 { margin: 8px 0 12px; font-family: "Cormorant Garamond", serif; font-size: 36px; letter-spacing: -0.02em; }
.lk-project-card__tags { display: flex; flex-wrap: wrap; gap: 7px; }
.lk-project-card__tags span { padding: 5px 8px; border: 1px solid rgba(255,255,255,.44); font-size: 10px; }
.lk-empty-state { padding: 70px 30px; text-align: center; border: 1px solid var(--lk-line); }
.lk-empty-state h2 { margin: 0 0 10px; font-size: 28px; }
.lk-empty-state p { margin: 0; color: var(--lk-muted); }

.lk-detail-hero { position: relative; min-height: 760px; display: flex; align-items: flex-end; background: var(--lk-ink); color: var(--lk-surface); overflow: hidden; }
.lk-detail-hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.72; }
.lk-detail-hero::after { content: ""; position: absolute; inset: 50% 0 0; background: var(--lk-overlay); }
.lk-detail-hero__body { position: relative; z-index: 1; padding-block: 90px; }
.lk-detail-hero__body .lk-display { max-width: 900px; }
.lk-detail-meta { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--lk-line); }
.lk-detail-meta__item { padding: 28px 24px 28px 0; }
.lk-detail-meta__item + .lk-detail-meta__item { padding-left: 24px; border-left: 1px solid var(--lk-line); }
.lk-detail-meta__item small { display: block; color: var(--lk-muted); font-size: 10px; font-weight: 700; letter-spacing: 0.13em; }
.lk-detail-meta__item strong { display: block; margin-top: 8px; }
.lk-story-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(50px, 8vw, 110px); }
.lk-story-block + .lk-story-block { margin-top: 52px; padding-top: 52px; border-top: 1px solid var(--lk-line); }
.lk-story-block h2 { margin: 0 0 18px; font-size: 34px; }
.lk-story-block p { color: var(--lk-muted); }
.lk-gallery { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 16px; }
.lk-gallery img { width: 100%; height: 100%; object-fit: cover; }
.lk-gallery__tall { min-height: 780px; }
.lk-gallery__stack { display: grid; gap: 16px; }
.lk-gallery__stack img { min-height: 382px; }

.lk-search-row { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; }
.lk-search { min-height: 52px; padding: 12px 16px; border: 1px solid var(--lk-line); background: var(--lk-paper); color: var(--lk-ink); }
.lk-article-grid { display: grid; grid-template-columns: 250px minmax(0, 760px); gap: clamp(50px, 8vw, 110px); align-items: start; }
.lk-article-toc { position: sticky; top: 30px; padding-top: 18px; border-top: 1px solid var(--lk-line); }
.lk-article-toc a { display: block; padding: 10px 0; color: var(--lk-muted); font-size: 13px; text-decoration: none; }
.lk-article-body { font-family: "Noto Serif KR", serif; font-size: 18px; line-height: 1.9; }
.lk-article-body h2 { margin: 78px 0 20px; font-size: 34px; }
.lk-article-body p { color: var(--lk-ink-soft); }
.lk-article-body figure { margin: 46px 0; }
.lk-article-body figure img { width: 100%; max-height: 620px; object-fit: cover; }
.lk-article-body figcaption { margin-top: 10px; color: var(--lk-muted); font-family: Pretendard, sans-serif; font-size: 12px; }
.lk-checklist { margin: 32px 0; padding: 28px; background: var(--lk-surface); border-left: 3px solid var(--lk-accent); }
.lk-checklist li + li { margin-top: 10px; }

.lk-contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(50px, 8vw, 110px); }
.lk-prepare-list { margin-top: 40px; border-top: 1px solid var(--lk-line-dark); }
.lk-prepare-item { display: grid; grid-template-columns: 56px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--lk-line-dark); }
.lk-prepare-item b { color: var(--lk-accent); font-family: "Cormorant Garamond", serif; font-size: 28px; }
.lk-prepare-item strong { display: block; }
.lk-prepare-item span { color: var(--lk-muted-light); font-size: 14px; }
.lk-form { padding: clamp(28px, 5vw, 56px); background: var(--lk-surface); color: var(--lk-ink); }
.lk-form h2 { margin: 0 0 10px; font-size: 36px; }
.lk-form > p { margin: 0 0 34px; color: var(--lk-muted); }
.lk-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lk-field { display: grid; gap: 8px; }
.lk-field--full { grid-column: 1 / -1; }
.lk-field label { font-size: 13px; font-weight: 700; }
.lk-field input, .lk-field select, .lk-field textarea { width: 100%; min-height: 50px; padding: 12px 13px; border: 1px solid var(--lk-line); background: var(--lk-paper); color: var(--lk-ink); border-radius: 0; }
.lk-field textarea { min-height: 150px; resize: vertical; }
.lk-field [aria-invalid="true"] { border-color: var(--lk-danger); }
.lk-field__error { min-height: 20px; color: var(--lk-danger); font-size: 12px; }
.lk-consent { display: flex; align-items: flex-start; gap: 10px; margin: 22px 0; color: var(--lk-muted); font-size: 13px; }
.lk-consent input { width: 18px; height: 18px; margin-top: 2px; }
.lk-form-state { margin-top: 22px; padding: 18px; border: 1px solid var(--lk-line); }
.lk-form-state--success { color: var(--lk-success); border-color: var(--lk-success); }
.lk-form-state--error { color: var(--lk-danger); border-color: var(--lk-danger); }

.lk-site-footer { background: var(--lk-ink); color: var(--lk-surface); }
.lk-site-footer__inner { min-height: 360px; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: end; padding-block: 80px 54px; }
.lk-site-footer__title { margin: 0; font-family: "Cormorant Garamond", serif; font-size: clamp(48px, 7vw, 92px); line-height: 0.9; letter-spacing: -0.02em; }
.lk-site-footer__meta { display: grid; gap: 10px; color: var(--lk-muted-light); font-size: 12px; text-align: right; }
.lk-site-footer__meta a { text-decoration: none; }
.lk-demo-notice { padding: 15px 20px; background: var(--lk-ink-soft); color: var(--lk-muted-light); font-size: 12px; line-height: 1.55; text-align: center; }

.lk-reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms ease, transform 600ms ease; }
.lk-reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .lk-nav-toggle { display: inline-flex; }
  .lk-nav { position: fixed; inset: var(--lk-header-h) 0 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 32px 24px; background: var(--lk-ink); }
  .nav-open .lk-nav { display: flex; }
  .lk-nav a, .lk-header--overlay .lk-nav a { min-height: 58px; display: flex; align-items: center; color: var(--lk-surface); border-bottom: 1px solid var(--lk-line-dark); font-size: 15px; }
  .lk-hero--home { grid-template-columns: 1fr; }
  .lk-hero--home .lk-hero__copy { min-height: 720px; padding: 160px 24px 72px; }
  .lk-hero--home .lk-hero__copy-inner { margin-left: 0; }
  .lk-hero__visual { min-height: 620px; }
  .lk-page-hero__grid, .lk-heading-row, .lk-principle-grid, .lk-story-grid, .lk-contact-grid { grid-template-columns: 1fr; }
  .lk-heading-row { gap: 24px; }
  .lk-taste-grid { grid-template-columns: 1fr 1fr; }
  .lk-image-card:first-child { grid-column: span 2; }
  .lk-feature-project { grid-template-columns: 1fr; }
  .lk-feature-project__image, .lk-feature-project__body { min-height: 520px; }
  .lk-process-grid { grid-template-columns: 1fr 1fr; }
  .lk-column-grid { grid-template-columns: 1fr 1fr; }
  .lk-filter-groups { grid-template-columns: 1fr; }
  .lk-project-card, .lk-project-card:nth-child(n) { grid-column: span 6; min-height: 460px; }
  .lk-detail-meta { grid-template-columns: 1fr 1fr; }
  .lk-detail-meta__item:nth-child(3) { border-left: 0; }
  .lk-gallery { grid-template-columns: 1fr; }
  .lk-gallery__tall { min-height: 600px; }
  .lk-article-grid { grid-template-columns: 1fr; }
  .lk-article-toc { position: static; }
  .lk-site-footer__inner { grid-template-columns: 1fr; }
  .lk-site-footer__meta { text-align: left; }
}

@media (max-width: 680px) {
  .lk-brand__note { display: none; }
  .lk-section { padding-block: 78px; }
  .lk-section--tight { padding-block: 60px; }
  .lk-hero--home .lk-hero__copy { min-height: 680px; }
  .lk-hero--home .lk-display { font-size: 46px; }
  .lk-hero__visual { min-height: 500px; }
  .lk-page-hero { padding-block: 72px; }
  .lk-taste-grid { grid-template-columns: 1fr; }
  .lk-image-card:first-child { grid-column: auto; }
  .lk-image-card { min-height: 450px; }
  .lk-metric-ledger { grid-template-columns: 1fr; }
  .lk-metric + .lk-metric { padding-left: 0; border-left: 0; }
  .lk-feature-project__image { min-height: 420px; }
  .lk-feature-project__body { min-height: 500px; }
  .lk-process-grid, .lk-column-grid { grid-template-columns: 1fr; }
  .lk-cta-band { grid-template-columns: 1fr; }
  .lk-project-grid { grid-template-columns: 1fr; }
  .lk-project-card, .lk-project-card:nth-child(n) { grid-column: auto; min-height: 520px; }
  .lk-detail-hero { min-height: 680px; }
  .lk-detail-meta { grid-template-columns: 1fr; }
  .lk-detail-meta__item + .lk-detail-meta__item { padding-left: 0; border-left: 0; border-top: 1px solid var(--lk-line); }
  .lk-search-row, .lk-field-grid { grid-template-columns: 1fr; }
  .lk-field--full { grid-column: auto; }
  .lk-gallery__tall { min-height: 480px; }
  .lk-gallery__stack img { min-height: 300px; }
  .lk-article-body figure img { max-height: 420px; }
}

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

@media print {
  .lk-reveal { opacity: 1 !important; transform: none !important; }
}
