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

:root {
  --navy: #0F1D33;
  --navy-2: #1B2A4A;
  --navy-3: #2C3E5A;
  --orange: #F47920;
  --orange-2: #FF9244;
  --orange-dark: #D4631A;
  --ink: #1A1D24;
  --paper: #FAF8F4;
  --paper-2: #F4F1EA;
  --line: #E6E2D9;
  --line-2: #D5CFC2;
  --muted: #6E6A60;
  --muted-2: #4A4740;
  --white: #FFFFFF;

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px rgba(15,29,51,0.06), 0 1px 3px rgba(15,29,51,0.08);
  --shadow-md: 0 4px 12px rgba(15,29,51,0.08), 0 2px 6px rgba(15,29,51,0.06);
  --shadow-lg: 0 24px 60px -20px rgba(15,29,51,0.25);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(250,248,244,0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(250,248,244,0.96);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
/* ===== LOGO ===== */
.logo {
  display: inline-flex;
  align-items: center;
  height: 30px;
  line-height: 1;
}
.logo img {
  height: 100%;
  width: auto;
  display: block;
}
.footer .logo img {
  height: 32px;
}
.mobile-nav .logo img {
  height: 28px;
}

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-2);
  border-radius: var(--radius-sm);
  transition: color .2s var(--ease), background .2s var(--ease);
  position: relative;
}
.nav a:hover { color: var(--navy); }
.nav a.active { color: var(--navy); font-weight: 600; }
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.header-right { display: flex; align-items: center; gap: 16px; }
.lang-group { display: flex; gap: 0; border: 1px solid var(--line-2); border-radius: 8px; overflow: hidden; }
.lang-group button {
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.3px;
  transition: all .2s var(--ease);
}
.lang-group button + button { border-left: 1px solid var(--line-2); }
.lang-group button.active { background: var(--navy); color: var(--paper); }
.lang-group button:hover:not(.active) { background: var(--paper-2); color: var(--ink); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  background: var(--navy);
  color: var(--paper);
  border-radius: 8px;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.header-cta:hover { background: var(--navy-2); transform: translateY(-1px); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: var(--ease) .3s;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--paper);
  z-index: 99;
  padding: 32px;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 16px;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

/* ===== HERO ===== */
.hero {
  margin-top: 76px;
  padding: 80px 0 0;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: end;
  padding-bottom: 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--orange);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -2px;
  color: var(--navy);
  margin-bottom: 28px;
}
.hero h1 .accent {
  font-style: italic;
  font-weight: 500;
  color: var(--orange);
}
.hero h1 .accent::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
  margin-left: 6px;
  vertical-align: middle;
  transform: translateY(-8px);
}
.hero-lead {
  font-size: 18px;
  color: var(--muted-2);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 26px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(244,121,32,0.5); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--paper); }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-white { color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* Hero collage */
.hero-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 180px 140px;
  gap: 14px;
  position: relative;
}
.hero-collage .tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--paper-2);
}
.hero-collage .tile img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  z-index: 1;
}
.hero-collage .tile-1 { grid-row: 1 / 3; grid-column: 1; background: linear-gradient(135deg, #E8D9C4 0%, #C9B89A 100%); }
.hero-collage .tile-2 { grid-row: 1; grid-column: 2; background: linear-gradient(135deg, var(--navy-2), var(--navy)); color: var(--paper); padding: 24px; display: flex; flex-direction: column; justify-content: space-between; }
.hero-collage .tile-3 { grid-row: 2 / 4; grid-column: 2; background: linear-gradient(135deg, #D1C4B0 0%, #B0A088 100%); }
.hero-collage .tile-4 { grid-row: 3; grid-column: 1; background: var(--orange); color: var(--white); padding: 20px; display: flex; align-items: center; }

.tile-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(255,255,255,0.06) 8px, rgba(255,255,255,0.06) 16px);
}
.tile-stat .num { font-family: var(--serif); font-size: 56px; font-weight: 600; line-height: 1; color: var(--orange-2); letter-spacing: -2px; }
.tile-stat .lbl { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.tile-quote { font-family: var(--serif); font-size: 17px; font-weight: 500; line-height: 1.3; font-style: italic; }

/* Stats strip */
.stats-strip {
  background: var(--navy);
  color: var(--paper);
}
.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 36px;
  padding-bottom: 36px;
  gap: 0;
}
.strip-item {
  padding: 0 28px;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.strip-item:first-child { border-left: none; padding-left: 0; }
.strip-item .n {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--orange-2);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}
.strip-item .n sup { font-size: 18px; vertical-align: super; margin-left: 2px; color: var(--orange); }
.strip-item .l {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.3px;
}

/* ===== CLIENTS MARQUEE ===== */
.clients {
  padding: 60px 0 64px;
  background: var(--paper);
  overflow: hidden;
}
.clients-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 32px;
}
.marquee {
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: scroll-x 38s linear infinite;
  align-items: center;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.brand-chip {
  display: inline-flex;
  align-items: center;
  height: 56px;
  padding: 0 28px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.5px;
  white-space: nowrap;
  border-left: 1px solid var(--line);
  transition: color .2s var(--ease);
}
.brand-chip:first-child { border-left: none; }
.brand-chip:hover { color: var(--navy); }
.brand-chip.sans { font-family: var(--sans); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 14px; }
.brand-chip.italic { font-style: italic; }

/* ===== SECTION COMMON ===== */
.section { padding: 120px 0; }
.section-paper { background: var(--paper); }
.section-paper-2 { background: var(--paper-2); }
.section-navy { background: var(--navy); color: var(--paper); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 64px;
  align-items: end;
}
.section-head.center { grid-template-columns: 1fr; text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head.center .section-desc { margin-top: 16px; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--orange);
}
.section-head.center .section-eyebrow { justify-content: center; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--navy);
}
.section-navy .section-title { color: var(--paper); }
.section-title em { font-style: italic; color: var(--orange); font-weight: 500; }
.section-desc {
  font-size: 17px;
  color: var(--muted-2);
  line-height: 1.6;
  max-width: 480px;
}
.section-navy .section-desc { color: rgba(255,255,255,0.7); }

/* ===== BENTO PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .2s var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange); }

.product-card .img-wrap {
  flex: 1;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.product-card .img-wrap::before {
  /* no background — let the card's white show through transparent areas */
  display: none;
}
.product-card img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 12px;
  position: relative;
  z-index: 1;
}
.product-card img[src=""], .product-card img:not([src]) { display: none; }

