:root {
  --black: #161616;
  --ink: #222222;
  --muted: #6f6f6a;
  --subtle: #96938d;
  --line: rgba(34, 34, 34, 0.10);
  --line-strong: rgba(34, 34, 34, 0.18);
  --white: #ffffff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --soft: #f7f6f2;
  --soft-2: #e9e6de;
  --warm: #7d7a70;
  --warm-dark: #555249;
  --green: #111113;
  --max: 1320px;
  --content: 1180px;
  --radius-xl: 24px;
  --radius-lg: 22px;
  --radius-md: 20px;
  --shadow-sm: 0 10px 30px rgba(34, 34, 34, 0.06);
  --shadow-md: 0 22px 60px rgba(34, 34, 34, 0.10);
  --shadow-lg: 0 34px 90px rgba(34, 34, 34, 0.12);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(210, 207, 198, 0.34), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(232, 229, 221, 0.48), transparent 28%),
    linear-gradient(180deg, #f7f6f2 0%, #fbfaf7 42%, #ffffff 100%);
  font-family: "Inter", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: -0.022em;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(95, 76, 55, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 76, 55, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 55%);
  content: "";
}

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

p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  font-weight: 500;
  line-height: 1.85;
  word-break: keep-all;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -0.065em;
}

h1 {
  max-width: 760px;
  font-size: clamp(4rem, 8.4vw, 8.8rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2.55rem, 5.2vw, 6rem);
  font-weight: 800;
}

h3 {
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 22px;
  left: 50%;
  display: flex;
  width: min(calc(100% - 64px), 1240px);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0 0 22px 22px;
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 16px 46px rgba(71, 52, 34, 0.12);
  backdrop-filter: blur(22px) saturate(140%);
  transform: translateX(-50%);
}

.brand-mark,
.brand-badge,
.nav-links {
  display: flex;
  align-items: center;
}

.brand-mark {
  gap: 10px;
  padding-right: 16px;
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: -0.015em;
  text-decoration: none;
}

.header-corporate-logo {
  display: block;
  width: auto;
  height: clamp(30px, 3.6vw, 40px);
  max-width: min(168px, 42vw);
  object-fit: contain;
}

.brand-symbol {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--black), #5c4632);
  font-size: 0.74rem;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(17, 17, 19, 0.18);
}

.brand-badge {
  gap: 10px;
  margin-right: auto;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(247, 246, 242, 0.72);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.site-header .brand-mark {
  margin-right: auto;
}

.brand-badge span {
  color: var(--subtle);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.brand-badge strong {
  color: var(--ink);
  font-size: 0.84rem;
  letter-spacing: -0.02em;
}

.nav-links {
  gap: 4px;
}

.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(17, 17, 19, 0.62);
  font-size: 0.84rem;
  font-weight: 750;
  transition: color 220ms var(--ease), background-color 220ms var(--ease), transform 220ms var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--black);
  background: rgba(217, 138, 75, 0.12);
  transform: translateY(-1px);
}

main {
  overflow: hidden;
}

.section-panel,
.brand-section,
.marketing-section {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 7vw, 112px) 0;
}

.section-inner {
  width: min(calc(100% - 64px), var(--content));
  margin: 0 auto;
}

.section-about {
  min-height: 100svh;
  padding-top: 106px;
  background:
    radial-gradient(circle at 50% 18%, rgba(217, 138, 75, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.20), rgba(249, 245, 239, 0.86));
}

.section-about::before {
  position: absolute;
  inset: 88px auto auto 50%;
  width: min(920px, 80vw);
  height: 360px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 50%, rgba(217, 138, 75, 0.20), transparent 38%),
    radial-gradient(circle at 72% 44%, rgba(170, 132, 92, 0.16), transparent 34%);
  filter: blur(36px);
  content: "";
  transform: translateX(-50%);
}

.hero-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.82fr);
  column-gap: clamp(42px, 6vw, 86px);
  min-height: calc(100svh - 154px);
  overflow: hidden;
  align-items: center;
  align-content: center;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 24%, rgba(210, 207, 198, 0.42), transparent 25%),
    linear-gradient(135deg, #ffffff 0%, #f7f6f2 54%, #e7e3da 100%);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.hero-showcase::before {
  position: absolute;
  inset: 12% 7% auto auto;
  z-index: 0;
  width: min(560px, 48vw);
  height: min(520px, 54vw);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(201, 198, 187, 0.14));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    0 36px 90px rgba(71, 52, 34, 0.15);
  content: "";
  transform: none;
}

.hero-showcase::after {
  position: absolute;
  right: 3%;
  bottom: 8%;
  z-index: 0;
  width: min(540px, 48vw);
  height: min(300px, 32vw);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(210, 207, 198, 0.16));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.36),
    0 30px 80px rgba(71, 52, 34, 0.12);
  content: "";
  transform: none;
}

.showcase-topline {
  position: absolute;
  top: clamp(22px, 3vw, 42px);
  left: clamp(28px, 5vw, 64px);
  right: clamp(28px, 5vw, 64px);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--subtle);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.005em;
}

.showcase-content {
  position: relative;
  z-index: 3;
  display: grid;
  max-width: 600px;
  gap: 24px;
  padding: clamp(76px, 8vw, 120px) 0 0;
}

.hero-visual {
  position: relative;
  right: auto;
  top: auto;
  z-index: 2;
  width: 100%;
  min-height: 560px;
  transform: none;
}

.visual-stage {
  position: absolute;
  inset: 0 0 96px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 44px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.58) 0 1px, transparent 1px 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(232, 229, 221, 0.62)),
    radial-gradient(circle at 80% 16%, rgba(255, 255, 255, 0.62), transparent 18%);
  box-shadow: 0 34px 90px rgba(34, 34, 34, 0.10);
}

.visual-stage::before {
  position: absolute;
  right: 11%;
  bottom: 18%;
  width: 74%;
  height: 16px;
  border-radius: 999px;
  background: rgba(80, 78, 72, 0.16);
  content: "";
  filter: blur(2px);
}

.visual-arch {
  position: absolute;
  right: 8%;
  top: 8%;
  width: 42%;
  height: 38%;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(218, 215, 205, 0.34));
}

.visual-product {
  position: absolute;
  display: grid;
  align-content: space-between;
  color: rgba(37, 33, 29, 0.70);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: left;
  padding: 18px;
}

.visual-product.box {
  left: 10%;
  top: 12%;
  width: 42%;
  height: 32%;
  border: 1px solid rgba(37, 33, 29, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 246, 242, 0.70));
  box-shadow: 0 18px 42px rgba(34, 34, 34, 0.10);
}

