/* ================================================
   SPACE K — Design System
   Your Space. Your Rules.
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --black:      #0A0A0A;
  --dark:       #141414;
  --dark2:      #1C1C1C;
  --white:      #FFFFFF;
  --cream:      #F5F0E8;
  --gold:       #C9A86C;
  --gold-bright:#E8C96A;
  --grey:       #888888;
  --light-grey: #BBBBBB;
  --border-d:   rgba(255,255,255,0.08);
  --border-l:   rgba(0,0,0,0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ---- TYPOGRAPHY ---- */
.display {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 14vw, 200px);
  line-height: .88;
  letter-spacing: .02em;
}
.h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 120px);
  line-height: .92;
  letter-spacing: .02em;
}
.h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: .03em;
}
.h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

/* ---- BUTTONS ---- */
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px;
  background: var(--white); color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  transition: background .2s, color .2s;
}
.btn-white:hover { background: var(--gold); }

.btn-outline-w {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 35px;
  background: transparent; color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.35);
  transition: border-color .2s, background .2s;
}
.btn-outline-w:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px;
  background: var(--gold); color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  transition: background .2s;
}
.btn-gold:hover { background: var(--gold-bright); }

.btn-black {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px;
  background: var(--black); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  transition: background .2s;
}
.btn-black:hover { background: var(--dark2); }

/* ---- NAV ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .3s, border-color .3s;
}
#navbar.scrolled {
  background: rgba(10,10,10,.95);
  border-bottom: 1px solid var(--border-d);
  backdrop-filter: blur(16px);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: .12em;
  color: var(--white);
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--light-grey);
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-line {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 18px;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  transition: background .2s !important;
}
.nav-line:hover { background: var(--gold); color: var(--black) !important; }
.line-icon { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }

/* ---- HERO ---- */
.hero {
  height: 100vh;
  min-height: 680px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,.9) 0%, rgba(10,10,10,.5) 60%, rgba(10,10,10,.2) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto;
  padding: 0 48px 88px;
  width: 100%;
}
.hero-kr {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: .5em;
  color: var(--gold); margin-bottom: 16px;
  opacity: .8;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 12vw, 168px);
  line-height: .88;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 44px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-rule-num {
  position: absolute;
  bottom: 80px; right: 48px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 160px;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
}

/* ---- TICKER ---- */
.ticker-strip {
  background: var(--gold);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  animation: ticker 24s linear infinite;
}
.ticker-inner span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; letter-spacing: .2em;
  color: var(--black);
  padding: 0 36px;
}
.ticker-inner span.sep { color: rgba(0,0,0,0.35); }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- CONTAINER ---- */
.container { max-width: 1400px; margin: 0 auto; padding: 0 48px; }
.section-pad { padding: 100px 0; }
.section-pad-lg { padding: 140px 0; }

/* ---- SECTION HEADER ---- */
.sec-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-d);
}
.sec-header.light { border-bottom-color: var(--border-l); }
.sec-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: .35em;
  color: var(--gold); margin-bottom: 8px;
}

/* ---- PRODUCT GRID (collection-style) ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.product-grid.four { grid-template-columns: repeat(4, 1fr); }

.prod-card {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  cursor: pointer;
  aspect-ratio: 3/4;
}
.prod-card.wide { aspect-ratio: 16/9; }
.prod-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.prod-card:hover img { transform: scale(1.06); }
.prod-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.88) 0%, rgba(10,10,10,.1) 50%, transparent 100%);
  transition: opacity .3s;
}
.prod-card:hover .prod-card-overlay { opacity: .7; }
.prod-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 28px 32px;
}
.prod-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: .35em;
  color: var(--gold); margin-bottom: 6px;
}
.prod-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px; line-height: 1;
  color: var(--white); margin-bottom: 4px;
}
.prod-card-cat {
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.prod-card-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 600;
  color: var(--gold); margin-top: 8px;
}

/* ---- MANIFESTO ---- */
.manifesto-block {
  background: var(--dark);
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.manifesto-bg-text {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(100px, 20vw, 280px);
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: .05em;
}
.manifesto-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 68px);
  line-height: 1.1;
  color: var(--white);
  max-width: 1000px;
  margin: 0 auto 32px;
  position: relative;
}
.manifesto-quote em { color: var(--gold); font-style: normal; }
.manifesto-sub {
  font-size: 16px;
  color: var(--grey);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- SPLIT SECTION ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split-img { aspect-ratio: 1/1; overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-content {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-content.dark { background: var(--dark); }
.split-content.black { background: var(--black); }
.split-content.light { background: var(--cream); }

/* ---- PROCESS ---- */
.process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.process-card {
  background: var(--dark2);
  padding: 56px 48px 60px;
  border-top: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.process-bg-num {
  position: absolute;
  top: -20px; right: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}
.process-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px; letter-spacing: .04em;
  color: var(--white); margin-bottom: 16px;
}
.process-desc {
  font-size: 14px; color: var(--grey); line-height: 1.75;
}

/* ---- BRAND STATEMENT ---- */
.brand-statement {
  background: var(--white);
  color: var(--black);
  padding: 100px 48px;
}
.brand-statement-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 60px;
}
.brand-statement-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 88px);
  line-height: .92;
  max-width: 680px;
}
.brand-statement-title em { color: var(--gold); font-style: normal; border-bottom: 3px solid var(--gold); }

