/* ── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:      #F1DEDD;
  --pink:       #c9807c;
  --pink-lt:    #daa8a5;
  --pink-pale:  #f9f0ef;
  --pink-dark:  #a85e5a;
  --white:      #ffffff;
  --off-white:  #fdfafa;
  --bg:         #ffffff;
  --border:     #ede5e4;
  --text:       #2b2020;
  --text-mid:   #5c4848;
  --text-muted: #9e8888;
  --dark:       #1c1414;
  --serif:  'Cormorant Garamond', 'Noto Serif KR', serif;
  --sans:   'Montserrat', 'Noto Sans KR', sans-serif;
  --ko:     'Noto Sans KR', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--ko);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.nav-logo {
  text-decoration: none;
  font-family: 'Batang', 'Noto Serif KR', 'Times New Roman', serif;
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.75; }
.nav.scrolled .nav-logo { color: var(--text); }

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 52px;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  padding: 16px 52px;
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  font-size: 18px;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.nav:not(.scrolled) .nav-logo { color: var(--white); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.nav.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover,
.nav.scrolled .nav-links a:hover { color: var(--pink); }

.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav-menu-btn span {
  display: block;
  width: 24px; height: 1px;
  background: var(--white);
  transition: background 0.3s, transform 0.3s;
}
.nav.scrolled .nav-menu-btn span { background: var(--text); }

.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: #111;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
}
.hero-video-wrap iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 100vh;
  min-width: 100vw;
  min-height: 56.25vw;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,20,24,0.2) 0%,
    rgba(30,20,24,0.1) 50%,
    rgba(30,20,24,0.5) 100%
  );
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.section-label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}

.about {
  padding: 120px 0;
  background: var(--white);
}
.about-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-title {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 32px;
}
.about-title em {
  font-style: italic;
  color: var(--pink);
}
.about-body p {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.about-sign {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px !important;
  color: var(--pink) !important;
  margin-top: 8px !important;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 8px;
}
.feature-card {
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
  border-color: #F1DEDD;
  box-shadow: 0 4px 20px rgba(241,222,221,0.5);
}
.feature-icon {
  font-size: 14px;
  color: var(--pink);
  margin-bottom: 12px;
}
.feature-card h3 {
  font-family: var(--ko);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
}

.portfolio {
  padding: 100px 0 0;
  background: var(--off-white);
}
.portfolio-header {
  max-width: 1160px;
  margin: 0 auto 56px;
  padding: 0 52px;
}
.portfolio-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
}
.portfolio-title em { font-style: italic; color: var(--pink); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--border);
}
.pf-item {
  position: relative;
  cursor: pointer;
  background: var(--white);
  overflow: hidden;
}
.pf-thumb {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #e8e0e3;
}
.pf-thumb img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.pf-item:hover .pf-thumb img { transform: scale(1.05); }
.pf-overlay {
  position: absolute;
  inset: 0;
  background: rgba(241,222,221,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.pf-item:hover .pf-overlay { opacity: 1; }
.pf-play {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 20px rgba(232,116,138,0.3);
}
.pf-play:hover { transform: scale(1.12); background: var(--white); }
.pf-play svg { width: 18px; height: 18px; fill: var(--pink); margin-left: 3px; }
.pf-play { box-shadow: 0 4px 20px rgba(241,222,221,0.6); }
.pf-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--pink);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 1px;
}

.products {
  padding: 120px 0;
  background: var(--white);
}
.products-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 52px;
}
.products-header {
  margin-bottom: 64px;
  max-width: 760px;
}
.products-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 32px;
}
.products-title em { font-style: italic; color: var(--pink); }
.products-intro {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.products-intro strong { font-weight: 500; color: var(--text); }

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.product-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
  background: var(--white);
}
.product-card.main-product {
  border-color: var(--brand);
  background: linear-gradient(135deg, #fff 60%, #F1DEDD40 100%);
  position: relative;
  overflow: hidden;
}
.product-card.main-product::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle at top right, #F1DEDD, transparent 70%);
  pointer-events: none;
  opacity: 0.5;
}
.product-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid var(--pink-lt);
  padding: 4px 10px;
  border-radius: 1px;
  margin-bottom: 16px;
}
.product-name {
  font-family: 'Noto Serif KR', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 20px;
}
.product-price-wrap {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.price-row { margin-bottom: 6px; }
.price-main {
  font-family: 'Noto Serif KR', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
}
.price-main small { font-size: 18px; vertical-align: baseline; }
.price-sale-note {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
}
.price-sale-note strong { color: var(--pink); font-weight: 500; }

.product-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.product-includes li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.inc-dot {
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  margin-top: 6px;
  flex-shrink: 0;
}
.product-includes strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}
.product-includes em {
  font-style: normal;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
}
.product-cta {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--pink);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.product-cta:hover { background: var(--pink-dark); transform: translateY(-1px); }

.product-cta-outline {
  background: transparent;
  color: var(--pink);
  border: 1px solid var(--pink);
}
.product-cta-outline:hover {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}

.side-col .product-tag {
  font-family: var(--ko);
  text-transform: none;
  letter-spacing: 0.12em;
  font-size: 10px;
  align-self: flex-start;
  width: auto;
}
.product-cta-row {
  display: flex;
  justify-content: center;
  margin: 0 0 32px;
}
.product-cta-single {
  display: inline-block;
  width: auto;
  min-width: 280px;
  padding: 18px 48px;
  font-size: 14px;
}
.side-card-full {
  margin-bottom: 24px;
}
.side-card-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.side-col {
  display: flex;
  flex-direction: column;
}

.options-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
}
.options-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.opt-name {
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.opt-name small {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
}
.opt-price {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--pink);
  white-space: nowrap;
}
.card-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}
.discount-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.discount-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.disc-name {
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.disc-name small {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
}
.disc-val {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--pink-dark);
  white-space: nowrap;
}
.disc-note {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
}
.disc-note strong { color: var(--text); font-weight: 500; }

.info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.info-card {
  padding: 32px 28px;
  background: #F1DEDD30;
  border-radius: 4px;
  border: 1px solid #F1DEDD;
}
.info-icon { font-size: 20px; margin-bottom: 12px; }
.info-card h4 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--dark);
  margin-bottom: 14px;
}
.info-card p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.info-card ol, .info-card ul {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.info-card li {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
}
.info-card strong { font-weight: 500; color: var(--text); }
.info-note {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
}

.contact {
  padding: 120px 52px;
  background: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.contact::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241,222,221,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.contact-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.contact .section-label { color: var(--pink); }
.contact-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 24px;
}
.contact-title em { font-style: italic; color: var(--pink); }
.contact-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 52px;
}
.contact-channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.ch-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 16px;
  text-decoration: none;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(201,128,124,0.06);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.ch-btn:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 28px rgba(241,222,221,0.6);
  transform: translateY(-4px);
}
.ch-text { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.ch-text strong { font-family: var(--sans); font-size: 12px; font-weight: 500; color: var(--text); }
.ch-text small { font-size: 10px; font-weight: 300; color: var(--text-muted); letter-spacing: 0.05em; }

.footer {
  background: #130e11;
  padding: 32px 52px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-logo-img:hover { opacity: 1; }
.footer-copy {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--pink-lt); }
.footer-biz {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.2);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,6,8,0.96);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.modal.active { opacity: 1; pointer-events: all; }
.modal-close {
  position: absolute;
  top: 28px; right: 36px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
  z-index: 201;
}
.modal-close:hover { color: var(--pink-lt); }
.modal-inner {
  width: min(92vw, 1200px);
  aspect-ratio: 16/9;
}
.modal-inner iframe { width: 100%; height: 100%; }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 960px) {
  .nav { padding: 18px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 99;
  }
  .nav-links.open a { font-size: 14px; color: var(--text); }
  .nav-links.open a:hover { color: var(--pink); }
  .nav-menu-btn { display: flex; }

  .about-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .about { padding: 80px 0; }

  .portfolio-header { padding: 0 24px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }

  .products-inner { padding: 0 24px; }
  .products-grid { grid-template-columns: 1fr; }
  .side-card-columns { grid-template-columns: 1fr; }
  .info-row { grid-template-columns: 1fr; }

  .contact { padding: 80px 24px; }
  .contact-channels { grid-template-columns: repeat(2, 1fr); }

  .footer { padding: 24px; }
  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .contact-channels { grid-template-columns: 1fr 1fr; }
}
