/* Arden — premium Korean furniture brand */

:root {
  --ivory: #F4F2EB;
  --bone: #ECE7DC;
  --sand: #EAE0D1;
  --taupe: #C9B9A4;
  --warm-line: #E6DDD0;
  --walnut: #7A5A3F;
  --walnut-deep: #4A3526;
  --ink: #2A2622;
  --ink-soft: #5A524A;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
  --serif-en: 'Playfair Display', serif;
  --sans-en: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --sans-kr: 'Noto Sans KR', 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --serif-kr: 'Noto Serif KR', 'Noto Sans KR', serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans-kr);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.en { font-family: var(--serif-en); font-style: italic; font-weight: 400; }
.num { font-family: var(--serif-en); font-feature-settings: "lnum"; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 4%;
}
.container-wide { max-width: none; margin: 0; padding: 0 4%; }
.full { width: 100%; }

.divider {
  height: 1px;
  background: var(--warm-line);
  border: 0;
}

/* ---------- Topbar ---------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(244, 242, 235, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 600ms ease, background 600ms ease;
}
.topbar.scrolled { border-bottom-color: var(--warm-line); }

.topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 76px;
  padding: 0 3%;
  width: 100%;
  max-width: none;
}

.logo {
  font-family: var(--serif-en);
  font-size: 26px;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--ink);
  text-transform: lowercase;
}
.logo::first-letter {
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 56px;
}
.nav a {
  font-family: var(--sans-en);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 200ms ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 300ms ease, left 300ms ease;
}
.nav a:hover::after { width: 100%; left: 0; }

.topbar-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
.icon-btn {
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 200ms ease;
}
.icon-btn:hover { opacity: 0.6; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  width: 100%;
  overflow: hidden;
  background: var(--bone);
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(40,32,24,0.05) 0%, rgba(40,32,24,0.0) 30%, rgba(40,32,24,0.0) 60%, rgba(40,32,24,0.18) 100%);
  pointer-events: none;
}
.hero-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0 3% 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 5%;
  color: var(--ivory);
}
.hero-meta {
  font-family: var(--sans-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 28px;
  display: flex;
  gap: 24px;
}
.hero-meta span { display: inline-block; }
.hero-headline {
  font-family: var(--sans-kr);
  font-weight: 300;
  font-size: clamp(28px, 6vw, 64px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero-headline em {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 400;
}
.hero-aside {
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 380px;
  justify-self: end;
}
.hero-sub {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.92;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-family: var(--sans-kr);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 300ms ease, color 300ms ease;
  text-align: left;
  width: fit-content;
}
.btn:hover { background: currentColor; }
.btn:hover .btn-label, .btn:hover .btn-arrow { color: var(--ink); }
.btn-arrow { display: inline-block; transition: transform 300ms ease; }
.btn:hover .btn-arrow { transform: translateX(6px); }

.btn-dark { color: var(--ink); }
.btn-dark:hover .btn-label, .btn-dark:hover .btn-arrow { color: var(--ivory); }

/* hero ticker */
.hero-ticker {
  position: absolute;
  left: 3%;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left top;
  font-family: var(--sans-en);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.75;
  white-space: nowrap;
}

/* ---------- Showcase (dual full-bleed) ---------- */
.showcase {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 12px;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  background: var(--ivory);
}
.showcase-tile {
  flex: 1 1 50%;
  width: 50%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.showcase-tile > .showcase-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 1600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.showcase-tile:hover > .showcase-img { transform: scale(1.03); }
.showcase-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,0) 40%, rgba(20,16,12,0.45) 100%);
  pointer-events: none;
}
.showcase-caption {
  position: absolute;
  left: 0; right: 0; bottom: 56px;
  text-align: center;
  color: var(--ivory);
  z-index: 2;
  padding: 0 32px;
}
.showcase-kicker {
  font-family: var(--sans-en);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-style: italic;
  opacity: 0.85;
  margin-bottom: 6px;
}
.showcase-title {
  font-family: var(--serif-en);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: 0.005em;
  line-height: 1.3;
}
.showcase-title-kr {
  display: block;
  font-family: var(--sans-kr);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-top: 8px;
  opacity: 0.78;
}