.product-body {
  padding: 22px;
  background: var(--white);
}
.product-body h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}
.product-body .sub {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.product-meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--muted);
}
.product-meta span { display: inline-flex; align-items: center; gap: 4px; }
.product-meta strong { color: var(--navy); font-weight: 700; font-size: 13px; }

/* Bento layout */
.card-jacket { grid-column: span 3; grid-row: span 2; }
.card-jacket .img-wrap { aspect-ratio: auto; }
.card-dress { grid-column: span 3; grid-row: span 2; }
.card-blouse { grid-column: span 2; }
.card-coat { grid-column: span 2; }
.card-pants { grid-column: span 2; }
.card-handmade { grid-column: span 3; }
.card-cta { grid-column: span 3; background: var(--navy); color: var(--paper); padding: 36px; display: flex; flex-direction: column; justify-content: space-between; border: none; }
.card-cta:hover { background: var(--navy-2); transform: translateY(-4px); }
.card-cta h3 { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--paper); letter-spacing: -0.5px; line-height: 1.2; }
.card-cta p { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 8px; }
.card-cta .arrow { font-size: 32px; color: var(--orange); align-self: flex-end; }

/* Smaller bento cards: single row layout */
.card-blouse .product-body, .card-coat .product-body, .card-pants .product-body {
  border-top: none;
  background: transparent;
}
.card-blouse, .card-coat, .card-pants, .card-handmade {
  flex-direction: row;
  align-items: stretch;
}
.card-blouse .img-wrap, .card-coat .img-wrap, .card-pants .img-wrap, .card-handmade .img-wrap {
  width: 45%;
  flex: none;
}
.card-blouse .product-body, .card-coat .product-body, .card-pants .product-body, .card-handmade .product-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: none;
}
.card-handmade .img-wrap {
  width: 38%;
}