.visual-product.bottle {
  left: 10%;
  bottom: 24%;
  width: 42%;
  height: 30%;
  border: 1px solid rgba(37, 33, 29, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, #77786f, #4d4d46);
  color: rgba(255, 255, 255, 0.78);
  writing-mode: initial;
}

.visual-product.bottle::before {
  content: "Brand Operation";
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-product.pump {
  right: 8%;
  bottom: 24%;
  width: 34%;
  height: 30%;
  border: 1px solid rgba(37, 33, 29, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #e8e5dc);
  box-shadow: 0 18px 42px rgba(34, 34, 34, 0.10);
}

.visual-product.pump::before {
  content: "Marketing";
  color: rgba(37, 33, 29, 0.50);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-leaf {
  display: none;
}

.leaf-one {
  right: 20%;
  top: 22%;
  transform: rotate(-28deg);
}

.leaf-two {
  right: 33%;
  top: 29%;
  transform: rotate(18deg) scale(0.72);
}

.visual-card {
  position: absolute;
  bottom: 0;
  display: grid;
  gap: 8px;
  width: min(250px, 48%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 64px rgba(34, 34, 34, 0.10);
  backdrop-filter: blur(18px) saturate(130%);
}

.visual-card span {
  color: var(--subtle);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.visual-card strong {
  color: var(--ink);
  font-size: clamp(0.95rem, 1.35vw, 1.18rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.visual-card-elnoir {
  left: 0;
}

.visual-card-rising {
  right: 0;
}

.showcase-content .eyebrow,
.showcase-content .lead {
  color: var(--muted);
}

.showcase-content h1 {
  color: var(--ink);
  font-family: "Inter", "Noto Sans KR", system-ui, sans-serif;
  font-size: clamp(3.8rem, 7.2vw, 7.2rem);
  font-weight: 850;
  letter-spacing: -0.062em;
  line-height: 0.92;
  text-wrap: balance;
}

.showcase-content .lead {
  max-width: 600px;
  color: #3e4148;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 600;
  line-height: 1.78;
}

.discover-link {
  display: inline-flex;
  width: fit-content;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  padding: 0 18px 0 24px;
  border: 1px solid var(--warm);
  border-radius: 999px;
  color: var(--white);
  background: var(--warm);
  box-shadow: 0 14px 34px rgba(217, 138, 75, 0.26);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), background-color 240ms var(--ease);
}

.discover-link span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--white);
  transition: transform 240ms var(--ease);
}

.discover-link:hover,
.discover-link:focus-visible {
  box-shadow: 0 22px 48px rgba(17, 17, 19, 0.24);
  transform: translateY(-3px);
}

.discover-link:hover span,
.discover-link:focus-visible span {
  transform: translate(2px, 2px);
}

.hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 72px;
}

.hero-copy,
.hero-card,
.work-grid article,
.product-card,
.service-list span {
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease), background-color 260ms var(--ease);
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 20px;
  min-height: 320px;
  padding: clamp(34px, 4.8vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 70px rgba(71, 52, 34, 0.07);
}

.hero-copy h2 {
  max-width: 720px;
  font-family: "Inter", "Noto Sans KR", system-ui, sans-serif;
  font-size: clamp(2.1rem, 3.4vw, 3.75rem);
  font-weight: 840;
  letter-spacing: -0.04em;
  line-height: 1.14;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 680px;
  color: #4f514d;
  letter-spacing: -0.024em;
  line-height: 1.88;
}

.eyebrow,
.section-kicker {
  color: rgba(17, 17, 19, 0.54);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.lead {
  max-width: 720px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.78;
}

.hero-card {
  display: grid;
  gap: 24px;
  min-height: 320px;
  align-content: end;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.74), transparent 30%),
    linear-gradient(135deg, #f8f7f3 0%, #dfddd5 100%);
  box-shadow: 0 22px 70px rgba(71, 52, 34, 0.08);
}

.hero-card:hover,
.work-grid article:hover,
.product-card:hover,
.service-list span:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px) scale(1.015);
}

.hero-card span,
.product-card span,
.brand-category {
  color: rgba(17, 17, 19, 0.50);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-card span,
.hero-card p {
  color: rgba(37, 33, 29, 0.58);
}

.hero-card strong {
  color: var(--ink);
  font-size: clamp(1.55rem, 2.45vw, 2.45rem);
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.work-area {
  margin-top: 28px;
  padding: clamp(32px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.work-grid article {
  display: grid;
  min-height: 178px;
  align-content: center;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 26px rgba(71, 52, 34, 0.05);
}

.work-grid span {
  display: none;
  color: rgba(17, 17, 19, 0.38);
  font-size: 0.8rem;
  font-weight: 850;
}

.work-grid p {
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.62;
}

.intro-brands {
  display: grid;
  background:
    radial-gradient(circle at 18% 12%, rgba(224, 202, 173, 0.26), transparent 30%),
    radial-gradient(circle at 84% 10%, rgba(148, 131, 112, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8f5ef 100%);
}

.brands-showcase {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}

.brands-heading {
  display: grid;
  max-width: 980px;
  gap: 24px;
}

.brands-heading h2 {
  display: grid;
  gap: 6px;
  max-width: 840px;
  font-family: "Noto Serif KR", "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6.2vw, 6.8rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.brands-heading h2 span,
.brands-heading h2 strong {
  display: block;
}

.brands-heading h2 span {
  color: #77736a;
  font-weight: 700;
}

.brands-heading h2 strong {
  color: var(--ink);
  font-weight: 900;
}

.brands-lead {
  display: grid;
  max-width: 780px;
  gap: 12px;
}

.brands-lead p {
  color: #4f514d;
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  font-weight: 600;
  line-height: 1.82;
  letter-spacing: -0.026em;
}

.brands-lead strong {
  color: var(--ink);
  font-weight: 900;
}

.brand-emphasis {
  display: inline-block;
  margin: 0 4px;
  color: var(--ink);
  font-weight: 900;
}

.brand-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}

.brand-intro-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  min-height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 34px;
  box-shadow: 0 28px 90px rgba(71, 52, 34, 0.10);
  isolation: isolate;
}

.brand-intro-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
}

.elnoir-card::before {
  background:
    radial-gradient(circle at 28% 26%, rgba(255, 236, 187, 0.72), transparent 28%),
    radial-gradient(circle at 18% 84%, rgba(118, 135, 92, 0.16), transparent 28%),
    linear-gradient(135deg, #fffdf8 0%, #f5e6cf 100%);
}

.rising-card::before {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.64), transparent 24%),
    radial-gradient(circle at 14% 82%, rgba(107, 85, 61, 0.16), transparent 30%),
    linear-gradient(135deg, #fbfaf7 0%, #e3ded5 52%, #c9b8a0 100%);
}

.brand-card-visual,
.brand-card-copy {
  position: relative;
  z-index: 1;
}

.brand-card-visual {
  overflow: hidden;
  margin: 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.56) 0 1px, transparent 1px 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.18));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.brand-card-visual::before {
  position: absolute;
  inset: 13% 10% auto;
  height: 38%;
  border-radius: 999px 999px 28px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.10));
  content: "";
}

.visual-pill {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 34px rgba(71, 52, 34, 0.08);
  color: rgba(37, 33, 29, 0.66);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.visual-pill:first-child {
  left: 22px;
  top: 22px;
}

.visual-pill:nth-child(2) {
  right: 22px;
  bottom: 22px;
}

.visual-object {
  position: absolute;
  z-index: 1;
}

.visual-object.jar {
  left: 18%;
  bottom: 19%;
  width: 34%;
  height: 36%;
  border-radius: 24px 24px 18px 18px;
  background: linear-gradient(180deg, #ffffff, #eee7da);
  box-shadow: 0 28px 58px rgba(71, 52, 34, 0.14);
}

.visual-object.leaf {
  right: 17%;
  top: 28%;
  width: 34%;
  height: 15%;
  border-radius: 999px 0 999px 0;
  background: linear-gradient(135deg, #87926f, #46563a);
  opacity: 0.72;
  transform: rotate(-24deg);
}

.visual-object.home-card {
  left: 12%;
  top: 16%;
  width: 64%;
  height: 34%;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(214, 199, 177, 0.68));
  box-shadow: 0 26px 58px rgba(71, 52, 34, 0.12);
}

.visual-object.lamp {
  right: 15%;
  bottom: 18%;
  width: 28%;
  height: 38%;
  border-radius: 999px 999px 22px 22px;
  background: linear-gradient(180deg, #f9f6ee, #796a57);
  box-shadow: 0 28px 60px rgba(71, 52, 34, 0.16);
}

.brand-card-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 3.4vw, 46px);
}

.brand-card-kicker {
  color: rgba(37, 33, 29, 0.54);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brand-card-copy h3 {
  max-width: 430px;
  font-size: clamp(1.85rem, 2.8vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.brand-card-copy p {
  max-width: 460px;
  color: #4f514d;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.78;
  letter-spacing: -0.024em;
}

.brand-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.brand-card-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(37, 33, 29, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: rgba(37, 33, 29, 0.70);
  font-size: 0.82rem;
  font-weight: 850;
}

.elnoir-card .cta-button.primary {
  background: linear-gradient(135deg, #7f8a65, #35402c);
}

.elnoir-card .cta-button.secondary {
  border-color: rgba(127, 138, 101, 0.28);
  background: rgba(255, 255, 255, 0.78);
}

.rising-card .cta-button.primary {
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(135deg, #5b4936 0%, #1f1d1a 100%);
}

.rising-card .cta-button.secondary {
  color: #3f3428;
  border-color: rgba(143, 112, 77, 0.32);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(225, 210, 190, 0.78));
}

.brand-intro-card[data-reveal] {
  transform: translateY(42px);
}

.brand-intro-card[data-reveal].is-visible {
  transform: translateY(0);
}

.brand-intro-card:nth-child(2)[data-reveal] {
  transition-delay: 120ms;
}

.brand-section {
  display: grid;
  align-items: center;
}

.brand-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
  gap: clamp(56px, 7vw, 96px);
  align-items: center;
}

.brand-layout.reverse {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
}

.brand-layout.reverse .brand-visual {
  order: 2;
}

.brand-layout.reverse .brand-copy {
  order: 1;
}

.elnoir-section {
  padding: clamp(96px, 10vw, 128px) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(237, 224, 201, 0.22), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fcf9f4 100%);
}

.elnoir-strip-card,
.rising9-strip-card {
  position: relative;
  overflow: hidden;
  min-height: clamp(260px, 28vw, 340px);
  border: none;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: none;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.elnoir-strip-card:hover,
.elnoir-strip-card:focus-within,
.rising9-strip-card:hover,
.rising9-strip-card:focus-within {
  transform: translateY(-2px);
}

.elnoir-strip-label,
.rising9-strip-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  max-width: calc(100% - 36px);
  padding: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.92);
  background: none;
  backdrop-filter: none;
  font-size: 0.65rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-shadow: 0 1px 12px rgba(28, 26, 22, 0.35);
  text-transform: uppercase;
}

.elnoir-strip-visual,
.rising9-strip-visual {
  position: absolute;
  inset: 0;
  background-color: #f7f2ea;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.01);
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.elnoir-strip-visual,
.rising9-strip-visual {
  filter: saturate(1.05) brightness(1.03);
}

.elnoir-strip-visual::before,
.rising9-strip-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 250, 244, 0.08);
  content: "";
  pointer-events: none;
}

.elnoir-strip-visual::after,
.rising9-strip-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.14), transparent 32%),
    linear-gradient(0deg, rgba(252, 248, 242, 0.22), transparent 46%);
  content: "";
}

