:root {
  --bg: #f3ebdd;
  --milk: #faf7f0;
  --stone: #d8d1c3;
  --stone-soft: #ebe4da;
  --apricot: #d8a06f;
  --mint: #b9c9ba;
  --charcoal: #3c3a36;
  --text: #2b2925;
  --muted: #8a7564;
  --line: rgba(43, 41, 37, .18);
  --shadow: 0 28px 80px rgba(60, 58, 54, .12);
  --shadow-soft: 0 16px 42px rgba(60, 58, 54, .09);
  --serif: "Cormorant Garamond", "Iowan Old Style", "Times New Roman", serif;
  --sans: "Pretendard", "Inter", "Segoe UI", sans-serif;
  --container: min(1520px, calc(100vw - 96px));
  --side: clamp(22px, 4.2vw, 72px);
  --section: clamp(72px, 9vw, 136px);
  --radius: 2px;
  --radius-lg: 26px;
  --motion: 420ms cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(255,255,255,.62), transparent 24rem),
    linear-gradient(180deg, var(--milk), var(--bg));
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  z-index: 50;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--side);
  border-bottom: 1px solid var(--line);
  background: rgba(250, 247, 240, .88);
  backdrop-filter: blur(16px);
  transition: transform var(--motion), background var(--motion);
}
.site-header.is-hidden { transform: translateY(-100%); }
.brand {
  font-family: var(--serif);
  letter-spacing: .28em;
  font-size: clamp(24px, 2.4vw, 38px);
  white-space: nowrap;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
  font-size: 14px;
}
.nav-right { justify-content: flex-end; }
.nav-right button {
  border: 0;
  background: transparent;
  padding: 8px 0;
  cursor: pointer;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(360px, .42fr) minmax(520px, .58fr);
  align-items: stretch;
  background: linear-gradient(90deg, var(--milk) 0 42%, rgba(216, 209, 195, .28) 42% 100%);
}
.hero-copy {
  padding: clamp(86px, 10vw, 150px) var(--side) clamp(72px, 8vw, 120px);
  align-self: center;
  max-width: 620px;
}
.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  color: var(--muted);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .96;
}
.hero h1 {
  font-size: clamp(72px, 8vw, 132px);
  margin-bottom: 28px;
}
.hero-copy p:not(.eyebrow) {
  max-width: 410px;
  font-size: clamp(17px, 1.35vw, 22px);
  color: var(--charcoal);
}
.button-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid var(--charcoal);
  letter-spacing: .04em;
  transition: transform var(--motion), box-shadow var(--motion), background var(--motion);
}
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.button.primary { background: var(--charcoal); color: var(--milk); }
.button.ghost { background: rgba(250, 247, 240, .52); }
.hero-image {
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 76px);
  object-fit: cover;
  object-position: 62% 50%;
}

.section {
  width: var(--container);
  margin-inline: auto;
  padding-block: var(--section);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(42px, 5vw, 72px);
}
.section-head h2,
.process-copy h2,
.ritual-copy h2,
.page-hero h1,
.split-page-hero h1,
.detail-copy h1 {
  font-size: clamp(42px, 4.6vw, 76px);
  max-width: 760px;
}
.section-head.compact h2 { max-width: 660px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--charcoal);
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  white-space: nowrap;
}
.text-link::after { content: "→"; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}
.product-card {
  position: relative;
  padding: 0 0 10px;
}
.product-image {
  display: block;
  overflow: hidden;
  background: linear-gradient(145deg, #f7efe4, #ded3c4);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  margin-bottom: 22px;
}
.product-card.large .product-image { aspect-ratio: 1 / 1; }
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--motion), filter var(--motion);
}
.product-card:hover .product-image img { transform: scale(1.035); filter: saturate(1.03); }
.product-card h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 400;
}
.product-card p { margin: 0 0 6px; color: var(--muted); }
.product-card strong { font-weight: 500; }
.circle-add {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--charcoal);
  background: rgba(250,247,240,.76);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.process-band {
  display: grid;
  grid-template-columns: .8fr 1.8fr;
  gap: clamp(54px, 7vw, 110px);
  padding: clamp(72px, 8vw, 112px) var(--side);
  background: linear-gradient(90deg, rgba(216,209,195,.58), rgba(250,247,240,.42));
  border-block: 1px solid var(--line);
}
.process-copy { max-width: 440px; }
.process-copy p:not(.eyebrow), .ritual-copy p, .page-hero p, .split-page-hero p, .detail-copy p {
  color: var(--muted);
  font-size: 17px;
}
.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.process-list article {
  padding: 18px clamp(20px, 2.2vw, 34px);
  border-left: 1px solid var(--line);
}
.process-list span {
  color: var(--apricot);
  letter-spacing: .18em;
  font-size: 12px;
}
.process-list h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; }
.process-list p { color: var(--muted); font-size: 14px; }

.texture-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .9fr);
  gap: 24px;
  align-items: stretch;
}
.texture-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: var(--stone-soft);
  border: 1px solid var(--line);
}
.texture-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 900ms ease;
}
.texture-card:hover img { transform: scale(1.04); }
.texture-card h3, .texture-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: var(--milk);
  text-shadow: 0 2px 20px rgba(0,0,0,.38);
}
.texture-card.wide div { max-width: 360px; }