/* ===== WHY US — big-number cards ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-card {
  padding: 48px 32px;
  border-left: 1px solid var(--line);
  transition: background .25s var(--ease);
}
.why-card:first-child { border-left: none; }
.why-card:hover { background: var(--paper); }
.why-card .big {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.why-card .big sup { font-size: 24px; color: var(--orange); font-weight: 500; }
.why-card .big small { font-size: 22px; color: var(--muted); font-weight: 500; }
.why-card .tag {
  font-size: 11px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 18px;
}
.why-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin: 6px 0 10px;
  letter-spacing: -0.5px;
}
.why-card p {
  font-size: 14px;
  color: var(--muted-2);
  line-height: 1.55;
}

/* ===== PROCESS TIMELINE ===== */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.process-step {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  align-items: center;
  transition: padding .3s var(--ease);
  cursor: pointer;
}
.process-step:last-child { border-bottom: 1px solid var(--line); }
.process-step:hover { padding-left: 16px; }
.process-step:hover .step-num { color: var(--orange); }
.step-num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 600;
  color: var(--line-2);
  line-height: 1;
  letter-spacing: -2px;
  transition: color .25s var(--ease);
}
.step-body h4 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.step-body p { font-size: 14px; color: var(--muted-2); max-width: 540px; }
.step-meta { text-align: right; font-size: 13px; color: var(--muted); }
.step-meta strong { display: block; font-size: 18px; color: var(--navy); font-weight: 700; }

/* ===== CERTIFICATIONS ===== */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cert-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all .25s var(--ease);
}
.cert-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(244,121,32,0.5); transform: translateY(-3px); }
.cert-badge {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  display: grid; place-items: center;
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.1;
}
.cert-card h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.cert-card .org { font-size: 12px; color: var(--orange-2); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin-bottom: 14px; }
.cert-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.55; }

/* ===== CASE STUDIES ===== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .25s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.case-card:hover { border-color: var(--navy); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.case-quote {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
  letter-spacing: -0.3px;
  flex: 1;
}
.case-quote::before {
  content: '"';
  display: block;
  font-size: 56px;
  line-height: 0.7;
  color: var(--orange);
  margin-bottom: 12px;
  height: 28px;
}
.case-stats {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.case-stats > div { flex: 1; }
.case-stats .v { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--orange); letter-spacing: -0.5px; }
.case-stats .k { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.case-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.case-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--paper-2), var(--line-2));
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--navy);
}
.case-meta .who { font-size: 14px; font-weight: 600; color: var(--navy); }
.case-meta .role { font-size: 12px; color: var(--muted); }

/* ===== CTA ===== */
.cta-wrap {
  background: var(--navy);
  color: var(--paper);
  border-radius: 0;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-wrap::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,121,32,0.25) 0%, transparent 70%);
  top: -200px; right: -150px;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-left h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--paper);
  margin-bottom: 24px;
}
.cta-left h2 em { font-style: italic; color: var(--orange); font-weight: 500; }
.cta-left p { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 460px; line-height: 1.6; }

/* Quick form */
.quick-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.quick-form h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.quick-form .ftxt { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 22px; }
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
  font-weight: 600;
}
.field input, .field select {
  width: 100%;
  padding: 13px 14px;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: var(--paper);
  font-family: inherit;
  font-size: 14px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(0,0,0,0.3);
}
.field input::placeholder { color: rgba(255,255,255,0.35); }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M3 5l3 3 3-3' stroke='%23F47920' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quick-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.quick-form .micro { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 12px; text-align: center; }

/* ===== FOOTER ===== */
.footer {
  background: #0A1426;
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}
.footer-brand .logo { color: var(--paper); margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 320px; margin-bottom: 22px; }
.social { display: flex; gap: 10px; }
.social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid; place-items: center;
  transition: all .2s var(--ease);
}
.social a:hover { background: var(--orange); border-color: var(--orange); }
.social svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.6); }
.social a:hover svg { fill: var(--white); }

