/* ============================================================
   SPINTO — Brand Page
   Quiet luxury editorial · paper / ink / brass
   ============================================================ */

:root {
  --paper: #faf8f4;
  --paper-warm: #f4f0e8;
  --tile: #f1ede6;
  --ink: #16130f;
  --ink-soft: #3d3831;
  --ink-mute: #7b7469;
  --brass: #9a7b4f;
  --brass-soft: #b79a6e;
  --hairline: rgba(22, 19, 15, 0.16);
  --hairline-strong: rgba(22, 19, 15, 0.32);
  --dark-bg: #131110;
  --dark-bg-2: #1a1715;
  --dark-text: #e9e4da;
  --dark-mute: #97907f;
  --dark-hairline: rgba(233, 228, 218, 0.16);

  --serif-en: "Cormorant Garamond", "Times New Roman", serif;
  --serif-kr: "Noto Serif KR", "Cormorant Garamond", serif;
  --sans: "Pretendard", "Pretendard Variable", "Noto Sans KR", sans-serif;

  --w-wide: 1400px;
  --w-text: 760px;
  --pad-x: clamp(20px, 4.5vw, 64px);
  --sec-y: clamp(96px, 13vw, 180px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4, p {
  margin: 0;
}

::selection {
  background: var(--brass);
  color: var(--paper);
}

:focus-visible {
  outline: 1.5px solid var(--brass);
  outline-offset: 3px;
}

/* ---------- shared atoms ---------- */
.wrap {
  max-width: var(--w-wide);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}

.sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: clamp(40px, 6vw, 72px);
}

.sec-index {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 15px;
  color: var(--brass);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.display {
  font-family: var(--serif-kr);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -0.005em;
  font-size: clamp(27px, 3.6vw, 46px);
}

.display .en {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.lede {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: clamp(15.5px, 1.25vw, 17.5px);
  line-height: 2.05;
}

.u-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  transition: color 0.35s, border-color 0.35s, letter-spacing 0.45s var(--ease-out);
}

.u-link:hover {
  color: var(--brass);
  border-color: var(--brass);
  letter-spacing: 0.31em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--hairline-strong);
  padding: 17px 34px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background 0.4s var(--ease-out), color 0.4s, border-color 0.4s;
}

.btn .arrow {
  transition: transform 0.4s var(--ease-out);
}

.btn:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.btn:hover .arrow {
  transform: translateX(6px);
}

.btn--solid {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.btn--solid:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: #fff;
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- header ---------- */
.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px var(--pad-x);
  color: #fff;
  transition: background 0.45s, color 0.45s, padding 0.45s, box-shadow 0.45s;
}

.site-head.scrolled {
  background: rgba(250, 248, 244, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: var(--ink);
  padding-block: 14px;
  box-shadow: 0 1px 0 var(--hairline);
}

.brandmark {
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  padding-left: 0.1em;
}

.brandmark small {
  display: block;
  font-size: 7.5px;
  font-weight: 500;
  letter-spacing: 0.51em;
  margin-top: 6px;
  opacity: 0.62;
}

.site-nav {
  display: flex;
  gap: clamp(18px, 2.6vw, 40px);
}

.site-nav a {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.86;
  position: relative;
  padding-bottom: 5px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}

.site-nav a:hover {
  opacity: 1;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.head-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  padding: 11px 20px;
  transition: background 0.35s, color 0.35s, border-color 0.35s;
  white-space: nowrap;
}

.site-head:not(.scrolled) .head-cta:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.site-head.scrolled .head-cta:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0e0d0c;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 22%;
  filter: grayscale(28%);
  animation: heroDrift 16s var(--ease-out) both;
}

@keyframes heroDrift {
  from { transform: scale(1.09); }
  to { transform: scale(1); }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 9, 8, 0.42), rgba(10, 9, 8, 0) 34%),
    linear-gradient(to top, rgba(10, 9, 8, 0.78), rgba(10, 9, 8, 0.12) 55%),
    linear-gradient(100deg, rgba(10, 9, 8, 0.5), rgba(10, 9, 8, 0) 58%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--w-wide);
  margin-inline: auto;
  padding: 0 var(--pad-x) clamp(150px, 21vh, 250px);
}

.hero-eyebrow {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.hero-eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--brass-soft);
}

.hero-title {
  font-family: var(--serif-kr);
  font-weight: 300;
  font-size: clamp(33px, 5vw, 66px);
  line-height: 1.34;
  letter-spacing: 0.005em;
  max-width: 15em;
  text-wrap: balance;
}

.hero-title em {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 400;
  color: var(--brass-soft);
}