@media (max-width: 960px) {
  .showcase { flex-direction: column; height: auto; }
  .showcase-tile { width: 100%; aspect-ratio: 4 / 5; }
}

/* ---------- Section base ---------- */
section { position: relative; }
.eyebrow {
  font-family: var(--sans-en);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow .num { font-style: italic; }
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--ink-soft);
}
.section-title {
  font-family: var(--sans-kr);
  font-weight: 300;
  font-size: clamp(36px, 3.6vw, 56px);
  line-height: 1.28;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.section-title em {
  font-family: var(--serif-en);
  font-style: italic;
}

/* ---------- Philosophy ---------- */
.philosophy {
  padding: 160px 0 140px;
  background: var(--ivory);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 120px;
  align-items: start;
}
.philosophy-left .eyebrow { margin-bottom: 36px; }
.philosophy-left h2 {
  font-family: var(--sans-kr);
  font-weight: 300;
  font-size: clamp(40px, 4.4vw, 68px);
  line-height: 1.28;
  letter-spacing: -0.02em;
}
.philosophy-left h2 em {
  font-family: var(--serif-en);
  font-style: italic;
  display: block;
  margin-top: 8px;
}
.philosophy-right { padding-top: 12px; }
.philosophy-body {
  font-size: 17px;
  line-height: 1.9;
  color: var(--ink-soft);
  max-width: 520px;
}
.philosophy-body p + p { margin-top: 24px; }
.philosophy-quote {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--warm-line);
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  max-width: 480px;
}
.philosophy-signature {
  margin-top: 24px;
  font-family: var(--sans-kr);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

/* ---------- Materials ---------- */
.materials {
  padding: 140px 20px 120px;
  background: var(--bone);
  border-top: 1px solid var(--warm-line);
  border-bottom: 1px solid var(--warm-line);
  width: 100%;
}
.materials-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6%;
  align-items: end;
  margin-bottom: 80px;
  padding: 0 3%;
  width: 100%;
}
.materials-head .eyebrow { margin-bottom: 24px; }
.materials-head .section-title { max-width: 520px; }
.materials-intro {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
  max-width: 420px;
  justify-self: end;
}
.materials-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: 100%;
  padding: 0;
}
.material-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: pointer;
}
.material-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  background: var(--sand);
}
.material-image > * {
  transition: transform 1200ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.material-card:hover .material-image > * { transform: scale(1.04); }
.material-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 4px 8px 4px;
  border-top: 1px solid var(--warm-line);
}
.material-name {
  font-family: var(--sans-kr);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.material-name em {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--ink-soft);
  margin-left: 6px;
}
.material-num {
  font-family: var(--sans-en);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
}
.material-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-soft);
  padding: 0 4px 24px 4px;
}

/* ---------- Featured pieces ---------- */
.featured {
  padding: 160px 0 140px;
}
.featured-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6%;
  align-items: end;
  margin-bottom: 80px;
  padding: 0 3%;
}
.featured-head .eyebrow { margin-bottom: 28px; }
.featured-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 6px;
  transition: gap 300ms ease;
}
.featured-link:hover { gap: 18px; }