.footer h4 {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 22px;
  letter-spacing: -0.2px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul li a, .footer-info p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color .2s var(--ease);
  line-height: 1.65;
}
.footer ul li a:hover { color: var(--orange); }
.footer-info .label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--orange); margin: 16px 0 4px; font-weight: 600; }
.footer-info .label:first-child { margin-top: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom .legal { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--paper); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  * { transition: none !important; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-collage { grid-template-rows: 180px 140px 120px; }
  .stats-strip .container { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .strip-item { padding: 0 16px; }
  .strip-item:nth-child(3) { border-left: none; padding-left: 0; }
  .products-grid { grid-template-columns: repeat(4, 1fr); }
  .card-jacket, .card-dress, .card-cta { grid-column: span 2; }
  .card-blouse, .card-coat, .card-pants { grid-column: span 2; }
  .card-handmade { grid-column: span 4; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card { border-left: none; border-top: 1px solid var(--line); }
  .why-card:nth-child(2) { border-left: 1px solid var(--line); }
  .why-card:nth-child(-n+2) { border-top: none; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .nav { display: none; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .hero { padding-top: 56px; }
  .hero .container { padding-bottom: 56px; }
  .hero h1 { font-size: 44px; letter-spacing: -1.5px; }
  .hero-lead { font-size: 16px; }
  .hero-collage { grid-template-rows: 140px 110px 90px; gap: 10px; }
  .tile-stat .num { font-size: 38px; }
  .lang-group, .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  .section { padding: 72px 0; }
  .stats-strip .container { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .card-jacket, .card-dress, .card-blouse, .card-coat, .card-pants, .card-handmade, .card-cta { grid-column: span 1; grid-row: auto; }
  .card-blouse, .card-coat, .card-pants { flex-direction: column; }
  .card-blouse .img-wrap, .card-coat .img-wrap, .card-pants .img-wrap { width: 100%; height: 200px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-left: none !important; border-top: 1px solid var(--line); }
  .why-card:first-child { border-top: none; }
  .certs-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 60px 1fr; gap: 16px; padding: 24px 0; }
  .step-num { font-size: 36px; }
  .step-body h4 { font-size: 20px; }
  .step-meta { grid-column: 1 / -1; text-align: left; margin-top: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  margin-top: 76px;
  padding: 80px 0 60px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--navy);
  margin-bottom: 14px;
}
.page-hero h1 em { font-style: italic; color: var(--orange); font-weight: 500; }
.page-hero p.lead {
  font-size: 17px;
  color: var(--muted-2);
  max-width: 560px;
  line-height: 1.65;
}
.page-hero .breadcrumb {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hero .breadcrumb a { color: var(--muted); transition: color .2s var(--ease); }
.page-hero .breadcrumb a:hover { color: var(--orange); }
.page-hero .breadcrumb .sep { color: var(--line-2); }
.page-hero .breadcrumb .cur { color: var(--orange); }
.page-hero-art {
  display: flex;
  align-items: end;
  gap: 12px;
  min-width: 280px;
}
.page-hero-art .blob {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--orange-2), var(--orange-dark));
  width: 90px;
  height: 90px;
  opacity: 0.9;
}
.page-hero-art .blob.alt { background: linear-gradient(135deg, var(--navy-2), var(--navy)); height: 130px; }
.page-hero-art .blob.tall { height: 180px; background: linear-gradient(135deg, #E8D9C4 0%, #C9B89A 100%); }

@media (max-width: 720px) {
  .page-hero { padding: 56px 0 40px; }
  .page-hero .container { grid-template-columns: 1fr; }
  .page-hero-art { display: none; }
}

/* ===== Generic content blocks for inner pages ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .25s var(--ease);
}
.feature-card:hover { border-color: var(--orange); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.feature-card .ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(244,121,32,0.1);
  display: grid; place-items: center;
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--orange);
}
.feature-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.feature-card p { font-size: 14px; color: var(--muted-2); line-height: 1.65; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col-text h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.15;
}
.two-col-text h2 em { font-style: italic; color: var(--orange); font-weight: 500; }
.two-col-text p {
  font-size: 16px;
  color: var(--muted-2);
  line-height: 1.75;
  margin-bottom: 16px;
}
.two-col-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  background: linear-gradient(135deg, var(--paper-2), var(--line));
}
.two-col-img::before {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.025) 10px, rgba(0,0,0,0.025) 20px);
}
.two-col-img img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.two-col.reverse .two-col-text { order: 2; }

@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse .two-col-text { order: 0; }
  .two-col-img { aspect-ratio: 16/10; }
}
@media (max-width: 720px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ===== Gallery grid ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  grid-auto-rows: 220px;
}
.g-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--paper-2), var(--line));
  cursor: pointer;
  transition: transform .3s var(--ease);
}
.g-item:hover { transform: scale(0.985); }
.g-item:hover .g-overlay { opacity: 1; }
.g-item.wide { grid-column: span 2; }
.g-item.tall { grid-row: span 2; }
.g-item::before {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.025) 10px, rgba(0,0,0,0.025) 20px);
}
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; position: relative; z-index: 1; }
.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,29,51,0.85), transparent 60%);
  display: flex;
  align-items: end;
  padding: 18px;
  color: var(--paper);
  opacity: 0;
  transition: opacity .25s var(--ease);
  z-index: 2;
}
.g-overlay .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--orange-2); margin-bottom: 4px; font-weight: 600; }
.g-overlay .ttl { font-family: var(--serif); font-size: 18px; font-weight: 600; }

@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .g-item.wide { grid-column: span 1; } }
@media (max-width: 720px) { .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; } .g-item.tall { grid-row: span 1; } }

/* ===== Contact form full ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 18px;
}
.contact-info-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-info-card h3::before {
  content: '';
  width: 4px;
  height: 22px;
  background: var(--orange);
  border-radius: 2px;
}
.contact-info-card .row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.contact-info-card .row:first-of-type { border-top: none; }
.contact-info-card .row .k { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 1.2px; font-weight: 600; padding-top: 2px; }
.contact-info-card .row .v { color: var(--ink); line-height: 1.55; }

.full-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.full-form h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.full-form .ftxt { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.full-form .field input,
.full-form .field select,
.full-form .field textarea {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
}
.full-form .field input::placeholder,
.full-form .field textarea::placeholder { color: var(--muted); }
.full-form .field input:focus,
.full-form .field select:focus,
.full-form .field textarea:focus {
  border-color: var(--orange);
  background: var(--white);
}
.full-form .field label { color: var(--muted-2); }
.full-form .field textarea {
  width: 100%;
  min-height: 120px;
  padding: 13px 14px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  resize: vertical;
}
.full-form .field select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M3 5l3 3 3-3' stroke='%23F47920' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.full-form .btn { width: 100%; justify-content: center; margin-top: 8px; }

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

/* ===== Map placeholder ===== */
.map-block {
  background: linear-gradient(135deg, var(--paper-2), var(--line));
  border-radius: var(--radius-lg);
  height: 320px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-block::before {
  content: 'MAP · ' attr(data-loc);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  background-image:
    linear-gradient(rgba(15,29,51,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,29,51,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(244,121,32,0.2), 0 0 0 12px rgba(244,121,32,0.1);
  transform: translate(-50%, -50%);
  z-index: 2;
}


/* ===== LOOKBOOK GRID (clean product showcase) ===== */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.lookbook-grid .g-item {
  aspect-ratio: 3 / 4;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .3s var(--ease), border-color .2s var(--ease);
}
.lookbook-grid .g-item:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
}
.lookbook-grid .g-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--paper);
}
.lookbook-grid .g-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  display: block;
  position: relative;
  z-index: 1;
}
.lookbook-grid .g-item .g-overlay {
  z-index: 2;
}
@media (max-width: 1024px) {
  .lookbook-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .lookbook-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ===== INTERACTIVE FLOOR PLAN ===== */
.layout-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
}
.layout-stage {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.layout-img {
  width: 100%;
  height: auto;
  display: block;
}
.layout-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #E63946;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(230,57,70,0.25), 0 6px 16px rgba(230,57,70,0.4);
  transform: translate(-50%, -50%);
  transition: left .55s cubic-bezier(0.4, 0, 0.2, 1), top .55s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
  pointer-events: none;
}
.layout-pin::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid #E63946;
  opacity: 0.4;
  animation: pin-pulse 2.2s ease-out infinite;
}
@keyframes pin-pulse {
  0%   { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2.4); opacity: 0; }
}
.zone-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.zone-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: all .22s var(--ease);
  width: 100%;
}
.zone-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.zone-card.active {
  background: var(--navy);
  border-color: var(--navy);
}
.zone-card.active .zone-title { color: var(--paper); }
.zone-card.active .zone-desc { color: rgba(255,255,255,0.65); }
.zone-card.active .zone-key {
  background: #E63946;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(230,57,70,0.3);
}
.zone-key {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--paper-2);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
  transition: all .22s var(--ease);
}
.zone-card:hover .zone-key {
  background: var(--orange);
  color: var(--white);
}
.zone-body { min-width: 0; }
.zone-title { font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: -0.2px; }
.zone-desc { font-size: 11px; color: var(--muted); margin-top: 2px; line-height: 1.4; }
@media (max-width: 1024px) {
  .zone-grid { grid-template-columns: repeat(2, 1fr); }
  .layout-card { padding: 20px; }
}
@media (max-width: 720px) {
  .zone-grid { grid-template-columns: 1fr; }
}


/* ===== COMPANY PROFILE DOWNLOAD ===== */
.profile-download {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.pdf-info {
  display: flex;
  align-items: center;
  gap: 18px;
}
.pdf-icon {
  width: 56px;
  height: 64px;
  background: linear-gradient(135deg, #E63946 0%, #C42939 100%);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: white;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 8px 16px -6px rgba(230,57,70,0.4);
}
.pdf-icon::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 12px 12px 0;
  border-color: transparent rgba(255,255,255,0.25) transparent transparent;
}
.pdf-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}
.pdf-meta {
  font-size: 13px;
  color: var(--muted);
}
.pdf-langs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.pdf-btn {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: all .2s var(--ease);
  cursor: pointer;
}
.pdf-btn:hover {
  border-color: var(--orange);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.pdf-btn .lang-code {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 13px;
  color: var(--orange);
  background: rgba(244,121,32,0.1);
  padding: 4px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.pdf-btn .lang-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.pdf-btn .dl-arrow {
  font-size: 16px;
  color: var(--muted);
  transition: transform .2s var(--ease);
}
.pdf-btn:hover .dl-arrow {
  color: var(--orange);
  transform: translateY(2px);
}
@media (max-width: 1024px) {
  .profile-download { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
}
@media (max-width: 480px) {
  .pdf-langs { grid-template-columns: 1fr; }
}


/* ===== FLOOR PLAN INTERACTIVE ===== */
.floorplan-wrap {
  position: relative;
  background: #f8f8f8;
  border-radius: var(--radius);
  overflow: hidden;
}
.floorplan-img {
  width: 100%; height: auto; display: block;
}
.fp-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25), 0 0 0 4px rgba(244,121,32,0.18);
  cursor: pointer;
  transition: all .2s var(--ease);
  z-index: 2;
  display: grid;
  place-items: center;
  line-height: 1;
}
.fp-marker:hover, .fp-marker.active, .fp-marker.selected {
  transform: translate(-50%, -50%) scale(1.18);
  background: var(--navy);
  box-shadow: 0 4px 14px rgba(15,29,51,0.4), 0 0 0 6px rgba(244,121,32,0.3);
}
.fp-marker.selected {
  background: var(--navy);
  border-color: var(--orange);
}

.zone-legend {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.zone-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.zone-card:hover, .zone-card.active, .zone-card.selected {
  border-color: var(--orange);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.zone-card.selected {
  background: var(--navy);
}
.zone-card.selected .zone-name { color: var(--paper); }
.zone-card.selected .zone-desc { color: rgba(255,255,255,0.7); }
.zone-card.selected .zone-badge {
  background: var(--orange);
  color: var(--white);
}
.zone-badge {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--line-2);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  flex-shrink: 0;
  transition: all .2s var(--ease);
}
.zone-card:hover .zone-badge, .zone-card.active .zone-badge {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.zone-name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.2px;
  margin-bottom: 2px;
}
.zone-desc {
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .zone-legend { grid-template-columns: repeat(2, 1fr); }
  .fp-marker { width: 28px; height: 28px; font-size: 13px; border-width: 2px; }
}
@media (max-width: 480px) {
  .zone-legend { grid-template-columns: 1fr; }
}


/* ===== SCREEN GALLERY (MES page) ===== */
.screen-feature {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 32px;
  align-items: center;
}
.screen-feature-img {
  border-radius: var(--radius);
  overflow: hidden;
  background: #f0f0f0;
  border: 1px solid var(--line);
}
.screen-feature-img img {
  width: 100%; height: auto; display: block;
}
.screen-feature-tag {
  font-size: 11px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 14px;
}
.screen-feature-body h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.screen-feature-body p {
  font-size: 15px;
  color: var(--muted-2);
  line-height: 1.65;
  margin-bottom: 20px;
}
.screen-feature-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin: 0;
}
.screen-feature-list li {
  font-size: 13px;
  color: var(--muted-2);
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}
.screen-feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 12px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.screen-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s var(--ease);
  cursor: pointer;
}
.screen-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.screen-img {
  aspect-ratio: 16 / 10;
  background: #f0f0f0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.screen-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .35s var(--ease);
}
.screen-card:hover .screen-img img {
  transform: scale(1.04);
}
.screen-info {
  padding: 16px 18px;
}
.screen-info .screen-tag {
  font-size: 10px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 4px;
}
.screen-info h4 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}
.screen-info p {
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .screen-feature { grid-template-columns: 1fr; gap: 24px; }
  .screen-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .screen-grid { grid-template-columns: 1fr; }
  .screen-feature-body h3 { font-size: 22px; }
}