.ritual-feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 720px;
  background: var(--charcoal);
  color: var(--milk);
}
.ritual-image { overflow: hidden; }
.ritual-image img { width: 100%; height: 100%; object-fit: cover; }
.ritual-copy {
  align-self: center;
  padding: var(--section) var(--side);
  max-width: 600px;
}
.ritual-copy p { color: rgba(250,247,240,.72); }
.ritual-copy .button { border-color: var(--milk); color: var(--milk); }

.gift-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(2, .82fr);
  gap: 28px;
}
.gift-lead, .gift-card {
  border: 1px solid var(--line);
  background: rgba(250,247,240,.64);
  overflow: hidden;
}
.gift-lead {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
}
.gift-lead img, .gift-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.gift-lead div, .gift-card {
  padding: 28px;
}
.gift-lead h3, .gift-card h3, .material-matrix h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
}
.gift-card.set { display: flex; flex-direction: column; gap: 18px; }
.gift-card.set img { min-height: 320px; aspect-ratio: 4 / 3; }

.journal {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: clamp(42px, 6vw, 96px);
  border-top: 1px solid var(--line);
}
.journal img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.journal-copy { max-width: 420px; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 42px;
  padding: 56px var(--side);
  border-top: 1px solid var(--line);
  background: rgba(216,209,195,.32);
}
.site-footer .brand { font-size: 28px; display: inline-block; margin-bottom: 16px; }
.site-footer nav { display: grid; gap: 12px; align-content: start; }
.newsletter label { display: block; margin-bottom: 14px; font-family: var(--serif); font-size: 26px; }
.newsletter div { display: flex; border-bottom: 1px solid var(--charcoal); }
.newsletter input { flex: 1; border: 0; background: transparent; padding: 14px 0; }
.newsletter button { border: 0; background: transparent; padding: 0 6px; cursor: pointer; }

.page { padding-top: 70px; }
.page-hero {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(84px, 10vw, 150px) 0 clamp(36px, 5vw, 80px);
}
.page-hero p { max-width: 560px; }
.split-page-hero, .product-detail-hero {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(84px, 9vw, 142px) 0 clamp(64px, 8vw, 116px);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(54px, 7vw, 108px);
  align-items: center;
}
.split-page-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.material-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.material-matrix article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.material-matrix img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 22px;
}

.product-detail-hero {
  grid-template-columns: 1.1fr .9fr;
  align-items: start;
}
.detail-gallery {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 22px;
}
.detail-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
}
.detail-gallery .main-detail { grid-row: span 2; }
.detail-copy {
  position: sticky;
  top: 110px;
  background: rgba(250,247,240,.68);
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid var(--line);
}
.detail-copy dl { display: grid; gap: 18px; margin: 34px 0; }
.detail-copy div { display: grid; grid-template-columns: 130px 1fr; gap: 16px; border-top: 1px solid var(--line); padding-top: 14px; }
.detail-copy dt { color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; }
.detail-copy dd { margin: 0; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 900ms ease forwards;
}
.hero-image.reveal { animation-delay: 160ms; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (max-width: 1180px) {
  :root { --container: min(100vw - 56px, 1080px); }
  .site-header { grid-template-columns: 1fr auto; }
  .brand { grid-column: 1; grid-row: 1; justify-self: start; }
  .nav-left { display: none; }
  .nav-right { gap: 14px; }
  .hero { grid-template-columns: 1fr; background: var(--milk); }
  .hero-copy { max-width: 760px; padding-bottom: 42px; }
  .hero-image { min-height: 520px; }
  .hero-image img { min-height: 520px; object-position: 60% 50%; }
  .process-band, .ritual-feature, .journal, .split-page-hero, .product-detail-hero { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .texture-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gift-grid { grid-template-columns: 1fr; }
  .gift-lead { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .material-matrix { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-copy { position: static; }
}

@media (max-width: 720px) {
  :root { --container: min(100vw - 36px, 640px); --side: 18px; }
  body { font-size: 15px; }
  .site-header { min-height: 66px; padding-inline: 18px; }
  .brand { font-size: 22px; letter-spacing: .2em; }
  .nav-right button:not(:last-child) { display: none; }
  .hero-copy { padding-top: 62px; }
  .hero h1 { font-size: clamp(56px, 15vw, 80px); }
  .hero-image { min-height: 420px; }
  .hero-image img { min-height: 420px; object-position: 62% 50%; }
  .button { width: 100%; }
  .section-head { align-items: start; flex-direction: column; margin-bottom: 34px; }
  .product-grid, .shop-grid, .process-list, .texture-grid, .material-matrix { grid-template-columns: 1fr; }
  .product-image { aspect-ratio: 1 / 1; }
  .process-list article { border-left: 0; border-top: 1px solid var(--line); padding-inline: 0; }
  .texture-card { min-height: 320px; }
  .ritual-feature { min-height: auto; }
  .ritual-image img { aspect-ratio: 4 / 3; }
  .site-footer { grid-template-columns: 1fr; padding-block: 42px; }
  .detail-gallery { grid-template-columns: 1fr; }
  .detail-copy div { grid-template-columns: 1fr; gap: 4px; }
  .page { padding-top: 40px; }
}

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