.pieces {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px 12px;
  width: 100%;
  padding: 0 12px;
}
.piece { display: flex; flex-direction: column; gap: 0; cursor: pointer; }
.piece-image {
  overflow: hidden;
  background: var(--sand);
  position: relative;
}
.piece-image > * {
  transition: transform 1400ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.piece:hover .piece-image > * { transform: scale(1.03); }
.piece-tag {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--sans-en);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(42, 38, 34, 0.7);
  padding: 6px 10px;
  z-index: 2;
}
.piece-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 4px 4px 0 4px;
}
.piece-name {
  font-family: var(--sans-kr);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.piece-name em {
  display: block;
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.piece-price {
  font-family: var(--sans-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-align: right;
  align-self: start;
}

/* span placements for editorial rhythm */
.piece.col-7 { grid-column: span 7; }
.piece.col-5 { grid-column: span 5; }
.piece.col-4 { grid-column: span 4; }
.piece.col-8 { grid-column: span 8; }
.piece.col-6 { grid-column: span 6; }
.piece-image.h-tall { aspect-ratio: 4 / 5; }
.piece-image.h-wide { aspect-ratio: 4 / 3; }
.piece-image.h-square { aspect-ratio: 1 / 1; }

/* ---------- Craftsmanship ---------- */
.craft {
  padding: 0;
  background: var(--walnut-deep);
  color: var(--ivory);
  position: relative;
}
.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 720px;
}
.craft-image {
  position: relative;
  background: #3a2a1d;
  overflow: hidden;
}
.craft-image > * { width: 100%; height: 100%; }
.craft-text {
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
.craft-text .eyebrow { color: rgba(250, 247, 242, 0.7); }
.craft-text .eyebrow::before { background: rgba(250, 247, 242, 0.5); }
.craft-text h2 {
  font-family: var(--sans-kr);
  font-weight: 300;
  font-size: clamp(36px, 3.4vw, 52px);
  line-height: 1.32;
  letter-spacing: -0.02em;
}
.craft-text h2 em {
  font-family: var(--serif-en);
  font-style: italic;
}
.craft-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(250, 247, 242, 0.18);
  margin-top: 8px;
}
.craft-item {
  border-bottom: 1px solid rgba(250, 247, 242, 0.18);
  padding: 24px 0;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: baseline;
  gap: 24px;
  cursor: pointer;
  transition: padding 300ms ease;
}
.craft-item:hover { padding-left: 12px; }
.craft-item-num {
  font-family: var(--sans-en);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  opacity: 0.6;
}
.craft-item-name {
  font-family: var(--sans-kr);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.craft-item-name em {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 14px;
  opacity: 0.7;
  margin-left: 8px;
}
.craft-item-arrow {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 18px;
  opacity: 0.7;
  transition: transform 300ms ease;
}
.craft-item:hover .craft-item-arrow { transform: translateX(6px); }

/* ---------- Lifestyle ---------- */
.lifestyle {
  padding: 0;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.lifestyle-hero {
  position: relative;
  height: 88vh;
  min-height: 680px;
  overflow: hidden;
}
.lifestyle-hero::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 35%;
  background: linear-gradient(to bottom, rgba(20,18,14,0.55) 0%, rgba(20,18,14,0.30) 45%, rgba(20,18,14,0) 100%);
  z-index: 1;
  pointer-events: none;
}
.lifestyle-hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(20,18,14,0.55) 0%, rgba(20,18,14,0.30) 45%, rgba(20,18,14,0) 100%);
  z-index: 1;
  pointer-events: none;
}
.lifestyle-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; }
.lifestyle-caption {
  position: absolute;
  left: 3%;
  bottom: 5%;
  color: var(--ivory);
  max-width: 520px;
  z-index: 2;
}
.lifestyle-caption .eyebrow { color: rgba(250, 247, 242, 0.85); margin-top: 30px; margin-bottom: 24px; }
.lifestyle-caption .eyebrow::before { background: rgba(250, 247, 242, 0.7); }
.lifestyle-caption h3 {
  font-family: var(--sans-kr);
  font-weight: 300;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.32;
  letter-spacing: -0.02em;
}
.lifestyle-caption h3 em { font-family: var(--serif-en); font-style: italic; }
.lifestyle-meta {
  position: absolute;
  right: 3%;
  bottom: 5%;
  color: var(--ivory);
  z-index: 2;
  text-align: right;
  font-family: var(--sans-en);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  line-height: 1.9;
}
.lifestyle-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: transparent;
  border-bottom: 0;
}
.lifestyle-thumb {
  aspect-ratio: 4 / 3;
  background: var(--sand);
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.lifestyle-thumb > * { transition: transform 1000ms cubic-bezier(0.2, 0.7, 0.2, 1); }
.lifestyle-thumb:hover > * { transform: scale(1.05); }
.lifestyle-thumb::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(20,18,14,0.65) 0%, rgba(20,18,14,0.30) 45%, rgba(20,18,14,0) 100%);
  pointer-events: none;
  z-index: 1;
}
.lifestyle-thumb-label {
  position: absolute;
  left: 24px; bottom: 20px;
  color: var(--ivory);
  font-family: var(--sans-kr);
  font-size: 15px;
  font-weight: 500;
  z-index: 2;
}
.lifestyle-thumb-label em {
  display: block;
  font-family: var(--sans-en);
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.85;
}