.elnoir-strip-card:hover .elnoir-strip-visual,
.elnoir-strip-card:focus-within .elnoir-strip-visual,
.rising9-strip-card:hover .rising9-strip-visual {
  transform: scale(1.04);
}

.elnoir-strip-visual.inner-beauty {
  background-image: url("assets/elnoir-product-inner-beauty-card.jpg");
  background-position: center 38%;
}

.elnoir-strip-visual.nutrition {
  background-image: url("assets/elnoir-product-nutrition-card.jpg");
  background-position: center 42%;
}

.elnoir-strip-visual.beauty-care,
.elnoir-strip-visual.lifestyle {
  background-image: url("assets/elnoir-product-beauty-care-card.jpg");
  background-position: center 36%;
}

.elnoir-strip-visual.wellness {
  background-image: url("assets/elnoir-product-wellness-card.jpg");
  background-position: center 40%;
}

.elnoir-logo-card,
.rising9-logo-card,
.brand-logo-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: clamp(36px, 4vw, 48px) clamp(28px, 3vw, 40px);
  border: 1px solid rgba(237, 230, 220, 0.65);
  border-radius: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 24px 64px rgba(84, 68, 48, 0.06),
    0 8px 24px rgba(84, 68, 48, 0.04);
}

.elnoir-logo {
  display: block;
  width: min(100%, 168px);
  height: auto;
}

.elnoir-logo-card p,
.rising9-logo-card p,
.brand-logo-card p {
  max-width: 220px;
  color: rgba(42, 38, 34, 0.62);
  font-family: "Cormorant Garamond", "Noto Serif KR", serif;
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.06em;
}

.elnoir-section .product-card::before,
.elnoir-section .product-card::after {
  content: none;
}

.rising9-section {
  padding: clamp(96px, 10vw, 128px) 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(237, 224, 201, 0.22), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fcf9f4 100%);
}

.rising9-section .brand-visual {
  min-height: 640px;
  padding: 0;
  border-color: rgba(222, 210, 191, 0.55);
  background: linear-gradient(160deg, #fcfaf6 0%, #f5efe6 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.rising9-section .brand-visual::before,
.rising9-section .brand-visual::after {
  content: none;
}

.rising9-showcase {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
  height: 100%;
  min-height: 640px;
  padding: 30px 30px 28px;
}

.rising9-showcase::before {
  position: absolute;
  top: 18px;
  left: 24px;
  z-index: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 236, 196, 0.42), transparent 68%);
  content: "";
  pointer-events: none;
}

.rising9-showcase::after {
  position: absolute;
  right: 18px;
  bottom: 120px;
  z-index: 0;
  width: 88px;
  height: 88px;
  border-radius: 40% 60% 55% 45%;
  background: radial-gradient(circle at 30% 30%, rgba(143, 162, 108, 0.16), transparent 72%);
  content: "";
  filter: blur(2px);
  pointer-events: none;
}


.rising9-category-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rising9-category-card {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 14px 36px rgba(84, 68, 48, 0.07);
}

.rising9-category-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(42, 38, 34, 0.72);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
}

.rising9-category-visual {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.01);
  transition: transform 420ms var(--ease);
}

.rising9-category-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(0deg, rgba(252, 250, 246, 0.42), transparent 48%);
  content: "";
}

.rising9-category-card:hover .rising9-category-visual,
.rising9-category-card:focus-within .rising9-category-visual {
  transform: scale(1.05);
}

.rising9-category-visual.living {
  background-image: url("assets/rising9-space-living-card.jpg");
  background-position: center 42%;
}

.rising9-category-visual.kitchen {
  background-image: url("assets/rising9-space-kitchen-card.jpg");
  background-position: center 38%;
}

.rising9-category-visual.home-living {
  background-image: url("assets/rising9-space-homeliving-card.jpg");
  background-position: center 40%;
}

.rising9-category-visual.furniture {
  background-image: url("assets/rising9-space-bedroom-card.jpg");
  background-position: center 44%;
}

.rising9-brand-panel {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 22px 24px 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 42px rgba(84, 68, 48, 0.08);
  backdrop-filter: blur(14px) saturate(120%);
}

.rising9-logo {
  display: block;
  width: min(100%, 160px);
  height: auto;
}

.rising9-brand-panel p {
  max-width: 220px;
  color: rgba(42, 38, 34, 0.62);
  font-family: "Cormorant Garamond", "Noto Serif KR", serif;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.brand-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.soft-orb {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  filter: blur(4px);
}

.orb-one {
  inset: 8% auto auto 8%;
  width: 330px;
  height: 330px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(135deg, rgba(238, 214, 178, 0.95), rgba(244, 238, 228, 0.34));
}

.orb-two {
  right: 8%;
  bottom: 8%;
  width: 260px;
  height: 260px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.78), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(219, 184, 127, 0.72));
}

.grid-surface {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 500px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
}

.grid-surface span {
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.70);
  box-shadow: 0 18px 42px rgba(78, 59, 39, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  min-height: 195px;
  padding: 20px;
  color: var(--ink);
  backdrop-filter: blur(16px) saturate(128%);
}