.hero-sub {
  margin-top: 28px;
  max-width: 32em;
  font-weight: 300;
  font-size: clamp(14.5px, 1.15vw, 16.5px);
  line-height: 2;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.hero .btn {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.hero .btn:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.hero .btn--solid {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.hero .btn--solid:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: #fff;
}

/* giant cropped wordmark */
.hero-wordmark {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(34%);
  font-weight: 200;
  font-size: clamp(96px, 17.5vw, 260px);
  letter-spacing: 0.16em;
  text-indent: 0.16em;
  line-height: 0.86;
  text-align: center;
  color: rgba(255, 255, 255, 0.94);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero-scroll {
  position: absolute;
  z-index: 4;
  right: clamp(20px, 4vw, 56px);
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
  writing-mode: vertical-rl;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.75), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.35); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- ticker ---------- */
.ticker {
  border-block: 1px solid var(--hairline);
  overflow: hidden;
  padding-block: 17px;
  background: var(--paper);
  position: relative;
  z-index: 5;
}

.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: tick 46s linear infinite;
}

.ticker span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
  padding-inline: 34px;
  display: inline-flex;
  align-items: center;
  gap: 68px;
}

.ticker span i {
  font-family: var(--serif-en);
  font-style: italic;
  color: var(--brass);
  font-size: 15px;
  letter-spacing: 0.1em;
}

@keyframes tick {
  to { transform: translateX(-50%); }
}

/* ---------- section shell ---------- */
.section {
  padding-block: var(--sec-y);
}

/* ---------- identity ---------- */
.identity-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}

.identity-left {
  position: sticky;
  top: 120px;
}

.identity-left .eyebrow {
  margin-bottom: 26px;
}

.identity-kicker {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.25;
  color: var(--brass);
}

.identity-body .display {
  margin-bottom: 34px;
}

.identity-body .lede {
  max-width: var(--w-text);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  margin-top: clamp(56px, 7vw, 96px);
  padding-top: 14px;
}

.pillar {
  border-top: 1px solid var(--hairline-strong);
  padding-top: 26px;
}

.pillar-no {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 15px;
  color: var(--brass);
  display: block;
  margin-bottom: 18px;
}

.pillar h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pillar p {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.95;
}

/* ---------- signature ---------- */
.sig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}

.sig-card {
  display: block;
}

.sig-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--tile);
  overflow: hidden;
}

.sig-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  transition: opacity 0.7s var(--ease-out), transform 1.1s var(--ease-out);
}

.sig-frame img.alt {
  opacity: 0;
}

.sig-card:hover .sig-frame img.alt {
  opacity: 1;
}

.sig-card:hover .sig-frame img {
  transform: scale(1.045);
}

.sig-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
}

.sig-meta h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.sig-meta .no {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 14px;
  color: var(--brass);
}

.sig-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-soft);
  margin-top: 8px;
  line-height: 1.9;
}

.materials-line {
  margin-top: clamp(48px, 6vw, 76px);
  padding-top: 26px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.materials-line .mats {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.materials-line .mats b {
  color: var(--ink);
  font-weight: 600;
}

.materials-line .note {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 15px;
  color: var(--brass);
  letter-spacing: 0.04em;
}

/* ---------- scent ---------- */
.scent {
  background: var(--paper-warm);
  border-block: 1px solid var(--hairline);
}

.scent-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.scent-figure {
  position: relative;
}

.scent-figure .main {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.scent-figure .main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}

.scent-figure:hover .main img {
  transform: scale(1.04);
}

.scent-figure .float {
  position: absolute;
  right: clamp(-30px, -2.5vw, -14px);
  bottom: clamp(-34px, -3vw, -20px);
  width: clamp(140px, 15vw, 220px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 6px solid var(--paper-warm);
  box-shadow: 0 24px 60px rgba(22, 19, 15, 0.16);
}

.scent-figure .float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scent-copy .eyebrow {
  margin-bottom: 26px;
}

.scent-copy .display {
  margin-bottom: 30px;
}

.scent-copy .lede {
  margin-bottom: 36px;
}

.scent-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--hairline-strong);
  padding: 10px 18px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.4);
}

.scent-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(64px, 8vw, 110px);
}

.scent-strip figure {
  margin: 0;
}

.scent-strip .ph {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.scent-strip .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.scent-strip figure:hover .ph img {
  transform: scale(1.05);
}

.scent-strip figcaption {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-top: 14px;
}

.scent-note {
  margin-top: 34px;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--ink-mute);
}

/* ---------- atelier (dark) ---------- */
.atelier {
  background: var(--dark-bg);
  color: var(--dark-text);
}