/* ---- CTA FULL ---- */
.cta-full {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.cta-full-bg { position: absolute; inset: 0; }
.cta-full-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-full-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.78);
}
.cta-full-content {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto;
  padding: 80px 48px;
  width: 100%;
}
.cta-full-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 100px);
  line-height: .92;
  color: var(--white);
  margin-bottom: 28px;
}
.cta-full-title em { color: var(--gold); font-style: normal; }

/* ---- BORDER CARD ---- */
.border-card {
  border: 1px solid var(--border-d);
  padding: 40px;
}

/* ---- LINE BTN ---- */
.line-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  transition: background .2s, color .2s;
}
.line-btn:hover { background: var(--gold); color: var(--black); }

/* ---- FOOTER ---- */
footer {
  background: #060606;
  border-top: 1px solid var(--border-d);
  padding: 80px 48px 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-d);
  margin-bottom: 36px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; letter-spacing: .1em;
  color: var(--white); margin-bottom: 14px;
}
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 13px; color: var(--grey); line-height: 1.65; max-width: 240px; }
.footer-col-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: .32em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 18px;
}
.footer-nav-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-nav-links a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-nav-links a:hover { color: var(--white); }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.85; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; color: var(--grey); }

/* ---- COLLECTION PAGE ---- */
.page-hero {
  height: 50vh; min-height: 360px;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  margin-top: 68px;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.9) 0%, rgba(10,10,10,.3) 70%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto;
  padding: 0 48px 52px; width: 100%;
}

/* ---- PRODUCT DETAIL ---- */
.product-hero-sk {
  width: 100%; height: 80vh; min-height: 520px;
  position: relative; overflow: hidden; margin-top: 68px;
}
.product-hero-sk img { width: 100%; height: 100%; object-fit: cover; }
.product-hero-sk-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.75) 0%, transparent 55%);
}
.product-hero-sk-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  max-width: 1400px; margin: 0 auto; padding: 0 48px 52px;
}
.product-body-sk {
  max-width: 1400px; margin: 0 auto;
  padding: 80px 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: start;
}
.product-story-sk p {
  font-size: 16px; color: var(--light-grey); line-height: 1.85; margin-bottom: 20px;
}
.product-aside-sk { position: sticky; top: 90px; }
.product-price-block-sk {
  border: 1px solid var(--border-d);
  padding: 40px;
  background: var(--dark);
  margin-bottom: 28px;
}
.product-price-label-sk {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 10px;
}
.product-price-sk {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px; color: var(--gold); margin-bottom: 6px;
}
.product-price-note-sk { font-size: 12px; color: var(--grey); }
.spec-list-sk { list-style: none; margin: 28px 0; }
.spec-list-sk li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 0; border-bottom: 1px solid var(--border-d); font-size: 13px;
}
.spec-list-sk li:first-child { border-top: 1px solid var(--border-d); }
.spec-key-sk { color: var(--grey); }
.spec-val-sk { font-weight: 500; color: var(--white); text-align: right; }

/* ---- GALLERY ---- */
.product-gallery-sk { max-width:1400px; margin:0 auto; padding:0 48px 120px; }
.gallery-main-row-sk { display:grid; grid-template-columns:3fr 2fr; gap:2px; margin-bottom:2px; }
.gallery-main-row-sk img { width:100%; height:560px; object-fit:cover; display:block; }
.gallery-strip-sk { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.gallery-strip-sk img { width:100%; height:340px; object-fit:cover; display:block; }

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 68px);
}
.contact-left {
  background: var(--dark);
  padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-right {
  background: var(--black);
  padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.form-group { margin-bottom: 24px; }
.form-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--grey); display: block; margin-bottom: 10px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: transparent;
  border: none; border-bottom: 1px solid var(--border-d);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 12px 0;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-bottom-color: var(--gold);
}
.form-textarea { resize: none; height: 100px; }
.form-select option { background: var(--dark); color: var(--white); }

/* ---- MOBILE ---- */
@media(max-width:1024px) {
  .split { grid-template-columns: 1fr; }
  .split-img { aspect-ratio: 16/9; }
  .split-content { padding: 60px 48px; }
  .process-row { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .product-body-sk { grid-template-columns: 1fr; gap: 48px; padding: 48px 24px; }
  .product-aside-sk { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media(max-width:768px) {
  #navbar { padding: 0 24px; }
  .hero-content { padding: 0 24px 60px; }
  .container { padding: 0 24px; }
  .manifesto-block { padding: 80px 24px; }
  .brand-statement { padding: 60px 24px; }
  .brand-statement-inner { flex-direction: column; }
  .cta-full-content { padding: 60px 24px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .process-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  footer { padding: 60px 24px 32px; }
  .process-card { padding: 40px 28px 48px; }
  .page-hero-content { padding: 0 24px 40px; }
  .product-gallery-sk { padding: 0 24px 80px; }
  .gallery-main-row-sk { grid-template-columns: 1fr; }
  .gallery-main-row-sk img { height: 280px; }
  .gallery-strip-sk { grid-template-columns: 1fr 1fr; }
  .gallery-strip-sk img { height: 220px; }
  .contact-left, .contact-right { padding: 60px 24px; }
}
@media(max-width:480px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(60px, 18vw, 80px); }
}