/* ===== GOOGLE MAP EMBED ===== */
.map-embed {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 320px;
}
.map-embed .map-link {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all .2s var(--ease);
}
.map-embed .map-link:hover {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
}


/* ===== LOOKBOOK CATEGORY TABS ===== */
.lookbook-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.lookbook-tabs button {
  padding: 10px 20px;
  border: 1px solid var(--line-2);
  background: var(--white);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-2);
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.lookbook-tabs button:hover { border-color: var(--orange); color: var(--navy); }
.lookbook-tabs button.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--paper);
}
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.lookbook-grid .g-item {
  aspect-ratio: 3/4;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.lookbook-grid .g-item:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.lookbook-grid .g-item img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 10px;
  display: block;
}
.lookbook-grid .g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,29,51,0.78), transparent 55%);
  opacity: 0;
  transition: opacity .25s var(--ease);
  display: flex; align-items: flex-end;
  padding: 14px;
  color: var(--paper);
}
.lookbook-grid .g-item:hover .g-overlay { opacity: 1; }
.lookbook-grid .g-overlay .lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--orange-2); font-weight: 700; margin-bottom: 2px; }
.lookbook-grid .g-overlay .ttl { font-family: var(--serif); font-size: 14px; font-weight: 600; line-height: 1.2; }