/* ---------- Story ---------- */
.story {
  padding: 0;
  background: var(--bone);
}
.story-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 0;
  align-items: stretch;
  width: 100%;
  min-height: 80vh;
}
.story-image {
  aspect-ratio: auto;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
.story-image > * {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.story-text {
  padding: 8% 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-text .eyebrow { margin-bottom: 36px; }
.story-text h2 {
  font-family: var(--sans-kr);
  font-weight: 300;
  font-size: clamp(36px, 3.4vw, 56px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.story-text h2 em { font-family: var(--serif-en); font-style: italic; }
.story-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink-soft);
  max-width: 540px;
}
.story-body p + p { margin-top: 22px; }
.story-stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--warm-line);
}
.story-stat .num {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 44px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.story-stat-label {
  font-family: var(--sans-en);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 12px;
}
.story-cta {
  margin-top: 56px;
}

/* ---------- Closing / Footer ---------- */
.closing {
  background: var(--ink);
  color: var(--ivory);
}
.closing-hero {
  position: relative;
  padding: 140px 40px 120px;
  background-image: url('assets/visit.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.closing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(42, 38, 34, 0.3);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  pointer-events: none;
  z-index: 1;
}
.closing-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.closing-hero .eyebrow { color: rgba(250, 247, 242, 0.7); justify-content: center; margin-bottom: 36px; }
.closing-hero .eyebrow::before { background: rgba(250, 247, 242, 0.5); }
.closing-hero h2 {
  font-family: var(--sans-kr);
  font-weight: 300;
  font-size: clamp(40px, 4.4vw, 72px);
  line-height: 1.28;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.closing-hero h2 em { font-family: var(--serif-en); font-style: italic; }
.closing-hero p {
  margin-top: 32px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(250, 247, 242, 0.75);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter {
  border-top: 1px solid rgba(250, 247, 242, 0.15);
  border-bottom: 1px solid rgba(250, 247, 242, 0.15);
  padding: 64px 0;
}
.newsletter-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.newsletter-label {
  font-family: var(--sans-kr);
  font-weight: 300;
  font-size: 28px;
  line-height: 1.32;
  letter-spacing: -0.01em;
}
.newsletter-label em { font-family: var(--serif-en); font-style: italic; }
.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  border-bottom: 1px solid rgba(250, 247, 242, 0.4);
  padding-bottom: 12px;
}
.newsletter-form input {
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--ivory);
  font-family: var(--sans-kr);
  font-size: 15px;
  padding: 8px 0;
}
.newsletter-form input::placeholder { color: rgba(250, 247, 242, 0.45); }
.newsletter-form button {
  background: transparent;
  border: 0;
  color: var(--ivory);
  cursor: pointer;
  font-family: var(--sans-kr);
  font-size: 14px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  transition: opacity 200ms ease;
}
.newsletter-form button:hover { opacity: 0.7; }

.foot {
  padding: 80px 0 56px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 80px;
}
.foot-brand .logo {
  color: var(--ivory);
  display: block;
  margin-bottom: 24px;
}
.foot-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(250, 247, 242, 0.6);
  max-width: 320px;
}
.foot-col h4 {
  font-family: var(--sans-en);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(250, 247, 242, 0.5);
  margin-bottom: 20px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.foot-col a {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.85);
  transition: color 200ms ease;
}
.foot-col a:hover { color: var(--ivory); }

.foot-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(250, 247, 242, 0.15);
  font-family: var(--sans-en);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(250, 247, 242, 0.5);
}
.foot-bottom-right { text-align: right; display: flex; gap: 32px; justify-content: flex-end; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1000ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 1000ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 80ms; }
.reveal-d2 { transition-delay: 160ms; }
.reveal-d3 { transition-delay: 240ms; }
.reveal-d4 { transition-delay: 320ms; }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--warm-line);
  border-bottom: 1px solid var(--warm-line);
  background: var(--ivory);
  padding: 28px 0;
}
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 48s linear infinite;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  align-items: center;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 64px; }
.marquee-dot {
  width: 6px; height: 6px;
  background: var(--walnut);
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Responsive (light pass) ---------- */
@media (max-width: 960px) {
  .container, .container-wide { padding: 0 28px; }
  .topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 0 16px 0 24px; height: 64px; }
  .nav { display: none; }
  .topbar-right { gap: 8px; }
  .hero { height: 85vh; min-height: 0; }
  .hero-overlay { background: linear-gradient(180deg, rgba(20,18,14,0.08) 0%, rgba(20,18,14,0.18) 45%, rgba(20,18,14,0.42) 100%); }
  .hero-content { grid-template-columns: 1fr; padding: 0 28px 56px; gap: 32px; }
  .hero-aside { justify-self: start; }
  .hero-ticker { display: none; }
  .philosophy-grid, .materials-head, .featured-head, .craft-grid, .story-grid, .newsletter-row, .foot-grid { grid-template-columns: 1fr; gap: 40px; }
  .craft-text { padding: 80px 28px; }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .pieces > .piece { grid-column: span 12 !important; }
  .lifestyle-thumbs { grid-template-columns: 1fr; }
  .foot-bottom { grid-template-columns: 1fr; }
  .foot-bottom-right { justify-content: flex-start; }

  .lifestyle-hero { height: auto; min-height: 0; aspect-ratio: 4 / 5; }
  .lifestyle-caption { left: 28px; right: 28px; bottom: 28px; top: auto; }
  .lifestyle-meta { left: 28px; right: 28px; top: 28px; bottom: auto; text-align: left; }

  .story-image { aspect-ratio: 4 / 3; }
  .craft-image { aspect-ratio: 4 / 3; }
}