.atelier .sec-head {
  border-color: var(--dark-hairline);
}

.atelier .eyebrow {
  color: var(--dark-mute);
}

.atelier-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
  margin-bottom: clamp(56px, 8vw, 100px);
}

.atelier-intro .lede {
  color: var(--dark-mute);
}

.atelier-collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
  margin-bottom: clamp(72px, 9vw, 130px);
}

.atelier-collage .c1 {
  grid-column: 1 / span 4;
}

.atelier-collage .c2 {
  grid-column: 5 / span 5;
  margin-top: clamp(36px, 5vw, 84px);
}

.atelier-collage .c3 {
  grid-column: 10 / span 3;
  margin-top: clamp(-8px, -0.5vw, 0px);
}

.atelier-collage figure {
  margin: 0;
}

.atelier-collage .ph {
  overflow: hidden;
}

.atelier-collage .c1 .ph,
.atelier-collage .c3 .ph {
  aspect-ratio: 2 / 3;
}

.atelier-collage .c2 .ph {
  aspect-ratio: 3 / 2;
}

.atelier-collage .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86);
  transition: transform 1.3s var(--ease-out);
}

.atelier-collage figure:hover .ph img {
  transform: scale(1.04);
}

.atelier-collage figcaption {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dark-mute);
  padding-top: 14px;
}

.process-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.process-head h3 {
  font-family: var(--serif-kr);
  font-weight: 300;
  font-size: clamp(23px, 2.6vw, 34px);
  line-height: 1.5;
}

.process-head .en {
  font-family: var(--serif-en);
  font-style: italic;
  color: var(--brass-soft);
  font-size: clamp(16px, 1.6vw, 21px);
  white-space: nowrap;
}

.process {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid var(--dark-hairline);
}

.step {
  border-right: 1px solid var(--dark-hairline);
  padding: 26px 18px 30px 18px;
  position: relative;
  transition: background 0.5s;
}

.step:last-child {
  border-right: 0;
}

.step:hover {
  background: var(--dark-bg-2);
}

.step::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}

.step:hover::after {
  transform: scaleX(1);
}

.step-no {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 14px;
  color: var(--brass-soft);
  display: block;
  margin-bottom: 40px;
}

.step h4 {
  margin: 0 0 8px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.step p {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark-mute);
}

/* ---------- collaboration ---------- */
.collab-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  margin-bottom: clamp(64px, 9vw, 120px);
}

.collab-copy .eyebrow {
  margin-bottom: 26px;
}

.collab-copy .display {
  margin-bottom: 30px;
}

.collab-copy .lede {
  margin-bottom: 40px;
}

.collab-formula {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: clamp(19px, 2vw, 26px);
  color: var(--brass);
  letter-spacing: 0.06em;
  margin-bottom: 42px;
}

.collab-figure {
  position: relative;
}

.collab-figure .ph {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.collab-figure .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}

.collab-figure:hover .ph img {
  transform: scale(1.03);
}

.collab-figure figcaption {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.services {
  border-top: 1px solid var(--hairline-strong);
}

.service {
  display: grid;
  grid-template-columns: 76px minmax(0, 0.85fr) minmax(0, 1.35fr) auto;
  align-items: baseline;
  gap: clamp(16px, 3vw, 48px);
  padding: clamp(26px, 3.2vw, 40px) 4px;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  transition: padding-left 0.5s var(--ease-out);
}

.service:hover {
  padding-left: 18px;
}

.service::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 100%;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease-out);
}

.service:hover::before {
  transform: scaleX(1);
}

.service .no {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 15px;
  color: var(--brass);
}

.service h3 {
  font-family: var(--serif-kr);
  font-weight: 400;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.5;
}

.service p {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.9;
}

.service .tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
}

/* ---------- next / quote ---------- */
.next {
  background: var(--paper-warm);
  border-block: 1px solid var(--hairline);
  text-align: center;
}

.next .inner {
  max-width: 880px;
  margin-inline: auto;
}

.next .eyebrow {
  justify-content: center;
  margin-bottom: 34px;
}

.next .eyebrow::before {
  display: none;
}

.next blockquote {
  margin: 0;
  font-family: var(--serif-kr);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.62;
  text-wrap: balance;
}

.next blockquote em {
  font-family: var(--serif-en);
  font-style: italic;
  color: var(--brass);
}