/* ===== PRODUCTION FLOW (3-step arrows) ===== */
.prod-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.prod-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px 36px 100px;
  transition: all .25s var(--ease);
}
.prod-step:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.prod-step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 22px solid var(--orange);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  z-index: 2;
}
.prod-num {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 6px 14px -4px rgba(244,121,32,0.4);
}
.prod-body h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}
.prod-body p {
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.6;
}

/* ===== INSPECTION GRID (4 cards with side accent) ===== */
.insp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.insp-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all .25s var(--ease);
}
.insp-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--insp-color, var(--orange));
}
.insp-card:hover {
  border-color: var(--insp-color, var(--orange));
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.insp-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--insp-color);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px -3px color-mix(in srgb, var(--insp-color) 50%, transparent);
}
.insp-card h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}
.insp-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.insp-card ul li {
  font-size: 13px;
  color: var(--muted-2);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.insp-card ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--insp-color);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .prod-flow { grid-template-columns: 1fr; gap: 28px; }
  .prod-step:not(:last-child)::after {
    right: 50%;
    top: auto;
    bottom: -22px;
    transform: translateX(50%);
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-top: 22px solid var(--orange);
    border-bottom: none;
  }
  .insp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .insp-grid { grid-template-columns: 1fr; }
  .prod-step { padding-left: 80px; }
  .prod-num { width: 44px; height: 44px; font-size: 22px; left: 20px; }
}