.grid-surface span:nth-child(1),
.grid-surface span:nth-child(2),
.grid-surface span:nth-child(3) {
  grid-column: span 2;
}

.grid-surface span:nth-child(4),
.grid-surface span:nth-child(5) {
  grid-column: span 3;
}

.grid-surface strong {
  align-self: start;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  letter-spacing: -0.04em;
}

.grid-surface em {
  align-self: end;
  color: var(--muted);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 800;
}

.grid-surface span:nth-child(2) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(221, 205, 183, 0.66));
}

.grid-surface span:nth-child(3) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.80), rgba(240, 229, 216, 0.72));
}

.grid-surface span:nth-child(4) {
  background: linear-gradient(135deg, rgba(232, 220, 204, 0.78), rgba(200, 178, 151, 0.72));
}

.grid-surface span:nth-child(5) {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(135deg, #5e4f3d 0%, #2c2924 100%);
}

.grid-surface span:nth-child(5) em {
  color: rgba(255, 255, 255, 0.68);
}

.product-card {
  position: absolute;
  right: 26px;
  bottom: 26px;
  z-index: 3;
  display: grid;
  width: min(78%, 390px);
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(22px) saturate(140%);
}

.elnoir-section .product-card {
  left: 34px;
  right: auto;
  bottom: 32px;
  width: min(76%, 430px);
  padding: 28px;
  background: rgba(255, 255, 255, 0.84);
}

.elnoir-section .product-card strong {
  font-size: clamp(2.45rem, 4.4vw, 4.3rem);
}

.product-mood {
  position: absolute;
  inset: 34px 34px auto 34px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.elnoir-mood {
  inset: 34px 34px auto 34px;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.product-mood article {
  display: grid;
  min-height: 142px;
  align-content: space-between;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.70);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 40px rgba(71, 52, 34, 0.08);
  backdrop-filter: blur(18px) saturate(130%);
}

.product-mood article:nth-child(2) {
  transform: translateY(34px);
}

.product-mood article:nth-child(3) {
  transform: translateY(68px);
}

.product-mood span {
  color: rgba(37, 33, 29, 0.52);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-mood strong {
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  letter-spacing: -0.04em;
}

.elnoir-mood article {
  position: relative;
  overflow: hidden;
  min-height: 286px;
  border-color: rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  isolation: isolate;
  background: #f8f2e8;
  box-shadow: 0 18px 46px rgba(71, 52, 34, 0.12);
}

.elnoir-mood article:nth-child(2),
.elnoir-mood article:nth-child(3) {
  transform: none;
}

.elnoir-mood article::before,
.elnoir-mood article::after {
  position: absolute;
  content: "";
}

.elnoir-mood article::before {
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: none;
  transition: transform 360ms var(--ease);
}

.elnoir-mood article::after {
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), transparent 35%),
    linear-gradient(0deg, rgba(21, 18, 15, 0.42), transparent 52%);
  filter: none;
}

.elnoir-mood article span,
.elnoir-mood article strong {
  position: relative;
  z-index: 1;
}

.elnoir-mood article span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(37, 33, 29, 0.70);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 24px rgba(71, 52, 34, 0.08);
  backdrop-filter: blur(12px);
}

.elnoir-mood article strong {
  max-width: 160px;
  color: var(--white);
  font-size: clamp(1rem, 1.55vw, 1.28rem);
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(17, 17, 19, 0.26);
}

.elnoir-mood article:nth-child(1) {
  background: #eef4e5;
}

.elnoir-mood article:nth-child(1)::before {
  background-image: url("assets/elnoir-inner-beauty.png");
  background-position: center;
}

.elnoir-mood article:nth-child(2) {
  background: #ead5b8;
}

.elnoir-mood article:nth-child(2)::before {
  background-image: url("assets/elnoir-beauty-shampoo.png");
  background-position: center;
}

.elnoir-mood article:hover::before,
.elnoir-mood article:focus-within::before {
  transform: scale(1.035);
}

.rising9-mood {
  inset: 34px 34px auto 34px;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
}

.rising9-mood article {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  border-color: rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  isolation: isolate;
  background: #f3ece1;
  box-shadow: 0 18px 46px rgba(71, 52, 34, 0.12);
}

.rising9-mood article:nth-child(1) {
  grid-row: span 2;
  min-height: 334px;
}

.rising9-mood article:nth-child(2),
.rising9-mood article:nth-child(3) {
  transform: none;
}

.rising9-mood article::before,
.rising9-mood article::after {
  position: absolute;
  content: "";
}

.rising9-mood article::before {
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 360ms var(--ease);
}

.rising9-mood article::after {
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 34%),
    linear-gradient(0deg, rgba(21, 18, 15, 0.48), transparent 56%);
}

.rising9-mood article span,
.rising9-mood article strong {
  position: relative;
  z-index: 1;
}

.rising9-mood article span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(37, 33, 29, 0.72);
  background: rgba(255, 255, 255, 0.80);
  box-shadow: 0 10px 24px rgba(71, 52, 34, 0.08);
  backdrop-filter: blur(12px);
}

.rising9-mood article strong {
  max-width: 180px;
  color: var(--white);
  font-size: clamp(1rem, 1.55vw, 1.28rem);
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(17, 17, 19, 0.26);
}

.rising9-mood article:nth-child(1)::before {
  background-image: url("assets/rising9-furniture.png");
  background-position: center 42%;
}

.rising9-mood article:nth-child(2)::before {
  background-image: url("assets/rising9-kitchen.png");
  background-position: center 38%;
}

.rising9-mood article:nth-child(3)::before {
  background-image: url("assets/rising9-appliance.png");
  background-position: center;
}

.rising9-mood article:hover::before,
.rising9-mood article:focus-within::before {
  transform: scale(1.035);
}

.product-card strong {
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  font-weight: 850;
  line-height: 0.95;
  letter-spacing: -0.09em;
}

.product-card.graphite {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.10), transparent 28%),
    linear-gradient(135deg, rgba(70, 56, 42, 0.96), rgba(18, 17, 15, 0.94));
}

.rising9-section .product-card.graphite {
  right: 30px;
  bottom: 30px;
  width: min(58%, 340px);
  min-height: 188px;
  padding: 24px 26px 22px;
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(29, 27, 25, 0.22);
}

.rising9-section .product-card.graphite p {
  max-width: 260px;
  line-height: 1.55;
}

.product-card.graphite strong,
.product-card.graphite p,
.product-card.graphite span {
  color: var(--white);
}

.product-card.graphite p,
.product-card.graphite span {
  opacity: 0.72;
}

.brand-copy {
  display: grid;
  gap: 24px;
}

.brand-copy h2 {
  max-width: 780px;
  font-size: clamp(2.25rem, 4.3vw, 4.8rem);
  line-height: 1.12;
  text-wrap: balance;
}

/* ── Brand Showcase: premium editorial typography ── */

.brand-showcase-opener {
  display: grid;
  gap: clamp(12px, 1.6vw, 18px);
  max-width: 600px;
  margin-bottom: clamp(32px, 4.5vw, 48px);
}

.brand-showcase-panel {
  display: grid;
  gap: 0;
  max-width: 100%;
}

.brand-panel-divider {
  display: none;
}