.next .attribution {
  margin-top: 36px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---------- contact ---------- */
.contact {
  background: var(--dark-bg);
  color: var(--dark-text);
  position: relative;
  overflow: hidden;
}

.contact .wrap {
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
}

.contact .eyebrow {
  color: var(--dark-mute);
  margin-bottom: 30px;
}

.contact h2 {
  font-family: var(--serif-kr);
  font-weight: 300;
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.42;
  margin-bottom: 26px;
  text-wrap: balance;
}

.contact h2 em {
  font-family: var(--serif-en);
  font-style: italic;
  color: var(--brass-soft);
}

.contact .lede {
  color: var(--dark-mute);
  max-width: 34em;
  margin-bottom: 46px;
}

.contact .btn {
  border-color: rgba(233, 228, 218, 0.4);
  color: var(--dark-text);
}

.contact .btn:hover {
  background: var(--dark-text);
  color: var(--ink);
  border-color: var(--dark-text);
}

.contact .btn--solid {
  background: var(--brass);
  border-color: var(--brass);
  color: #fff;
}

.contact .btn--solid:hover {
  background: var(--dark-text);
  border-color: var(--dark-text);
  color: var(--ink);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-side {
  border-left: 1px solid var(--dark-hairline);
  padding-left: clamp(28px, 3.5vw, 56px);
  display: grid;
  gap: 34px;
}

.contact-item .label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dark-mute);
  margin-bottom: 10px;
}

.contact-item .value {
  font-family: "Cormorant Garamond", "Noto Serif KR", "Times New Roman", serif;
  font-size: clamp(17px, 1.6vw, 21px);
  letter-spacing: 0.04em;
}

.contact-item .value a {
  border-bottom: 1px solid var(--dark-hairline);
  padding-bottom: 3px;
  transition: color 0.35s, border-color 0.35s;
}

.contact-item .value a:hover {
  color: var(--brass-soft);
  border-color: var(--brass-soft);
}

/* watermark */
.contact-watermark {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -0.28em;
  transform: translateX(-50%);
  font-weight: 200;
  font-size: clamp(110px, 20vw, 320px);
  letter-spacing: 0.14em;
  text-indent: 0.14em;
  line-height: 1;
  color: rgba(233, 228, 218, 0.05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* ---------- footer ---------- */
.site-foot {
  background: var(--dark-bg);
  color: var(--dark-mute);
  border-top: 1px solid var(--dark-hairline);
  padding: 44px 0 38px;
}

.foot-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--dark-hairline);
  margin-bottom: 28px;
}

.foot-biz {
  font-size: 12px;
  font-weight: 300;
  line-height: 2.1;
  letter-spacing: 0.04em;
}

.foot-biz p {
  margin: 0;
}

.foot-biz .sep {
  margin-inline: 10px;
  opacity: 0.4;
}

.foot-biz a {
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.3s, border-color 0.3s;
}

.foot-biz a:hover {
  color: var(--dark-text);
  border-color: var(--dark-mute);
}

.foot-copy {
  margin-top: 24px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(151, 144, 127, 0.72);
}

.site-foot .brandmark {
  color: var(--dark-text);
  font-size: 13px;
}

.site-foot .brandmark small {
  display: none;
}

.foot-meta {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.foot-meta a {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.foot-meta a:hover {
  color: var(--dark-text);
  border-color: var(--dark-mute);
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .process {
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid var(--dark-hairline);
  }

  .step {
    border-bottom: 1px solid var(--dark-hairline);
  }

  .step:last-child {
    border-right: 1px solid var(--dark-hairline);
  }

  .service {
    grid-template-columns: 56px minmax(0, 1fr) auto;
  }

  .service p {
    grid-column: 2 / span 2;
    grid-row: 2;
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .identity-grid,
  .scent-grid,
  .collab-grid,
  .contact-grid,
  .atelier-intro {
    grid-template-columns: 1fr;
  }

  .identity-left {
    position: static;
  }

  .sig-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .scent-strip {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .atelier-collage {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .atelier-collage .c1,
  .atelier-collage .c2,
  .atelier-collage .c3 {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .contact-side {
    border-left: 0;
    border-top: 1px solid var(--dark-hairline);
    padding-left: 0;
    padding-top: 36px;
  }

  .hero-wordmark {
    transform: translateY(26%);
  }
}

@media (max-width: 640px) {
  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-no {
    margin-bottom: 22px;
  }

  .service {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service p {
    grid-column: auto;
    grid-row: auto;
  }

  .service .tag {
    order: -1;
  }

  .sec-head {
    flex-direction: column;
    gap: 10px;
  }

  .scent-figure .float {
    right: 8px;
    bottom: -26px;
  }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ticker-track {
    animation: none;
  }

  .hero-media img {
    animation: none;
  }

  .hero-scroll::after {
    animation: none;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}