/* ===== QC BANNER (inline strip) ===== */
.qc-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, var(--white) 0%, var(--paper) 100%);
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  max-width: 980px;
  margin: 0 auto;
}
.qc-banner-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(244,121,32,0.12);
  display: grid; place-items: center;
  font-size: 30px;
  flex-shrink: 0;
}
.qc-banner-eyebrow {
  font-size: 11px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 6px;
}
.qc-banner h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.qc-banner p {
  font-size: 15px;
  color: var(--muted-2);
  line-height: 1.65;
}
@media (max-width: 720px) {
  .qc-banner { grid-template-columns: 1fr; gap: 18px; padding: 28px; }
  .qc-banner h3 { font-size: 22px; }
}


/* ===== TRUST GRID (transparency section) ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all .25s var(--ease);
}
.trust-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.trust-ico {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(244,121,32,0.15), rgba(244,121,32,0.06));
  display: grid; place-items: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.trust-tag {
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.trust-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.trust-card p {
  font-size: 14px;
  color: var(--muted-2);
  line-height: 1.65;
}

.trust-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--navy);
  color: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.trust-strip-item {
  padding: 28px 32px;
}
.trust-strip-item:first-child { border-right: 1px solid rgba(255,255,255,0.1); }
.trust-strip-item .ts-k {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-2);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.trust-strip-item .ts-v {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip-item:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}


/* FACILITIES ZONE-CARD ACTIVE FIX — keep text readable when active */
.zone-card.active .zone-title { color: var(--navy) !important; }
.zone-card.active .zone-desc { color: var(--muted-2) !important; }
.zone-card.active { background: var(--white) !important; border-color: var(--orange) !important; }
.zone-card.active .zone-key { background: var(--orange) !important; color: var(--white) !important; }