.brand-tagline-en {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", "Noto Serif KR", serif;
  font-size: clamp(1.25rem, 1.8vw, 1.625rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.brand-showcase-story {
  display: grid;
  gap: clamp(12px, 1.5vw, 18px);
  max-width: 640px;
  margin-top: clamp(40px, 4.8vw, 56px);
}

.brand-showcase-story .brand-name-kr {
  margin: clamp(4px, 0.6vw, 8px) 0 0;
}

.brand-showcase-story .brand-intro {
  margin-top: clamp(10px, 1.2vw, 14px);
}

.brand-showcase-story .button-row {
  margin-top: clamp(20px, 2.4vw, 28px);
  padding-top: 0;
}

.brand-keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: clamp(16px, 2vw, 20px) 0 0;
  padding: 0;
  list-style: none;
}

.brand-keyword-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid rgba(42, 38, 34, 0.1);
  border-radius: 999px;
  color: #5c5c56;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.brand-logo-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 clamp(40px, 5vw, 56px);
}

.brand-logo-header .brand-logo-mark {
  display: block;
  width: auto;
  height: auto;
}

.brand-logo-header .elnoir-logo {
  max-width: min(168px, 40vw);
}

.brand-logo-header .rising9-logo {
  max-width: min(136px, 34vw);
}