@media (max-width: 480px) {
  /* Hero — tighter padding, meta wrap, smaller sub */
  .hero-content { padding: 0 20px 40px; gap: 24px; }
  .hero-meta { font-size: 10px; letter-spacing: 0.14em; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
  .hero-sub { font-size: 14px; }

  /* Sections — reduced paddings */
  .philosophy { padding: 100px 0 80px; }
  .philosophy-grid { gap: 28px; }
  .philosophy-body { font-size: 15px; }
  .philosophy-quote { margin-top: 48px; padding-top: 24px; font-size: 19px; }

  .materials { padding: 100px 16px 80px; }
  .materials-head { padding: 0; margin-bottom: 48px; gap: 24px; }
  .materials-grid { grid-template-columns: 1fr; gap: 28px; }

  .featured { padding: 100px 0 80px; }
  .featured-head { padding: 0 20px !important; margin: 0 0 48px !important; gap: 24px; }
  .pieces { padding: 0 16px; gap: 16px 12px; }

  .craft-text { padding: 60px 20px; gap: 28px; }

  /* Lifestyle — tighter margins, smaller meta */
  .lifestyle-caption { left: 20px; right: 20px; bottom: 20px; }
  .lifestyle-caption h3 { font-size: 26px; }
  .lifestyle-meta { left: 20px; right: 20px; top: 20px; font-size: 9px; letter-spacing: 0.14em; line-height: 1.7; }

  .story-text { padding: 56px 20px; }
  .story-stats { gap: 20px; margin-top: 48px; }
  .story-stat .num { font-size: 36px; }

  /* Closing — smaller heading, tighter padding */
  .closing-hero { padding: 80px 20px 56px; }
  .closing-hero h2 { font-size: 30px; line-height: 1.3; }
  .closing-hero p { font-size: 14px; margin-top: 24px; }
  .closing-hero .eyebrow { margin-bottom: 24px; }

  .newsletter { padding: 48px 0; }
  .newsletter-row { gap: 24px; }
  .newsletter-label { font-size: 22px; }

  .foot { padding: 56px 0 36px; }
  .foot-grid { gap: 28px; margin-bottom: 48px; }

  /* Search overlay — tightest padding */
  .search-panel { padding: 16px 20px 32px; }
  .search-input-row { gap: 10px; }
}


/* ============ Search Overlay ============ */
.search-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  font-family: var(--sans-kr);
}
.search-overlay.is-open { display: block; }
.search-backdrop {
  position: absolute; inset: 0;
  background: rgba(20, 18, 14, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: searchFade 320ms ease both;
}
.search-panel {
  position: absolute; left: 0; right: 0; top: 0;
  background: var(--ivory, #f5f1ea);
  color: var(--ink, #1a1814);
  padding: 28px 48px 56px;
  border-bottom: 1px solid rgba(26,24,20,0.08);
  animation: searchSlide 460ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
  max-height: 92vh;
  overflow-y: auto;
}
@keyframes searchFade {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes searchSlide {
  from { transform: translateY(-24px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.search-bar { border-bottom: 1px solid rgba(26,24,20,0.12); padding-bottom: 18px; }
.search-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(26,24,20,0.55);
  margin-bottom: 18px;
}
.search-input-row {
  display: flex; align-items: center; gap: 16px;
}
.search-icon { color: rgba(26,24,20,0.55); flex-shrink: 0; }
.search-input {
  flex: 1;
  min-width: 0;
  border: 0; outline: 0; background: transparent;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-size: 24px;
  line-height: 1.3;
  color: var(--ink);
  padding: 4px 0;
  letter-spacing: -0.01em;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.search-input::placeholder {
  color: rgba(26,24,20,0.30);
  font-style: normal;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
}
.search-close {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1px solid rgba(26,24,20,0.20);
  border-radius: 999px;
  padding: 8px 14px 8px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.search-close:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

.search-body {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 48px;
  padding-top: 28px;
}
.search-side-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(26,24,20,0.55);
  margin-bottom: 16px;
}
.search-tags { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.search-tags button {
  background: transparent; border: 0; padding: 6px 0; text-align: left;
  font-family: "Noto Sans KR", system-ui, sans-serif; font-size: 15px; color: var(--ink);
  cursor: pointer; border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, padding-left 200ms ease;
  width: fit-content;
}
.search-tags button:hover { border-bottom-color: var(--ink); padding-left: 4px; }

.search-results { min-height: 280px; }
.search-results-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(26,24,20,0.55);
}
.search-results-list { display: flex; flex-direction: column; }
.search-result {
  display: grid; grid-template-columns: 96px 1fr auto auto;
  gap: 24px; align-items: center;
  padding: 18px 0;
  border-top: 1px solid rgba(26,24,20,0.10);
  cursor: pointer;
  transition: padding-left 240ms cubic-bezier(0.2,0.7,0.2,1), background 240ms ease;
}
.search-result:hover { padding-left: 12px; background: rgba(26,24,20,0.025); }
.search-result-thumb {
  width: 96px; height: 72px;
  background: var(--sand, #d9cdb8) center/cover;
  border-radius: 2px;
}
.search-result-name {
  font-family: "Noto Sans KR", system-ui, sans-serif; font-size: 18px; color: var(--ink);
  letter-spacing: -0.01em; font-weight: 500;
}
.search-result-name em {
  font-family: "Playfair Display", serif; font-style: italic;
  font-weight: 400; color: rgba(26,24,20,0.55);
  margin-left: 6px; font-size: 18px;
}
.search-result-cat {
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(26,24,20,0.55);
}
.search-result-arrow {
  font-family: "Playfair Display", serif; font-size: 22px; color: rgba(26,24,20,0.30);
  transition: transform 240ms cubic-bezier(0.2,0.7,0.2,1), color 240ms ease;
}
.search-result:hover .search-result-arrow { transform: translateX(6px); color: var(--ink); }
.search-result mark {
  background: rgba(217, 178, 84, 0.30);
  color: inherit; padding: 0 2px; border-radius: 1px;
}

.search-empty {
  padding: 48px 0;
  text-align: center;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-size: 16px;
  color: rgba(26,24,20,0.55);
}
.search-empty em { font-family: "Playfair Display", serif; font-style: italic; color: var(--ink); }

@media (max-width: 960px) {
  .search-meta { display: none; }
  .search-bar { padding-bottom: 0; border-bottom: 0; }
  .search-close { padding: 8px; gap: 0; width: 36px; height: 36px; justify-content: center; }
  .search-close span { display: none; }
}

@media (max-width: 720px) {
  .search-panel { padding: 20px 24px 36px; }
  .search-input-row { gap: 12px; }
  .search-input { font-size: 16px; }
  .search-input::placeholder { font-size: 16px; }
  .search-body { grid-template-columns: 1fr; gap: 28px; }
  .search-result { grid-template-columns: 64px 1fr auto; gap: 14px; }
  .search-result-thumb { width: 64px; height: 56px; }
  .search-result-cat { display: none; }
  .search-result-name { font-size: 17px; }
}