/* ===== OEM SPLIT (brand vs us) ===== */
.oem-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}
.oem-col {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all .25s var(--ease);
}
.oem-col-brand {
  background: var(--paper-2);
}
.oem-col-us {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
}
.oem-col-tag {
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.oem-col-brand .oem-col-tag { color: var(--muted); }
.oem-col-us .oem-col-tag { color: var(--orange-2); }
.oem-col h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.4px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.oem-col-brand h3 { color: var(--navy); }
.oem-col-us h3 { color: var(--paper); }
.oem-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid;
  padding-top: 16px;
}
.oem-col-brand .oem-list { border-top-color: var(--line); }
.oem-col-us .oem-list { border-top-color: rgba(255,255,255,0.12); }
.oem-list li {
  font-size: 14px;
  padding: 7px 0;
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}
.oem-col-brand .oem-list li { color: var(--muted-2); }
.oem-col-us .oem-list li { color: rgba(255,255,255,0.85); }
.oem-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
}
.oem-col-brand .oem-list li::before { color: var(--muted); }
.oem-col-us .oem-list li::before { color: var(--orange-2); }

.oem-arrow {
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  color: var(--orange);
  line-height: 1;
  padding: 0 8px;
}

@media (max-width: 900px) {
  .oem-split { grid-template-columns: 1fr; gap: 16px; }
  .oem-arrow { font-size: 40px; transform: rotate(90deg); padding: 8px 0; }
}