.brand-message-kr {
  margin: 0;
  max-width: 600px;
  color: #6e6e68;
  font-family: "Noto Serif KR", "Cormorant Garamond", serif;
  font-size: clamp(0.9375rem, 1.05vw, 1.0625rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.brand-intro {
  display: grid;
  gap: clamp(12px, 1.4vw, 16px);
  max-width: 640px;
}

.brand-intro p {
  margin: 0;
  color: #52524c;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.78;
  letter-spacing: -0.01em;
}

.brand-intro strong {
  font-weight: 600;
  color: inherit;
}

.brand-showcase-header {
  display: grid;
  max-width: 820px;
  gap: clamp(14px, 2vw, 20px);
}

.brand-showcase-title {
  display: grid;
  gap: clamp(10px, 1.4vw, 14px);
  max-width: 720px;
  margin: 0;
}

.brand-showcase-message {
  margin: 0;
  color: #5c5c56;
  font-family: "Noto Serif KR", "Cormorant Garamond", serif;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.brand-name-kr {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Serif KR", "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4.2vw, 3.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.02em;
}

.brand-name-en {
  display: block;
  margin-top: 0.2em;
  color: #8a8478;
  font-family: "Cormorant Garamond", "Noto Serif KR", serif;
  font-size: clamp(0.9rem, 1.05vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: 0.32em;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand-header-logo {
  margin: clamp(4px, 0.6vw, 8px) 0 0;
}

.brand-header-logo .brand-logo-mark {
  display: block;
  width: auto;
  height: auto;
}

.brand-header-logo .elnoir-logo {
  max-width: min(168px, 42vw);
}

.brand-header-logo .rising9-logo {
  max-width: min(140px, 38vw);
}

.elnoir-section .brand-tagline,
.rising9-section .brand-tagline {
  margin: 0;
  color: #64645e;
  font-family: "Cormorant Garamond", "Noto Serif KR", serif;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.55;
  letter-spacing: 0.06em;
}

.brand-categories {
  margin: 0;
  color: #6e6e68;
  font-family: "Inter", "Noto Sans KR", system-ui, sans-serif;
  font-size: clamp(0.75rem, 0.85vw, 0.8125rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.elnoir-section .cta-button,
.rising9-section .cta-button {
  min-width: 172px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 380ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 380ms cubic-bezier(0.22, 1, 0.36, 1),
    color 380ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.elnoir-section .cta-button:hover,
.elnoir-section .cta-button:focus-visible,
.rising9-section .cta-button:hover,
.rising9-section .cta-button:focus-visible {
  box-shadow: 0 14px 36px rgba(17, 17, 19, 0.12);
  transform: translateY(-2px);
}

.elnoir-section .cta-button span,
.rising9-section .cta-button span {
  width: 20px;
  height: 20px;
  font-size: 0.8rem;
}

.elnoir-editorial,
.rising9-editorial {
  display: grid;
  gap: 0;
}

.elnoir-header,
.rising9-header {
  display: grid;
  max-width: 820px;
  gap: clamp(16px, 2.2vw, 22px);
}

.elnoir-lifestyle-strip,
.rising9-lifestyle-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 14px);
  margin-top: 0;
}

.brand-hero-banner,
.elnoir-hero-banner,
.rising9-hero-banner {
  width: 100%;
  margin: 0;
}

.brand-hero-banner-frame,
.elnoir-hero-banner-frame {
  position: relative;
  width: 100%;
  height: clamp(420px, 42vw, 520px);
  overflow: hidden;
  border-radius: 24px;
  background: #f7f2ea;
  box-shadow:
    0 24px 64px rgba(42, 38, 34, 0.08),
    0 8px 24px rgba(42, 38, 34, 0.05);
}

.brand-hero-banner-image,
.elnoir-hero-banner-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.elnoir-hero-banner .brand-hero-banner-image {
  object-position: center 45%;
}

.rising9-hero-banner .brand-hero-banner-image {
  object-position: center 50%;
}

.elnoir-body-copy,
.rising9-body-copy {
  display: grid;
  gap: 20px;
  max-width: 580px;
}

.elnoir-body-copy p,
.rising9-body-copy p {
  max-width: 580px;
  margin: 0;
  color: #52524c;
  font-size: clamp(1.05rem, 1.1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.01em;
}

.elnoir-body-copy p strong {
  font-weight: 600;
  color: inherit;
}

.elnoir-section .button-row,
.rising9-section .button-row {
  gap: 14px;
  margin-top: clamp(4px, 0.8vw, 8px);
  padding-top: 0;
}

.rising9-strip-visual.bedroom {
  background-image: url("assets/rising9-space-bedroom-card.jpg");
  background-position: center 44%;
}

.rising9-strip-visual.living-room {
  background-image: url("assets/rising9-space-living-card.jpg");
  background-position: center 40%;
}

.rising9-strip-visual.kitchen {
  background-image: url("assets/rising9-space-kitchen-card.jpg");
  background-position: center 38%;
}

.rising9-strip-visual.home-living {
  background-image: url("assets/rising9-space-homeliving-card.jpg");
  background-position: center 40%;
}

.rising9-strip-visual.daily-living {
  background-image: url("assets/rising9-space-bedroom-card.jpg");
  background-position: center 42%;
}

.rising9-strip-visual.home-care {
  background-image: url("assets/rising9-space-homeliving-card.jpg");
  background-position: center 36%;
}

.brand-copy p {
  max-width: 650px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.product-tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 22px rgba(71, 52, 34, 0.05);
  font-size: 0.9rem;
  font-weight: 800;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.cta-button {
  display: inline-flex;
  min-width: 164px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 850;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), background-color 240ms var(--ease), color 240ms var(--ease), border-color 240ms var(--ease);
}

.cta-button span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  font-size: 0.9rem;
  transition: transform 240ms var(--ease);
}

.cta-button:hover,
.cta-button:focus-visible {
  box-shadow: none;
  transform: translateY(-2px);
}

.cta-button:hover span,
.cta-button:focus-visible span {
  transform: translate(2px, -2px);
}

.cta-button.primary,
.cta-button.dark {
  color: var(--white);
  background: var(--black);
}

.cta-button.primary span,
.cta-button.dark span {
  color: var(--black);
  background: var(--white);
}

.cta-button.secondary {
  color: var(--black);
  border-color: rgba(17, 17, 19, 0.22);
  background: rgba(255, 255, 255, 0.86);
}

.cta-button.secondary span {
  background: rgba(17, 17, 19, 0.06);
}

.cta-button.secondary:hover,
.cta-button.secondary:focus-visible {
  border-color: rgba(17, 17, 19, 0.42);
  background: var(--white);
}

.marketing-section {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(217, 138, 75, 0.20), transparent 30%),
    linear-gradient(135deg, #2b1f17 0%, #0f0c0a 100%);
}

.proposal-section {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 7vw, 112px) 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(217, 138, 75, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbf7f1 100%);
}

.proposal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.proposal-copy {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 22px;
}

.proposal-copy h2 {
  font-size: clamp(2.7rem, 4.8vw, 5.2rem);
  white-space: nowrap;
}

.proposal-copy p {
  color: var(--ink);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 800;
}

.proposal-contact {
  display: grid;
  gap: 10px;
  padding-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.proposal-contact a {
  color: var(--ink);
}

.proposal-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px) saturate(130%);
}

.form-row {
  display: grid;
  gap: 9px;
}

.form-row.full,
.form-submit {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: 0;
  background: rgba(248, 244, 238, 0.68);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease), background-color 220ms var(--ease);
}

.form-row input {
  min-height: 54px;
  padding: 0 16px;
}

.form-row textarea {
  min-height: 160px;
  padding: 16px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(217, 138, 75, 0.58);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(217, 138, 75, 0.12);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  cursor: pointer;
}

.marketing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(52px, 8vw, 112px);
  align-items: center;
}

.marketing-section h2,
.marketing-section .eyebrow,
.marketing-section .brand-category {
  color: var(--white);
}

.marketing-section h2 {
  text-wrap: balance;
}

.marketing-section p {
  max-width: 700px;
  margin: 30px 0 34px;
  color: rgba(255, 255, 255, 0.70);
}

.contact-note {
  margin-top: 18px;
  font-size: 0.98rem;
}

.contact-note a,
.footer-inner a {
  color: inherit;
  font-weight: 800;
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-list span {
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.90);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-size: clamp(1rem, 1.8vw, 1.24rem);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.site-footer {
  padding: clamp(56px, 6vw, 72px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0%, rgba(217, 138, 75, 0.12), transparent 32%),
    linear-gradient(180deg, #0f0e0d 0%, #08080a 100%);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 3vw, 32px);
}

.footer-company {
  color: rgba(255, 255, 255, 0.92);
  font-family: "Cormorant Garamond", "Noto Serif KR", serif;
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.footer-inner a {
  color: rgba(255, 255, 255, 0.72);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1100px) {
  .hero-intro,
  .brand-card-grid,
  .brand-layout,
  .brand-layout.reverse,
  .marketing-layout,
  .proposal-layout {
    grid-template-columns: 1fr;
  }

  .brand-intro-card {
    min-height: 560px;
  }

  .proposal-copy {
    position: static;
  }

  .brand-layout.reverse .brand-visual,
  .brand-layout.reverse .brand-copy {
    order: initial;
  }

}

@media (max-width: 860px) {
  .site-header {
    top: 14px;
    width: min(calc(100% - 28px), 1040px);
    align-items: flex-start;
    border-radius: 26px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .brand-badge {
    order: 3;
    width: 100%;
    justify-content: center;
    margin: 4px 0 0;
  }

  .section-inner {
    width: min(calc(100% - 36px), var(--content));
  }

  .section-panel,
  .brand-section,
  .marketing-section,
  .proposal-section {
    padding: 72px 0;
  }

  .section-about {
    padding-top: 98px;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    min-height: 520px;
    margin-top: 20px;
    transform: none;
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brands-heading h2 {
    font-size: clamp(2.7rem, 9vw, 5rem);
  }

  .brand-intro-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .brand-card-visual {
    min-height: 320px;
  }

  .brand-visual,
  .grid-surface {
    min-height: 460px;
  }

  .product-mood {
    grid-template-columns: 1fr;
    inset: 24px 24px auto 24px;
    max-width: 260px;
  }

  .rising9-showcase {
    min-height: 620px;
    padding: 22px 20px 20px;
    gap: 16px;
  }

  .rising9-category-card {
    min-height: 132px;
  }

  .product-mood article {
    min-height: 96px;
  }

  .rising9-category-card {
    min-height: 96px;
  }

  .product-mood article:nth-child(2),
  .product-mood article:nth-child(3) {
    transform: none;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-copy {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  p {
    word-break: normal;
  }

  h1 {
    font-size: clamp(3.15rem, 17vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .site-header {
    padding: 9px;
  }

  .brand-mark span:last-child {
    display: none;
  }

  .brand-badge {
    gap: 6px;
    padding: 7px 10px;
    font-size: 0.72rem;
  }

  .brand-badge span {
    display: none;
  }

  .brand-badge strong {
    font-size: 0.78rem;
  }

  .nav-links a {
    padding: 9px 9px;
    font-size: 0.77rem;
  }

  .section-panel,
  .brand-section,
  .marketing-section,
  .proposal-section {
    padding: clamp(56px, 12vw, 72px) 0;
  }

  .section-inner {
    width: min(calc(100% - 28px), var(--content));
  }

  .brands-showcase {
    gap: 34px;
  }

  .brands-heading {
    gap: 18px;
  }

  .brands-heading h2 {
    font-size: clamp(2.35rem, 12vw, 3.8rem);
    letter-spacing: -0.055em;
  }

  .brands-lead p {
    font-size: 1rem;
    line-height: 1.76;
  }

  .brand-intro-card {
    border-radius: 24px;
  }

  .brand-card-visual {
    min-height: 260px;
    margin: 12px;
    border-radius: 20px;
  }

  .brand-card-copy {
    padding: 24px;
  }

  .brand-card-copy h3 {
    font-size: clamp(1.75rem, 8vw, 2.55rem);
  }

  .brand-card-tags span {
    min-height: 32px;
    font-size: 0.78rem;
  }

  .hero-showcase {
    padding: 24px;
    border-radius: 22px;
  }

  .showcase-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .showcase-content {
    padding: 74px 0 26px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .visual-stage {
    inset: 0 0 90px 0;
    border-radius: 28px;
  }

  .visual-product.box {
    left: 8%;
    top: 11%;
    width: 44%;
    height: 30%;
  }

  .visual-product.bottle {
    left: 8%;
    bottom: 25%;
    width: 44%;
    height: 29%;
  }

  .visual-product.pump {
    right: 8%;
    bottom: 25%;
    width: 34%;
    height: 29%;
  }

  .visual-card {
    width: calc(50% - 6px);
    padding: 18px;
    border-radius: 20px;
  }

  .hero-copy,
  .hero-card,
  .work-area {
    padding: 24px;
    border-radius: 22px;
  }

  .hero-card,
  .hero-copy {
    min-height: 260px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-grid article {
    min-height: 150px;
  }

  .brand-visual,
  .grid-surface {
    min-height: 390px;
  }

  .elnoir-section .brand-visual {
    min-height: 620px;
  }

  .rising9-section .brand-visual {
    min-height: 620px;
  }

  .rising9-showcase {
    min-height: 600px;
    padding: 18px 16px 16px;
  }

  .rising9-category-grid {
    gap: 10px;
  }

  .rising9-category-card {
    min-height: 116px;
    border-radius: 16px;
  }

  .rising9-brand-panel {
    padding: 18px 16px 14px;
    border-radius: 18px;
  }

  .grid-surface {
    grid-template-columns: 1fr;
  }

  .grid-surface span {
    grid-column: auto !important;
    min-height: 140px;
  }

  .product-card {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 24px;
  }

  .button-row,
  .cta-button {
    width: 100%;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .brand-hero-banner-frame,
  .elnoir-hero-banner-frame {
    height: clamp(280px, 68vw, 420px);
    border-radius: 20px;
  }

  .brand-hero-banner-image,
  .elnoir-hero-banner-image {
    object-position: center 40%;
  }

  .rising9-hero-banner .brand-hero-banner-image {
    object-position: center 46%;
  }

  .elnoir-lifestyle-strip,
  .rising9-lifestyle-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .elnoir-strip-card,
  .rising9-strip-card {
    min-height: 180px;
  }

  .elnoir-header .brand-showcase-message,
  .brand-message-kr {
    font-size: clamp(1.05rem, 4.8vw, 1.22rem);
  }

  .brand-tagline-en {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
  }

  .brand-logo-header {
    margin: 0 0 clamp(32px, 6vw, 40px);
  }

  .brand-showcase-panel {
    padding: 0;
  }

  .brand-showcase-opener {
    margin-bottom: clamp(24px, 5vw, 32px);
  }

  .brand-showcase-story {
    margin-top: clamp(28px, 6vw, 36px);
  }

  .our-brands-grid {
    grid-template-columns: 1fr;
  }

  .brand-name-kr {
    font-size: clamp(2.1rem, 9vw, 2.85rem);
  }

  .brand-header-logo .elnoir-logo {
    max-width: 148px;
  }

  .brand-header-logo .rising9-logo {
    max-width: 120px;
  }
}

/* ── Redesign: Hero, About, Our Brands, Partnership, Contact ── */

.intro-band {
  background:
    radial-gradient(circle at 8% 12%, rgba(232, 237, 228, 0.45), transparent 38%),
    radial-gradient(circle at 94% 8%, rgba(245, 239, 230, 0.55), transparent 34%),
    linear-gradient(180deg, #fefcf8 0%, #faf6f0 52%, #f5efe6 100%);
}

.hero-section {
  padding: clamp(104px, 9vw, 132px) 0 clamp(56px, 6vw, 80px);
  background: transparent;
}

.hero-inner {
  display: grid;
  gap: 0;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(40px, 5.5vw, 72px);
  align-items: center;
}

.hero-content {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  max-width: 480px;
}

.hero-eyebrow {
  margin: 0;
  color: rgba(17, 17, 19, 0.48);
  font-size: clamp(0.875rem, 0.95vw, 0.9375rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.hero-corporate-logo-wrap {
  display: block;
  margin: 0;
  width: fit-content;
}

.hero-corporate-logo {
  display: block;
  width: auto;
  max-width: min(280px, 72vw);
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.hero-wordmark {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", "Noto Serif KR", serif;
  font-size: clamp(1.125rem, 1.35vw, 1.375rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-title {
  display: grid;
  gap: 0.06em;
  max-width: 7em;
  margin: 0;
  font-family: "Noto Serif KR", "Cormorant Garamond", serif;
  font-size: clamp(2.25rem, 4.2vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero-title span {
  display: block;
  color: var(--ink);
}

.hero-lead {
  display: grid;
  gap: 0;
  max-width: 480px;
}

.hero-lead p {
  margin: 0;
  color: #5a5a54;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.82;
  letter-spacing: -0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(8px, 1vw, 12px);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    background-color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-cta--primary {
  border: 1px solid var(--ink);
  color: #ffffff;
  background: var(--ink);
}

.hero-cta--primary:hover,
.hero-cta--primary:focus-visible {
  border-color: #2a2622;
  background: #2a2622;
  transform: translateY(-1px);
}

.hero-cta--secondary {
  border: 1px solid rgba(42, 38, 34, 0.14);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
}

.hero-cta--secondary:hover,
.hero-cta--secondary:focus-visible {
  border-color: rgba(42, 38, 34, 0.24);
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

.hero-logo {
  margin: 0;
}

.hero-logo .rising9-logo {
  display: block;
  width: auto;
  max-width: min(128px, 32vw);
  height: auto;
}

.hero-brand-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(4px, 0.8vw, 8px);
}

.hero-brand-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(42, 38, 34, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  font-family: "Cormorant Garamond", "Noto Serif KR", serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-brand-pill:hover,
.hero-brand-pill:focus-visible {
  border-color: rgba(42, 38, 34, 0.22);
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

.hero-visual {
  margin: 0;
}

.hero-visual-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(400px, 44vw, 540px);
  border-radius: 2px;
  background-color: #ede6dc;
  box-shadow: none;
}

.hero-visual-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-visual-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250, 247, 242, 0.04) 0%, rgba(250, 247, 242, 0.01) 100%);
  content: "";
  pointer-events: none;
}

.hero-editorial-copy {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
  max-width: 600px;
  padding: 0;
}

.hero-eyebrow {
  margin: 0;
  color: rgba(17, 17, 19, 0.44);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-brand-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
  margin-top: clamp(48px, 5.5vw, 64px);
  padding: clamp(28px, 3.2vw, 36px) 0 0;
  border-top: 1px solid rgba(42, 38, 34, 0.08);
}

.hero-brand-entry {
  display: grid;
  gap: 0;
  color: inherit;
  text-decoration: none;
  transition: opacity 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-brand-entry:hover,
.hero-brand-entry:focus-visible {
  opacity: 0.72;
}

.hero-brand-entry-name {
  color: var(--ink);
  font-family: "Cormorant Garamond", "Noto Serif KR", serif;
  font-size: clamp(1.2rem, 1.4vw, 1.375rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-brand-entry-categories {
  margin-top: clamp(10px, 1.2vw, 12px);
  color: #72726c;
  font-family: "Inter", "Noto Sans KR", system-ui, sans-serif;
  font-size: clamp(0.625rem, 0.72vw, 0.6875rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-reveal[data-hero-order="1"] { transition-delay: 60ms; }
.hero-reveal[data-hero-order="2"] { transition-delay: 140ms; }
.hero-reveal[data-hero-order="3"] { transition-delay: 240ms; }
.hero-reveal[data-hero-order="4"] { transition-delay: 340ms; }
.hero-reveal[data-hero-order="5"] { transition-delay: 460ms; }

@media (prefers-reduced-motion: reduce) {
  .hero-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.hero-gallery-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  min-height: clamp(380px, 42vw, 520px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(84, 68, 48, 0.10);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}

.hero-gallery-panel:hover,
.hero-gallery-panel:focus-visible {
  box-shadow: 0 32px 90px rgba(84, 68, 48, 0.14);
  transform: translateY(-4px);
}

.hero-gallery-image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.02);
  transition: transform 520ms var(--ease);
}

.hero-gallery-panel:hover .hero-gallery-image {
  transform: scale(1.06);
}

.hero-gallery-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(28, 26, 22, 0.62) 0%, rgba(28, 26, 22, 0.08) 52%, transparent 100%);
  content: "";
}

.hero-gallery-elnoir .hero-gallery-image {
  background-image: url("assets/elnoir-product-inner-beauty-card.jpg");
  background-position: center 38%;
}

.hero-gallery-rising9 .hero-gallery-image {
  background-image: url("assets/rising9-space-living-card.jpg");
  background-position: center 42%;
}

.hero-gallery-caption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: clamp(24px, 3vw, 36px);
  color: #fff;
}

.hero-gallery-brand {
  font-family: "Cormorant Garamond", "Noto Serif KR", serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.hero-gallery-caption p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-gallery-cta {
  width: fit-content;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-section {
  padding: 0 0 clamp(88px, 9vw, 120px);
  background: transparent;
  border-top: 1px solid rgba(42, 38, 34, 0.06);
}

.about-inner {
  display: grid;
  gap: clamp(20px, 2.4vw, 28px);
  max-width: 480px;
  padding-top: clamp(56px, 7vw, 80px);
}

.about-eyebrow {
  margin: 0;
}

.about-copy {
  display: grid;
  gap: clamp(14px, 1.6vw, 18px);
  max-width: 480px;
}

.about-copy p {
  margin: 0;
  color: #5a5a54;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.82;
  letter-spacing: -0.01em;
}

.about-gap {
  margin-top: 14px;
}

.about-values span {
  color: var(--ink);
  font-weight: 600;
}

.partnership-section {
  min-height: auto;
  overflow: visible;
  padding-top: clamp(120px, 12vw, 180px);
  padding-bottom: clamp(160px, 14vw, 220px);
  background:
    radial-gradient(circle at 18% 24%, rgba(237, 224, 201, 0.22), transparent 30%),
    linear-gradient(180deg, #f8f5ef 0%, #ffffff 100%);
}

.partnership-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.partnership-copy {
  display: grid;
  gap: 18px;
  max-width: 640px;
}

.partnership-copy h2 {
  font-family: "Noto Serif KR", "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.032em;
  text-wrap: balance;
}

.partnership-copy p {
  color: #666660;
  line-height: 1.88;
}

.partnership-actions {
  display: grid;
  gap: 24px;
  align-self: center;
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
}

.partnership-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partnership-list li {
  display: flex;
  min-height: 56px;
  align-items: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.partnership-actions .cta-button {
  width: 100%;
  margin-top: 0;
}

.our-brands-section {
  padding-top: clamp(88px, 9vw, 112px);
  padding-bottom: clamp(64px, 7vw, 88px);
  background: #ffffff;
  background:
    radial-gradient(circle at 50% 0%, rgba(237, 224, 201, 0.14), transparent 42%),
    linear-gradient(180deg, #fcf9f4 0%, #ffffff 100%);
}

.our-brands-header {
  display: grid;
  gap: clamp(10px, 1.2vw, 14px);
  margin-bottom: clamp(32px, 4vw, 48px);
}

.our-brands-title {
  margin: 0;
  font-family: "Noto Serif KR", "Cormorant Garamond", serif;
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.our-brands-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 28px);
  max-width: 100%;
}

.our-brand-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(42, 38, 34, 0.07);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(84, 68, 48, 0.04);
  transition:
    transform 480ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.our-brand-card-head {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(120px, 14vw, 160px);
  padding: clamp(24px, 3vw, 32px);
}

.our-brand-card--elnoir .our-brand-card-head {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.5), transparent 50%),
    linear-gradient(145deg, #e8ede4 0%, #f4f2ec 55%, #ebe6dc 100%);
}

.our-brand-card--rising9 .our-brand-card-head {
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.45), transparent 50%),
    linear-gradient(145deg, #f5efe6 0%, #faf6f0 55%, #ede4d6 100%);
}

.our-brand-card-logo {
  display: block;
  width: auto;
  max-width: min(140px, 42vw);
  height: auto;
  object-fit: contain;
}

.our-brand-card--rising9 .our-brand-card-logo {
  max-width: min(72px, 20vw);
}

.our-brand-card:hover,
.our-brand-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(84, 68, 48, 0.06);
}

.our-brand-card-body {
  display: grid;
  gap: clamp(10px, 1.2vw, 14px);
  padding: clamp(24px, 2.8vw, 32px);
  border-top: 1px solid rgba(42, 38, 34, 0.05);
}

.our-brand-card-category {
  margin: 0;
  color: rgba(17, 17, 19, 0.46);
  font-family: "Cormorant Garamond", "Noto Serif KR", serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.our-brand-card-name {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", "Noto Serif KR", serif;
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.our-brand-card-tagline {
  margin: 0;
  max-width: 280px;
  color: #5c5c56;
  font-size: clamp(0.875rem, 0.95vw, 0.9375rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

.our-brand-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: clamp(6px, 0.8vw, 10px);
}

.our-brand-card-more {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: clamp(4px, 0.6vw, 8px);
  padding-top: clamp(12px, 1.4vw, 16px);
  border-top: 1px solid rgba(42, 38, 34, 0.06);
  color: rgba(17, 17, 19, 0.52);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 240ms var(--ease);
}

.our-brand-card-more:hover,
.our-brand-card-more:focus-visible {
  color: var(--ink);
}

.our-brand-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 0;
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: opacity 240ms var(--ease);
}

.our-brand-card-link:hover,
.our-brand-card-link:focus-visible {
  opacity: 0.62;
}

.contact-section {
  position: relative;
  z-index: 1;
  min-height: auto;
  overflow: visible;
  background:
    radial-gradient(circle at 84% 16%, rgba(217, 138, 75, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbf7f1 100%);
}

.contact-layout {
  display: grid;
  gap: clamp(40px, 5vw, 56px);
}

.contact-header {
  display: grid;
  gap: clamp(18px, 2.2vw, 24px);
  max-width: 640px;
}

.contact-header h2 {
  display: grid;
  gap: 0.1em;
  margin: 0;
  max-width: 13em;
  font-family: "Noto Serif KR", "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.contact-header h2 span {
  display: block;
}

.contact-body {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}

.contact-lead {
  display: grid;
  gap: clamp(10px, 1.2vw, 14px);
  max-width: 480px;
}

.contact-lead p {
  margin: 0;
  color: #5c5c56;
  font-size: clamp(1rem, 1.05vw, 1.0625rem);
  line-height: 1.82;
  letter-spacing: -0.01em;
}

.company-info-card {
  display: grid;
  gap: 20px;
  height: 100%;
  margin: 0;
  padding: clamp(28px, 3.2vw, 36px);
  border: 1px solid rgba(237, 230, 220, 0.8);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 12px 40px rgba(84, 68, 48, 0.05);
}

.company-info-group,
.company-info-item {
  display: grid;
  gap: 8px;
}

.company-info-divider {
  height: 1px;
  background: rgba(42, 38, 34, 0.08);
}

.company-info-group dt,
.company-info-item dt {
  margin: 0;
  color: rgba(17, 17, 19, 0.44);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.company-info-name {
  display: block;
  color: var(--ink);
  font-family: "Noto Serif KR", "Cormorant Garamond", serif;
  font-size: clamp(1.125rem, 1.2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.company-info-desc {
  display: block;
  margin-top: 4px;
  color: #6e6e68;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0;
}

.company-info-brands {
  display: grid;
  gap: 14px;
  margin: 0;
}

.company-brand-entry {
  display: grid;
  gap: 3px;
}

.company-brand-name {
  color: var(--ink);
  font-family: "Cormorant Garamond", "Inter", serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.company-brand-desc {
  color: #6e6e68;
  font-size: 0.8125rem;
  line-height: 1.5;
  letter-spacing: 0;
}

.company-info-group dd {
  margin: 0;
}

.company-info-item dd {
  margin: 0;
  color: #52524c;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

.company-info-item dd a {
  color: var(--ink);
  font-weight: 500;
  transition: color 240ms var(--ease);
}

.company-info-item dd a:hover,
.company-info-item dd a:focus-visible {
  color: rgba(17, 17, 19, 0.62);
}

.contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  height: 100%;
  margin-top: 0;
  padding: clamp(28px, 3.2vw, 36px);
  border: 1px solid rgba(237, 230, 220, 0.8);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 12px 40px rgba(84, 68, 48, 0.05);
}

.contact-form .form-row label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.contact-form .form-row input,
.contact-form .form-row textarea {
  border-color: rgba(237, 230, 220, 0.9);
  background: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.contact-form .form-submit {
  margin-top: 4px;
}

@media (max-width: 1100px) {
  .hero-gallery,
  .contact-body,
  .rising9-lifestyle-strip {
    grid-template-columns: 1fr;
  }

  .hero-gallery-panel {
    min-height: 320px;
  }

  .rising9-lifestyle-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: clamp(36px, 7vw, 48px);
  }

  .hero-content,
  .about-inner,
  .about-copy {
    max-width: none;
  }

  .hero-visual-frame {
    height: clamp(300px, 56vw, 420px);
    border-radius: 2px;
  }

  .hero-visual-image {
    object-position: center 40%;
  }
}

@media (max-width: 860px) {
  .hero-section {
    padding: 96px 0 clamp(48px, 7vw, 64px);
  }

  .hero-content {
    gap: 16px;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .hero-lead p,
  .about-copy p {
    font-size: 0.9375rem;
    line-height: 1.72;
  }

  .about-inner {
    padding-top: clamp(48px, 8vw, 64px);
  }

  .our-brands-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}
