*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #F9F5EE;
  --cream-dark:  #F2EDE2;
  --cream-mid:   #EDE6D6;
  --gold:        #B8954A;
  --gold-light:  #D4B06A;
  --gold-pale:   #E8D5A8;
  --gold-deep:   #8A6D2F;
  --ink:         #1C1912;
  --ink-mid:     #3D3828;
  --ink-soft:    #6B6250;
  --ink-ghost:   #A09880;
  --white:       #FFFFFF;
  --serif: 'Cormorant Garamond', serif;
  --sans:  'Jost', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--ink); overflow-x: hidden; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-pale); }

/* ══════════════════════════ HERO ══════════════════════════ */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
}

/* Left column */
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 64px;
  background: var(--cream); position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 32px; display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow-line { width: 36px; height: 1px; background: var(--gold); }

.hero-h1 {
  font-family: var(--serif); font-size: clamp(44px, 4.5vw, 72px);
  font-weight: 300; line-height: 1.06; color: var(--ink); margin-bottom: 28px;
}
.hero-h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 14px; line-height: 1.9; color: var(--ink-soft);
  max-width: 420px; margin-bottom: 48px; font-weight: 300; letter-spacing: 0.2px;
}

.hero-ctas { display: flex; gap: 24px; align-items: center; margin-bottom: 64px; }
.btn-gold {
  background: var(--gold); color: #fff; padding: 16px 38px;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  border: none; cursor: pointer; font-family: var(--sans); font-weight: 500;
  text-decoration: none; display: inline-block; transition: background 0.3s;
}
.btn-gold:hover { background: var(--gold-deep); }
.btn-outline {
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold); padding: 15px 30px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; font-family: var(--sans); font-weight: 400;
  text-decoration: none; display: inline-block; transition: all 0.3s;
}
.btn-outline:hover { background: var(--gold); color: #fff; }

.hero-mini-stats { display: flex; gap: 0; border-top: 1px solid var(--cream-mid); padding-top: 40px; }
.hero-mini-stat { padding-right: 40px; margin-right: 40px; border-right: 1px solid var(--cream-mid); }
.hero-mini-stat:last-child { border: none; padding: 0; margin: 0; }
.hero-mini-num { font-family: var(--serif); font-size: 36px; font-weight: 300; color: var(--ink); line-height: 1; }
.hero-mini-num sup { font-size: 16px; }
.hero-mini-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-ghost); margin-top: 4px; }

/* Right column — chandelier visual */
.hero-right {
  position: relative; overflow: hidden;
  height: 100%; min-height: 100vh;
  background: var(--cream-dark);
}
.hero-right-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(184,149,74,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 80%, rgba(184,149,74,0.08) 0%, transparent 50%),
    linear-gradient(160deg, #F0E8D4 0%, #EAE0CA 50%, #E4D8BE 100%);
}
.hero-texture {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(0deg, #8A6D2F 0, #8A6D2F 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, #8A6D2F 0, #8A6D2F 1px, transparent 1px, transparent 40px);
}
.hero-chandelier-wrap {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 380px; display: flex; flex-direction: column; align-items: center;
  filter: drop-shadow(0 20px 60px rgba(184,149,74,0.3));
}
.hero-tag {
  position: absolute; bottom: 48px; left: 48px;
  background: rgba(249,245,238,0.92); backdrop-filter: blur(10px);
  border: 1px solid rgba(184,149,74,0.25); padding: 20px 24px;
  max-width: 220px;
}
.hero-tag-label { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.hero-tag-title { font-family: var(--serif); font-size: 17px; color: var(--ink); line-height: 1.3; }
.hero-tag-sub { font-size: 11px; color: var(--ink-ghost); margin-top: 4px; }
.hero-badge {
  position: absolute; top: 100px; right: 36px;
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--gold); display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.hero-badge-num { font-family: var(--serif); font-size: 24px; color: #fff; line-height: 1; }
.hero-badge-text { font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.8); line-height: 1.4; margin-top: 2px; }

.hero-scroll-cue {
  position: absolute; bottom: 40px; right: 64px; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--ink-ghost);
}
.scroll-track { width: 1px; height: 48px; background: var(--cream-mid); position: relative; overflow: hidden; }
.scroll-dot { position: absolute; top: 0; left: 0; right: 0; height: 12px; background: var(--gold); animation: scrollDot 2s ease-in-out infinite; }
@keyframes scrollDot { 0%{top:0;opacity:1} 100%{top:100%;opacity:0} }

/* ══════════════════════════ MARQUEE ══════════════════════════ */
.marquee-bar {
  background: var(--ink); padding: 16px 0; overflow: hidden;
  border-top: 1px solid rgba(184,149,74,0.2);
  border-bottom: 1px solid rgba(184,149,74,0.2);
}
.marquee-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marquee 28s linear infinite;
}
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.marquee-item {
  display: inline-flex; align-items: center; gap: 20px;
  padding: 0 40px; flex-shrink: 0;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.35);
}
.marquee-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: 0.6; }

/* ══════════════════════════ COLLECTIONS ══════════════════════════ */
.section-wrap { padding: 120px 64px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 72px; }
.section-kicker { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: flex; align-items: center; gap: 14px; }
.section-kicker::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.section-h2 { font-family: var(--serif); font-size: clamp(36px, 3.8vw, 56px); font-weight: 300; color: var(--ink); line-height: 1.08; }
.section-h2 em { font-style: italic; color: var(--gold); }
.see-all { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 8px; padding-bottom: 2px; border-bottom: 1px solid var(--gold-pale); transition: all 0.3s; }
.see-all:hover { color: var(--gold-deep); gap: 14px; }

/* Collections grid */
.col-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.col-card {
  position: relative; overflow: hidden; cursor: pointer; background: var(--cream-dark);
  border: 1px solid rgba(184,149,74,0.1);
  text-decoration: none; color: inherit; display: block;
}
.col-card.span5 { grid-column: span 5; }
.col-card.span4 { grid-column: span 4; }
.col-card.span3 { grid-column: span 3; }

.col-visual {
  width: 100%; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  /* 统一固定高度，让同行所有卡片图片区域对齐 */
  height: 340px;
}
/* 仅保留非首页场景（collections页等）所需的 aspect-ratio 覆盖，
   首页通过 .col-grid 内 .col-visual 的固定高度实现对齐 */

.col-visual-bg {
  position: absolute; inset: 0; transition: transform 0.8s ease;
}
.col-card:hover .col-visual-bg { transform: scale(1.05); }

/* gradient palettes */
.gA { background: radial-gradient(ellipse at 50% 25%, rgba(220,195,140,0.5) 0%, #D8CCB4 40%, #C8BCA0 100%); }
.gB { background: radial-gradient(ellipse at 40% 30%, rgba(180,210,230,0.3) 0%, #D0DADE 50%, #C4CADA 100%); }
.gC { background: radial-gradient(ellipse at 60% 20%, rgba(225,205,170,0.5) 0%, #D4C8A8 50%, #C8BB94 100%); }
.gD { background: radial-gradient(ellipse at 50% 40%, rgba(200,220,200,0.3) 0%, #D0D8C8 50%, #C4CEB8 100%); }
.gE { background: radial-gradient(ellipse at 45% 25%, rgba(230,200,160,0.5) 0%, #DCCCA8 50%, #D0BF90 100%); }
.gF { background: radial-gradient(ellipse at 55% 30%, rgba(240,220,180,0.5) 0%, #E0CFAC 50%, #D4C098 100%); }

.col-info {
  padding: 20px 20px 22px;
  background: var(--cream);
  border-top: 1px solid rgba(184,149,74,0.12);
  display: flex; justify-content: space-between; align-items: flex-end;
}
.col-series { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.col-name { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--ink); line-height: 1.2; }
.col-mat { font-size: 11px; color: var(--ink-ghost); margin-top: 3px; }
.col-arrow { width: 32px; height: 32px; border: 1px solid var(--gold-pale); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 16px; transition: all 0.3s; }
.col-card:hover .col-arrow { background: var(--gold); color: #fff; }

/* ══════════════════════════ SERVICES SPLIT ══════════════════════════ */
.services { display: grid; grid-template-columns: 1fr 1fr 1fr; min-height: 560px; }
.svc {
  padding: 72px 52px; position: relative; cursor: pointer;
  border-right: 1px solid rgba(184,149,74,0.14); border-top: 1px solid rgba(184,149,74,0.14);
  display: flex; flex-direction: column; transition: background 0.35s;
  background: var(--white);
}
.svc:last-child { border-right: none; }
.svc:hover { background: var(--cream); }
.svc::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.svc:hover::after { transform: scaleX(1); }
.svc-num { font-size: 11px; letter-spacing: 3px; color: var(--gold-pale); font-weight: 600; margin-bottom: 40px; }
.svc-icon { margin-bottom: 28px; }
.svc-title { font-family: var(--serif); font-size: 28px; font-weight: 400; color: var(--ink); margin-bottom: 16px; line-height: 1.2; }
.svc-desc { font-size: 13.5px; line-height: 1.85; color: var(--ink-soft); flex: 1; font-weight: 300; }
.svc-cta { margin-top: 36px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 10px; text-decoration: none; transition: gap 0.3s; }
.svc:hover .svc-cta { gap: 16px; }
.svc-cta-arrow { width: 28px; height: 1px; background: var(--gold); position: relative; transition: width 0.3s; }
.svc-cta-arrow::after { content: '▶'; font-size: 8px; position: absolute; right: -1px; top: -5px; }
.svc:hover .svc-cta-arrow { width: 40px; }
.svc-img-wrap { margin-top: 32px; overflow: hidden; border-radius: 4px; line-height: 0; }
.svc-img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.svc:hover .svc-img { transform: scale(1.04); }

/* ══════════════════════════ PROJECTS ══════════════════════════ */
.projects-wrap { padding: 120px 64px; background: var(--cream-dark); }
.projects-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; margin-top: 0;
  align-items: stretch;
}
.proj-card {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--cream-mid);
}
/* main 卡片：固定高度，横跨整列 */
.proj-card.main { display: flex; flex-direction: column; }
.proj-card.main .proj-visual { flex: 1; aspect-ratio: unset; min-height: 520px; }
/* side-stack 撑满与 main 卡片相同的高度 */
.side-stack { display: flex; flex-direction: column; gap: 16px; align-self: stretch; }
.proj-card.side { flex: 1; display: flex; flex-direction: column; }
.proj-visual {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.proj-card.main .proj-visual { position: relative; }
.proj-card.side .proj-visual { flex: 1; aspect-ratio: unset; }
.proj-visual-bg { position: absolute; inset: 0; transition: transform 0.7s; }
.proj-card:hover .proj-visual-bg { transform: scale(1.04); }

.pA { background: radial-gradient(ellipse at 50% 30%, rgba(210,185,130,0.45) 0%, #D0C0A0 50%, #BFAB88 100%); }
.pB { background: radial-gradient(ellipse at 45% 25%, rgba(190,210,220,0.35) 0%, #C8D2D8 50%, #B8C2CC 100%); }
.pC { background: radial-gradient(ellipse at 55% 35%, rgba(180,205,190,0.35) 0%, #C4CEC8 50%, #B4BEB8 100%); }

.proj-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,18,12,0.85) 0%, rgba(20,18,12,0.2) 55%, transparent 100%);
  transition: opacity 0.4s;
}
.proj-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; }
.proj-location { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px; }
.proj-name { font-family: var(--serif); font-size: 24px; font-weight: 300; color: #fff; line-height: 1.2; margin-bottom: 4px; }
.proj-desc { font-size: 12px; color: rgba(255,255,255,0.55); }
.proj-card.side .proj-name { font-size: 20px; }

.proj-counter {
  margin-top: 56px; display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid rgba(184,149,74,0.2);
}
.pcount {
  padding: 36px 32px; text-align: center;
  border-right: 1px solid rgba(184,149,74,0.15);
  background: var(--white);
}
.pcount:last-child { border: none; }
.pcount-num { font-family: var(--serif); font-size: 40px; font-weight: 300; color: var(--gold); }
.pcount-sup { font-size: 18px; }
.pcount-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-ghost); margin-top: 6px; }

/* ══════════════════════════ MOFUN ══════════════════════════ */
.mofun { display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; }
.mofun-left {
  padding: 100px 72px; background: var(--ink); display: flex; flex-direction: column; justify-content: center;
}
.mofun-kicker { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; }
.mofun-h2 { font-family: var(--serif); font-size: clamp(34px, 3vw, 52px); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 24px; }
.mofun-h2 em { font-style: italic; color: var(--gold-light); }
.mofun-desc { font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.5); font-weight: 300; margin-bottom: 44px; max-width: 400px; }
.mofun-steps { display: flex; flex-direction: column; gap: 22px; margin-bottom: 48px; }
.mofun-step { display: flex; gap: 18px; align-items: flex-start; }
.mofun-step-n {
  width: 32px; height: 32px; border: 1px solid rgba(184,149,74,0.4);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 16px; color: var(--gold); line-height: 1;
}
.mofun-step-t { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.7; padding-top: 5px; }
.btn-cream {
  background: var(--cream); color: var(--ink); padding: 16px 36px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  border: none; cursor: pointer; font-family: var(--sans); font-weight: 500;
  display: inline-block; text-decoration: none; transition: background 0.3s; align-self: flex-start;
}
.btn-cream:hover { background: var(--gold-pale); }

.mofun-right {
  background: var(--cream-dark); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; padding: 60px 48px;
}
.mofun-right-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(184,149,74,0.15) 0%, transparent 60%);
}
.mofun-mockup {
  position: relative; z-index: 2; width: 100%; max-width: 460px;
  background: var(--white); border: 1px solid rgba(184,149,74,0.2);
  box-shadow: 0 24px 80px rgba(0,0,0,0.14), 0 4px 16px rgba(0,0,0,0.06);
}
.mockup-bar {
  background: #F4F0E8; border-bottom: 1px solid rgba(184,149,74,0.15);
  padding: 12px 16px; display: flex; align-items: center; gap: 8px;
}
.mockup-dots { display: flex; gap: 5px; }
.mockup-dot { width: 9px; height: 9px; border-radius: 50%; }
.md1 { background: #EC6A5E; }
.md2 { background: #F4BF4F; }
.md3 { background: #61C554; }
.mockup-url {
  flex: 1; background: var(--cream); border: 1px solid var(--cream-mid);
  border-radius: 2px; padding: 4px 12px; font-size: 10px; color: var(--ink-ghost); letter-spacing: 0.5px;
  text-align: center;
}
.mockup-body { display: grid; grid-template-columns: 160px 1fr; height: 340px; }
.mockup-sidebar {
  background: var(--cream); border-right: 1px solid rgba(184,149,74,0.12);
  padding: 20px 16px;
}
.mockup-s-title { font-size: 8px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.mockup-s-opt {
  height: 28px; border: 1px solid transparent; border-radius: 1px;
  margin-bottom: 6px; display: flex; align-items: center; padding: 0 10px;
  font-size: 10px; color: var(--ink-soft); cursor: pointer; transition: all 0.2s;
}
.mockup-s-opt.active { border-color: var(--gold); background: rgba(184,149,74,0.08); color: var(--gold-deep); font-weight: 500; }
.mockup-s-opt:hover { background: var(--cream-mid); }
.mockup-s-swatch-row { display: flex; gap: 6px; margin-top: 4px; margin-bottom: 12px; }
.mockup-swatch { width: 20px; height: 20px; border-radius: 50%; cursor: pointer; border: 1.5px solid transparent; }
.mockup-swatch.sel { border-color: var(--gold-deep); }
.s1 { background: #C9A96E; }
.s2 { background: #8B7355; }
.s3 { background: #2C2C2C; }
.s4 { background: #D4D0C8; }

.mockup-canvas {
  background: radial-gradient(ellipse at 50% 30%, rgba(220,195,140,0.4) 0%, var(--cream-dark) 70%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  position: relative; padding: 20px;
}
.mockup-canvas-label { font-size: 8px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); opacity: 0.8; }
.mockup-actions { display: flex; gap: 0; border-top: 1px solid rgba(184,149,74,0.15); }
.mockup-act {
  flex: 1; padding: 12px; text-align: center; font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s; color: var(--ink-soft);
}
.mockup-act:first-child { border-right: 1px solid rgba(184,149,74,0.15); }
.mockup-act.primary { background: var(--gold); color: #fff; }
.mockup-act.primary:hover { background: var(--gold-deep); }
.mockup-act:not(.primary):hover { background: var(--cream); }

/* ══════════════════════════ WHY / TRUST ══════════════════════════ */
.trust-wrap { padding: 120px 64px; background: var(--white); }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.trust-points { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.trust-pt { display: flex; gap: 22px; }
.trust-pt-icon {
  width: 44px; height: 44px; border: 1px solid rgba(184,149,74,0.3); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.trust-pt-icon svg { width: 20px; height: 20px; }
.trust-pt-title { font-family: var(--serif); font-size: 20px; color: var(--ink); margin-bottom: 6px; }
.trust-pt-text { font-size: 13px; line-height: 1.8; color: var(--ink-soft); font-weight: 300; }
.cert-tile {
  background: var(--cream); padding: 28px 20px; text-align: center;
  border: 1px solid rgba(184,149,74,0.1); transition: all 0.3s; cursor: default;
}
.cert-tile:hover { border-color: rgba(184,149,74,0.4); background: var(--white); }
.cert-logo { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--gold); margin-bottom: 4px; }
.cert-lbl { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-ghost); }
.cert-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.cert-tag {
  font-family: var(--serif); font-size: 11px; letter-spacing: 1px;
  color: var(--gold); background: rgba(184,149,74,0.08);
  padding: 6px 14px; border: 1px solid rgba(184,149,74,0.2);
  border-radius: 2px; transition: all 0.25s;
}
.cert-tag:hover { background: rgba(184,149,74,0.15); border-color: var(--gold); }
.cert-factory-wrap {flex: 1; min-width: 300px; }
.cert-tile.highlight { background: var(--gold); border-color: var(--gold); grid-column: span 3; padding: 24px; display: flex; align-items: center; justify-content: space-between; position: relative; overflow: hidden; }
.cert-tile.highlight .cert-logo { color: #fff; font-size: 18px; margin: 0; }
.cert-tile.highlight .cert-lbl { color: rgba(255,255,255,0.7); }


/* ══════════════════════════ CLIENTS ══════════════════════════ */
.clients { background: var(--cream-dark); padding: 56px 64px; border-top: 1px solid rgba(184,149,74,0.12); border-bottom: 1px solid rgba(184,149,74,0.12); }
.clients-label { text-align: center; font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--ink-ghost); margin-bottom: 36px; }
.clients-row { display: flex; justify-content: space-between; align-items: center; }
.client-name {
  font-family: var(--serif); font-size: 15px; letter-spacing: 2px;
  color: rgba(28,25,18,0.28); transition: color 0.3s; cursor: default;
}
.client-name:hover { color: var(--gold); }

/* ══════════════════════════ FOOTER ══════════════════════════ */
footer { background: var(--ink); padding: 88px 64px 44px; }

/* ══════════════════════════ ANIMATIONS ══════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #F9F5EE;
  --cream-dark:  #F2EDE2;
  --cream-mid:   #EDE6D6;
  --gold:        #B8954A;
  --gold-light:  #D4B06A;
  --gold-pale:   #E8D5A8;
  --gold-deep:   #8A6D2F;
  --ink:         #1C1912;
  --ink-mid:     #3D3828;
  --ink-soft:    #6B6250;
  --ink-ghost:   #A09880;
  --white:       #FFFFFF;
  --serif: 'Cormorant Garamond', serif;
  --sans:  'Jost', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--ink); overflow-x: hidden; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-pale); }

/* ══════════════════════════ NAV ══════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 76px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px;
  background: rgba(249,245,238,0.88); backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(184,149,74,0.18);
  transition: box-shadow 0.3s;
}

/* ══════════════════════════ REVEAL ANIMATION ══════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }
.reveal-d4 { transition-delay: 0.48s; }

/* ══════════════════════════ SHARED TYPOGRAPHY ══════════════════════════ */
.section-kicker {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
}
.section-kicker::before {
  content: ''; width: 36px; height: 1px; background: var(--gold);
}
.section-h2 {
  font-family: var(--serif); font-size: clamp(36px, 3.8vw, 58px);
  font-weight: 300; line-height: 1.12; color: var(--ink); margin-bottom: 24px;
}
.section-h2 em { font-style: italic; color: var(--gold); }

/* ══════════════════════════ HERO ══════════════════════════ */
.about-hero {
  min-height: 100vh; position: relative; display: grid;
  grid-template-columns: 1fr 1fr; overflow: hidden;
  padding-top: 76px;
}
.about-hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 64px;
  background: var(--cream); position: relative; z-index: 2;
}
.about-hero-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 32px; display: flex; align-items: center; gap: 14px;
}
.about-hero-eyebrow-line { width: 36px; height: 1px; background: var(--gold); }
.about-hero-h1 {
  font-family: var(--serif); font-size: clamp(42px, 4.2vw, 68px);
  font-weight: 300; line-height: 1.08; color: var(--ink); margin-bottom: 28px;
}
.about-hero-h1 em { font-style: italic; color: var(--gold); }
.about-hero-sub {
  font-size: 15px; line-height: 1.9; color: var(--ink-soft);
  max-width: 440px; margin-bottom: 48px; font-weight: 300; letter-spacing: 0.2px;
}
.about-hero-stats {
  display: flex; gap: 48px; padding-top: 48px;
  border-top: 1px solid rgba(184,149,74,0.22);
}
.about-stat-num {
  font-family: var(--serif); font-size: 42px; font-weight: 300; color: var(--gold);
  line-height: 1;
}
.about-stat-num sup { font-size: 18px; }
.about-stat-label {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-ghost); margin-top: 6px;
}

.about-hero-right {
  position: relative; background: var(--ink); overflow: hidden;
}
.about-hero-right-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.about-hero-right-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,25,18,0.3) 0%, rgba(42,35,24,0.4) 100%);
}
.about-hero-visual {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
/* Factory building illustration */
.factory-svg-wrap {
  width: 80%; max-width: 460px;
  animation: factoryFloat 6s ease-in-out infinite;
}
@keyframes factoryFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.about-hero-quote {
  position: absolute; bottom: 60px; left: 48px; right: 48px;
  padding: 28px 32px;
  background: rgba(184,149,74,0.08); border-left: 2px solid var(--gold);
}
.about-hero-quote-text {
  font-family: var(--serif); font-size: 18px; font-weight: 300;
  color: var(--gold-pale); font-style: italic; line-height: 1.6;
}
.about-hero-quote-attr {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-ghost); margin-top: 12px;
}

/* ══════════════════════════ VISION ══════════════════════════ */
.vision-section {
  padding: 120px 64px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1400px; margin: 0 auto;
}
.vision-text p {
  font-size: 15px; line-height: 2; color: var(--ink-soft);
  font-weight: 300; margin-bottom: 24px; letter-spacing: 0.2px;
}
.vision-philosophy {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px;
  margin-top: 48px;
}
.vision-pillar {
  text-align: center; padding: 32px 16px;
  border: 1px solid rgba(184,149,74,0.18);
  transition: border-color 0.3s, background 0.3s;
}
.vision-pillar:hover {
  border-color: var(--gold); background: rgba(184,149,74,0.03);
}
.vision-pillar-icon {
  width: 48px; height: 48px; margin: 0 auto 16px;
}
.vision-pillar-title {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--ink); margin-bottom: 8px;
}
.vision-pillar-desc {
  font-size: 12px; color: var(--ink-ghost); line-height: 1.7; letter-spacing: 0.2px;
}
.vision-visual {
  position: relative; aspect-ratio: 4/5;
  background: var(--cream-dark); overflow: hidden;
}
.vision-visual-inner {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream-mid) 100%);
  display: flex; align-items: center; justify-content: center;
}
.vision-badge {
  position: absolute; bottom: 24px; right: 24px;
  background: var(--gold); color: var(--white); padding: 20px 24px;
  text-align: center;
}
.vision-badge-num {
  font-family: var(--serif); font-size: 36px; font-weight: 300; line-height: 1;
}
.vision-badge-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; margin-top: 4px;
}

/* ══════════════════════════ TIMELINE ══════════════════════════ */
.timeline-section {
  padding: 120px 64px;
  background: var(--ink);
  color: var(--white);
  position: relative; overflow: hidden;
}
.timeline-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 40% at 20% 60%, rgba(184,149,74,0.06), transparent);
  pointer-events: none;
}
.timeline-header {
  max-width: 1400px; margin: 0 auto 80px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.timeline-header .section-h2 { color: var(--white); margin-bottom: 0; }

.timeline-track {
  max-width: 1400px; margin: 0 auto;
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.timeline-track::before {
  content: ''; position: absolute;
  top: 52px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(184,149,74,0.4) 10%, rgba(184,149,74,0.4) 90%, transparent 100%);
}
.tl-item {
  position: relative; padding: 0 24px;
  text-align: center;
}
.tl-year {
  font-family: var(--serif); font-size: 32px; font-weight: 300;
  color: var(--gold); margin-bottom: 16px; line-height: 1;
}
.tl-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); margin: 0 auto 24px;
  position: relative; z-index: 2;
  box-shadow: 0 0 0 4px var(--ink), 0 0 0 5px rgba(184,149,74,0.3);
}
.tl-title {
  font-family: var(--serif); font-size: 18px; font-weight: 400;
  color: var(--white); margin-bottom: 10px;
}
.tl-desc {
  font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7;
  letter-spacing: 0.2px;
}

/* Second row of timeline */
.timeline-track-2 {
  max-width: 1400px; margin: 60px auto 0;
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.timeline-track-2::before {
  content: ''; position: absolute;
  top: 52px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(184,149,74,0.4) 10%, rgba(184,149,74,0.4) 90%, transparent 100%);
}

/* ══════════════════════════ DESIGNERS ══════════════════════════ */
.designers-section {
  padding: 120px 64px;
  max-width: 1400px; margin: 0 auto;
}
.designers-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 72px;
}
.designers-header-text { max-width: 560px; }
.designers-header-text p {
  font-size: 15px; line-height: 1.9; color: var(--ink-soft); font-weight: 300;
}
.designers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.designer-card {
  position: relative; overflow: hidden;
  border: 1px solid rgba(184,149,74,0.15);
  transition: border-color 0.4s, box-shadow 0.4s;
}
.designer-card:hover {
  border-color: var(--gold);
  box-shadow: 0 24px 60px rgba(28,25,18,0.08);
}
.designer-portrait {
  aspect-ratio: 4/3; position: relative; overflow: hidden;
  background: var(--cream-dark);
}
.designer-portrait-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--cream-dark) 0%, var(--cream-mid) 100%);
}
.designer-portrait-initial {
  font-family: var(--serif); font-size: 72px; font-weight: 300;
  color: var(--gold); opacity: 0.4;
}
.designer-info {
  padding: 28px 28px 32px;
}
.designer-role {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.designer-name {
  font-family: var(--serif); font-size: 24px; font-weight: 400;
  color: var(--ink); margin-bottom: 8px;
}
.designer-origin {
  font-size: 12px; color: var(--ink-ghost); margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.designer-bio {
  font-size: 13px; line-height: 1.8; color: var(--ink-soft); font-weight: 300;
}
.designer-award {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; padding: 8px 14px;
  background: rgba(184,149,74,0.08); border-left: 2px solid var(--gold);
  font-size: 11px; color: var(--gold-deep); letter-spacing: 0.3px;
}

/* ══════════════════════════ MANUFACTURING ══════════════════════════ */
.mfg-section {
  padding: 120px 0;
  background: var(--cream-dark);
  overflow: hidden;
}
.mfg-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 64px;
}
.mfg-header {
  text-align: center; max-width: 680px; margin: 0 auto 80px;
}
.mfg-header .section-kicker { justify-content: center; }
.mfg-header .section-kicker::before { display: none; }
.mfg-header .section-kicker::after {
  content: ''; width: 36px; height: 1px; background: var(--gold);
}
.mfg-header p {
  font-size: 15px; line-height: 1.9; color: var(--ink-soft); font-weight: 300;
}
.mfg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-bottom: 64px;
}
.mfg-card {
  background: var(--white); padding: 40px 32px;
  border: 1px solid rgba(184,149,74,0.12);
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}
.mfg-card:hover {
  border-color: var(--gold); transform: translateY(-4px);
}
.mfg-card-icon {
  width: 52px; height: 52px; margin-bottom: 24px;
}
.mfg-card-title {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--ink); margin-bottom: 12px;
}
.mfg-card-desc {
  font-size: 13px; line-height: 1.8; color: var(--ink-soft); font-weight: 300;
}
.mfg-stat-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: var(--ink); color: var(--white);
}
.mfg-stat {
  padding: 40px 32px; text-align: center;
  border-right: 1px solid rgba(184,149,74,0.15);
  transition: background 0.3s;
}
.mfg-stat:last-child { border-right: none; }
.mfg-stat:hover { background: rgba(184,149,74,0.06); }
.mfg-stat-num {
  font-family: var(--serif); font-size: 38px; font-weight: 300;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.mfg-stat-num sup { font-size: 16px; }
.mfg-stat-label {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ══════════════════════════ CERTIFICATIONS ══════════════════════════ */
.cert-section {
  padding: 120px 64px;
  max-width: 1400px; margin: 0 auto;
}
.cert-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; margin-bottom: 72px;
}
.cert-header p {
  font-size: 15px; line-height: 1.9; color: var(--ink-soft); font-weight: 300;
}
.cert-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px;
}
.cert-tile {
  aspect-ratio: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--cream-dark); border: 1px solid rgba(184,149,74,0.12);
  transition: border-color 0.3s, transform 0.3s;
  padding: 20px;
}
.cert-tile:hover {
  border-color: var(--gold); transform: translateY(-4px);
}
.cert-tile-logo {
  font-family: var(--serif); font-size: 28px; font-weight: 600;
  color: var(--gold); margin-bottom: 8px;
}
.cert-tile-label {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-ghost); text-align: center;
}
.cert-feature {
  grid-column: span 2;
  aspect-ratio: auto;
  background: var(--gold); color: var(--white);
  padding: 32px;
  display: flex; align-items: center; justify-content: space-between;
  border: none;
}
.cert-feature:hover { transform: translateY(-4px); }
.cert-feature .cert-tile-logo { color: var(--white); font-size: 22px; }
.cert-feature .cert-tile-label { color: rgba(255,255,255,0.7); }

/* ══════════════════════════ GLOBAL CTA ══════════════════════════ */
.about-cta {
  padding: 120px 64px;
  background: var(--ink);
  text-align: center; position: relative; overflow: hidden;
}
.about-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(184,149,74,0.06), transparent);
  pointer-events: none;
}
.about-cta .section-kicker { justify-content: center; }
.about-cta .section-kicker::before { display: none; }
.about-cta .section-h2 { color: var(--white); margin-bottom: 20px; }
.about-cta p {
  font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.5);
  max-width: 520px; margin: 0 auto 48px; font-weight: 300;
}
.about-cta-btns {
  display: flex; gap: 24px; justify-content: center; align-items: center;
}
.btn-gold {
  background: var(--gold); color: #fff; padding: 16px 38px;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  border: none; cursor: pointer; font-family: var(--sans); font-weight: 500;
  text-decoration: none; display: inline-block; transition: background 0.3s;
}
.btn-gold:hover { background: var(--gold-deep); }
.btn-outline {
  border: 1px solid rgba(184,149,74,0.5); color: var(--gold-pale);
  padding: 15px 36px; font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; cursor: pointer; font-family: var(--sans);
  font-weight: 400; text-decoration: none; display: inline-block;
  transition: all 0.3s; background: transparent;
}
.btn-outline:hover { border-color: var(--gold); color: var(--white); background: rgba(184,149,74,0.1); }

/* ══════════════════════════ FOOTER ══════════════════════════ */
footer {
  background: var(--ink); color: var(--cream); padding: 72px 64px 40px;
  border-top: 1px solid rgba(184,149,74,0.15);
}

/* ══════════════════════════ RESPONSIVE ══════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  .about-hero { grid-template-columns: 1fr; min-height: auto; }
  .about-hero-right { min-height: 60vh; }
  .about-hero-left { padding: 80px 32px 60px; }
  .vision-section { grid-template-columns: 1fr; padding: 80px 32px; gap: 48px; }
  .vision-visual { max-height: 400px; }
  .timeline-section { padding: 80px 32px; }
  .timeline-track, .timeline-track-2 { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .designers-section { padding: 80px 32px; }
  .designers-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .mfg-inner { padding: 0 32px; }
  .mfg-grid { grid-template-columns: 1fr 1fr; }
  .mfg-stat-bar { grid-template-columns: repeat(2, 1fr); }
  .mfg-stat { border-bottom: 1px solid rgba(184,149,74,0.15); }
  .cert-section { padding: 80px 32px; }
  .cert-header { grid-template-columns: 1fr; gap: 24px; }
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
  .cert-feature { grid-column: span 3; }
}

@media (max-width: 640px) {
  nav { padding: 0 20px; height: 64px; }
  .about-hero-left { padding: 40px 20px; }
  .about-hero-stats { gap: 24px; flex-wrap: wrap; }
  .about-hero-h1 { font-size: 36px; }
  .vision-section { padding: 60px 20px; }
  .vision-philosophy { grid-template-columns: 1fr; }
  .timeline-section { padding: 60px 20px; }
  .timeline-track, .timeline-track-2 { grid-template-columns: 1fr; gap: 48px; }
  .designers-section { padding: 60px 20px; }
  .designers-grid { grid-template-columns: 1fr; }
  .mfg-inner { padding: 0 20px; }
  .mfg-section { padding: 80px 0; }
  .mfg-grid { grid-template-columns: 1fr; }
  .mfg-stat-bar { grid-template-columns: 1fr 1fr; }
  .cert-section { padding: 60px 20px; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-feature { grid-column: span 2; }
  .about-cta { padding: 80px 20px; }
  .about-cta-btns { flex-direction: column; }
  footer { padding: 48px 20px 32px; }
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cream: #F9F5EE; --cream-d: #F2EDE2; --cream-dd: #EAE0CC;
  --gold: #B8954A; --gold-l: #D4B06A; --gold-pale: #E8D5A8; --gold-deep: #8A6D2F;
  --ink: #1C1912; --ink-mid: #3D3828; --ink-soft: #6B6250; --ink-ghost: #A09880;
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Jost', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--ink); overflow-x: hidden; }
::-webkit-scrollbar { width: 3px; } ::-webkit-scrollbar-thumb { background: var(--gold-pale); }

/* ══ NAV (shared) ══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  background: rgba(249,245,238,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184,149,74,0.16);
}

/* ══ PAGE HERO (compact) ══ */
.page-hero {
  padding-top: 72px;
  background: var(--ink);
  position: relative; overflow: hidden;
  min-height: 340px; display: flex; align-items: flex-end;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-color: #1C1912;
  background-size: cover;
  background-position: center;
}
/* 压暗遮罩：独立伪元素，不受行内 background-image 影响 */
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(20,17,10,0.82) 0%, rgba(20,17,10,0.55) 50%, rgba(20,17,10,0.25) 100%),
    linear-gradient(to top,   rgba(20,17,10,0.60) 0%, transparent 60%);
}
.page-hero-grid {
  position: absolute; inset: 0; opacity: 0.03; z-index: 1;
  background-image: repeating-linear-gradient(0deg,#B8954A 0,#B8954A 1px,transparent 1px,transparent 48px),
    repeating-linear-gradient(90deg,#B8954A 0,#B8954A 1px,transparent 1px,transparent 48px);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 60px 56px; width: 100%;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px;
}
.page-hero-left { max-width: 600px; }
.page-hero-content .breadcrumb { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(184,149,74,0.7); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.page-hero-content .breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color .2s; }
.page-hero-content .breadcrumb a:hover { color: var(--gold-l); }
.page-hero-content .breadcrumb-sep { color: rgba(255,255,255,0.2); }
.page-h1 { font-family: var(--serif); font-size: clamp(40px,4.5vw,66px); font-weight: 300; color: #fff; line-height: 1.05; margin-bottom: 18px; }
.page-h1 em { font-style: italic; color: var(--gold-l); }
.page-desc { font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.75); max-width: 480px; font-weight: 300; }
.page-hero-right { flex-shrink: 0; text-align: right; }
.hero-stat-row { display: flex; gap: 40px; justify-content: flex-end; }
.hero-stat { text-align: right; }
.hero-stat-num { font-family: var(--serif); font-size: 34px; font-weight: 300; color: var(--gold-l); line-height: 1; }
.hero-stat-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* ══ STICKY FILTER BAR ══ */
.filter-bar {
  position: sticky; top: 72px; z-index: 200;
  background: var(--white); border-bottom: 1px solid rgba(184,149,74,0.16);
  display: flex; align-items: center; gap: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.filter-tabs { display: flex; border-right: 1px solid rgba(184,149,74,0.12); }
.filter-tab {
  padding: 18px 28px; font-size: 12px; letter-spacing: 1.8px; text-transform: uppercase;
  cursor: pointer; color: var(--ink-ghost); border-bottom: 2px solid transparent;
  transition: all .25s; white-space: nowrap; font-weight: 400; background: none; border-top: none; border-left: none; border-right: none; font-family: var(--sans);
}
.filter-tab.active { color: var(--gold-deep); border-bottom-color: var(--gold); background: rgba(184,149,74,0.04); }
.filter-tab:hover:not(.active) { color: var(--ink-mid); background: var(--cream); }
.filter-pills { display: flex; gap: 8px; padding: 12px 24px; flex-wrap: wrap; flex: 1; }
.pill {
  padding: 7px 16px; border: 1px solid rgba(184,149,74,0.25); border-radius: 0;
  font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--ink-soft);
  cursor: pointer; transition: all .22s; background: transparent; font-family: var(--sans);
}
.pill:hover { border-color: var(--gold); color: var(--gold-deep); background: rgba(184,149,74,0.06); }
.pill.active { background: var(--gold); color: #fff; border-color: var(--gold); }
.filter-count { padding: 0 24px; font-size: 12px; color: var(--ink-ghost); white-space: nowrap; border-left: 1px solid rgba(184,149,74,0.12); }
.filter-count strong { color: var(--gold); }

/* ══ SECTION SHARED ══ */
.section-wrap { padding: 80px 60px; }
.section-kicker { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.section-kicker::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.section-h2 { font-family: var(--serif); font-size: clamp(30px,3.2vw,48px); font-weight: 300; color: var(--ink); line-height: 1.1; margin-bottom: 12px; }
.section-h2 em { font-style: italic; color: var(--gold); }
.section-intro { font-size: 14px; line-height: 1.85; color: var(--ink-soft); max-width: 580px; font-weight: 300; }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; gap: 40px; }
.see-all { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--gold-pale); padding-bottom: 2px; transition: gap .3s, color .3s; flex-shrink: 0; }
.see-all:hover { color: var(--gold-deep); gap: 14px; }

/* ══ BESPOKE — signature 9 series ══ */
.bespoke-wrap { background: var(--cream); }

/* Large feature card */
.bespoke-feature {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 560px;
  margin-bottom: 3px;
}
.bf-visual {
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 45% 35%, rgba(210,185,130,0.55) 0%, #C8B890 40%, #B8A878 100%);
  display: flex; align-items: center; justify-content: center;
}
.bf-visual-bg { position: absolute; inset: 0; }
.bf-visual svg { position: relative; z-index: 2; filter: drop-shadow(0 12px 40px rgba(138,109,47,0.35)); transition: transform .8s ease; }
.bespoke-feature:hover .bf-visual svg { transform: translateY(-10px) scale(1.03); }
.bf-badge {
  position: absolute; top: 32px; left: 32px; z-index: 3;
  background: var(--gold); color: #fff; padding: 6px 14px;
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
}
.bf-info {
  background: var(--ink); padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.bf-series { font-size: 10px; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold-l); margin-bottom: 16px; }
.bf-title { font-family: var(--serif); font-size: clamp(32px,3vw,48px); font-weight: 300; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.bf-title em { font-style: italic; color: var(--gold-l); }
.bf-desc { font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.5); margin-bottom: 36px; font-weight: 300; max-width: 380px; }
.bf-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.bf-tag { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(184,149,74,0.8); border: 1px solid rgba(184,149,74,0.25); padding: 5px 12px; }
.bf-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-gold-sm { background: var(--gold); color: #fff; padding: 13px 28px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; border: none; cursor: pointer; font-family: var(--sans); text-decoration: none; display: inline-block; transition: background .3s; }
.btn-gold-sm:hover { background: var(--gold-deep); }
.btn-ghost-sm { background: transparent; border: 1px solid rgba(184,149,74,0.4); color: rgba(255,255,255,0.7); padding: 12px 24px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-family: var(--sans); text-decoration: none; display: inline-block; transition: all .3s; }
.btn-ghost-sm:hover { border-color: var(--gold); color: var(--gold-l); }

/* 9-series grid */
.series-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 3px;
}
.series-card {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--cream-dd);
  border: none;
}
.series-card:hover .sc-visual { transform: scale(1.05); }
.series-card:hover .sc-overlay { opacity: 1; }
.series-card:hover .sc-arrow { opacity: 1; transform: translateX(0); }
.sc-visual-wrap { overflow: hidden; aspect-ratio: 4/5; position: relative; }
.sc-visual {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .7s ease;
  position: relative;
}
.sc-visual svg { position: relative; z-index: 2; }
.sc-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(to top, rgba(28,25,18,0.88) 0%, rgba(28,25,18,0.15) 55%, transparent 100%);
  opacity: 0.55; transition: opacity .4s;
}
.sc-info { position: absolute; bottom: 0; left: 0; right: 0; z-index: 4; padding: 24px 22px; }
.sc-num { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-l); margin-bottom: 5px; opacity: 0; transition: opacity .4s; }
.series-card:hover .sc-num { opacity: 1; }
.sc-name { font-family: var(--serif); font-size: 22px; font-weight: 400; color: #fff; line-height: 1.2; margin-bottom: 4px; }
.sc-mat { font-size: 11px; color: rgba(255,255,255,0.5); }
.sc-arrow {
  position: absolute; bottom: 24px; right: 22px; z-index: 5;
  width: 36px; height: 36px; border: 1px solid rgba(184,149,74,0.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-l); font-size: 18px;
  opacity: 0; transform: translateX(8px); transition: all .3s;
}
/* Series color palettes */
.sg1{background:radial-gradient(ellipse at 50% 25%,rgba(220,195,140,.55) 0%,#C8B890 45%,#B8A878 100%)}
.sg2{background:radial-gradient(ellipse at 45% 30%,rgba(195,215,230,.4) 0%,#C4CADA 50%,#B4BAC8 100%)}
.sg3{background:radial-gradient(ellipse at 55% 25%,rgba(225,205,165,.55) 0%,#D0C4A0 50%,#C4B48C 100%)}
.sg4{background:radial-gradient(ellipse at 50% 35%,rgba(205,225,205,.4) 0%,#C8D4C4 50%,#B8C4B0 100%)}
.sg5{background:radial-gradient(ellipse at 40% 25%,rgba(235,215,175,.55) 0%,#D8C8A0 50%,#CCC092 100%)}
.sg6{background:radial-gradient(ellipse at 60% 30%,rgba(225,195,155,.5) 0%,#D4BCA0 50%,#C8AA8C 100%)}
.sg7{background:radial-gradient(ellipse at 50% 20%,rgba(240,220,180,.55) 0%,#DACCAC 50%,#D0BE98 100%)}
.sg8{background:radial-gradient(ellipse at 45% 35%,rgba(215,235,215,.4) 0%,#CAD4C8 50%,#BCCAB8 100%)}
.sg9{background:radial-gradient(ellipse at 55% 25%,rgba(230,205,160,.55) 0%,#D4C8A0 50%,#CAB890 100%)}

/* ══ STANDARD PRODUCTS ══ */
.standard-wrap { background: var(--white); }
.standard-intro-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  margin-bottom: 56px; padding: 48px 0; border-bottom: 1px solid rgba(184,149,74,0.12);
}
.si-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border: 1px solid rgba(184,149,74,0.25); background: rgba(184,149,74,0.06); margin-bottom: 16px; }
.si-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.si-badge-text { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-deep); }
.si-title { font-family: var(--serif); font-size: 28px; font-weight: 400; color: var(--ink); margin-bottom: 14px; line-height: 1.2; }
.si-desc { font-size: 13.5px; line-height: 1.85; color: var(--ink-soft); font-weight: 300; }
.si-right { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; }
.si-feat { background: var(--cream); padding: 20px; border: 1px solid rgba(184,149,74,0.1); }
.si-feat-icon { font-size: 22px; margin-bottom: 8px; }
.si-feat-title { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.si-feat-text { font-size: 12px; color: var(--ink-ghost); line-height: 1.6; }

/* Product grid */
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.prod-card { background: var(--cream); cursor: pointer; position: relative; overflow: hidden; border: 1px solid rgba(184,149,74,0.08); transition: border-color .3s; }
.prod-card:hover { border-color: rgba(184,149,74,0.3); }
.prod-card:hover .prod-visual { transform: scale(1.04); }
.prod-visual-wrap { overflow: hidden; aspect-ratio: 1/1; background: var(--cream-d); position: relative; display: flex; align-items: center; justify-content: center; }
.prod-visual { transition: transform .6s ease; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.prod-patent {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: var(--gold); color: #fff; font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 8px;
}
.prod-customizable {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(28,25,18,0.75); color: rgba(184,149,74,0.9); font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 8px;
}
.prod-info { padding: 16px 16px 20px; background: var(--white); border-top: 1px solid rgba(184,149,74,0.1); }
.prod-series { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.prod-name { font-family: var(--serif); font-size: 17px; font-weight: 400; color: var(--ink); margin-bottom: 4px; line-height: 1.2; }
.prod-spec { font-size: 11px; color: var(--ink-ghost); margin-bottom: 12px; }
.prod-actions { display: flex; gap: 8px; }
.prod-btn { flex: 1; padding: 9px 0; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; text-align: center; cursor: pointer; font-family: var(--sans); border: 1px solid rgba(184,149,74,0.25); color: var(--ink-soft); background: transparent; transition: all .25s; text-decoration: none; display: flex; align-items: center; justify-content: center; }
.prod-btn:hover { border-color: var(--gold); color: var(--gold-deep); background: rgba(184,149,74,0.06); }
.prod-btn.primary { background: var(--gold); color: #fff; border-color: var(--gold); }
.prod-btn.primary:hover { background: var(--gold-deep); }

/* Product grid gradients */
.pg1{background:radial-gradient(ellipse at 50% 30%,rgba(220,195,140,.4) 0%,#E4D8C0 60%,#D8CCAE 100%)}
.pg2{background:radial-gradient(ellipse at 45% 25%,rgba(195,215,230,.35) 0%,#D0D8DE 60%,#C4CED8 100%)}
.pg3{background:radial-gradient(ellipse at 55% 30%,rgba(220,205,165,.45) 0%,#DDD0B0 60%,#D4C5A0 100%)}
.pg4{background:radial-gradient(ellipse at 50% 35%,rgba(205,220,205,.35) 0%,#D0D8CC 60%,#C4CEBC 100%)}
.pg5{background:radial-gradient(ellipse at 40% 25%,rgba(235,215,175,.45) 0%,#E0D0B0 60%,#D4C49E 100%)}
.pg6{background:radial-gradient(ellipse at 60% 30%,rgba(225,195,155,.45) 0%,#DDBEA0 60%,#D2AE8C 100%)}
.pg7{background:radial-gradient(ellipse at 50% 20%,rgba(235,220,180,.5) 0%,#DED0B0 60%,#D4C29A 100%)}
.pg8{background:radial-gradient(ellipse at 45% 35%,rgba(215,230,215,.38) 0%,#CCD8C8 60%,#C0CEB8 100%)}

/* Load more */
.load-more-wrap { text-align: center; padding: 48px 0 0; }
.btn-load { background: transparent; border: 1.5px solid var(--gold); color: var(--gold-deep); padding: 14px 44px; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; cursor: pointer; font-family: var(--sans); transition: all .3s; }
.btn-load:hover { background: var(--gold); color: #fff; }
.load-sub { font-size: 11px; color: var(--ink-ghost); margin-top: 12px; letter-spacing: 0.5px; }

/* ══ CUSTOM CALLOUT ══ */

/* ══ FOOTER (shared, condensed) ══ */
footer { background: var(--ink); padding: 72px 60px 40px; }

/* ══ ANIMATIONS ══ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #F9F5EE;
  --cream-dark:  #F2EDE2;
  --cream-mid:   #EDE6D6;
  --gold:        #B8954A;
  --gold-light:  #D4B06A;
  --gold-pale:   #E8D5A8;
  --gold-deep:   #8A6D2F;
  --ink:         #1C1912;
  --ink-mid:     #3D3828;
  --ink-soft:    #6B6250;
  --ink-ghost:   #A09880;
  --white:       #FFFFFF;
  --serif: 'Cormorant Garamond', serif;
  --sans:  'Jost', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--ink); overflow-x: hidden; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-pale); }

/* ══════════════════════════ NAV ══════════════════════════ */
nav {
  transition: box-shadow 0.3s;
}

/* ══ BREADCRUMB ══ */
.breadcrumb {
  margin-top: 76px; padding: 18px 64px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(184,149,74,0.12);
  background: var(--cream);
}
.breadcrumb a { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-ghost); text-decoration: none; transition: color 0.25s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--gold); font-size: 11px; }
.breadcrumb-cur { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }

/* ══════════════════════════════════
   FLOOR 1: HERO
══════════════════════════════════ */
.series-hero {
  min-height: 90vh; display: grid; grid-template-columns: 1fr 1fr;
  background: var(--cream);
}
.sh-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 88px 72px 88px 64px; background: var(--cream); position: relative; z-index: 2;
}
.sh-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 36px;
}
.sh-eyebrow-line { width: 36px; height: 1px; background: var(--gold); }
.sh-series-num { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--ink-ghost); margin-bottom: 12px; }
.sh-title {
  font-family: var(--serif); font-size: clamp(48px, 5vw, 80px);
  font-weight: 300; line-height: 1.04; color: var(--ink); margin-bottom: 28px;
}
.sh-title em { font-style: italic; color: var(--gold); }
.sh-subtitle { font-family: var(--serif); font-size: 20px; font-weight: 300; font-style: italic; color: var(--ink-soft); margin-bottom: 32px; }
.sh-desc {
  font-size: 14px; line-height: 2; color: var(--ink-soft); max-width: 480px;
  margin-bottom: 48px; font-weight: 300;
}
.sh-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; }
.sh-tag {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-deep);
  border: 1px solid rgba(184,149,74,0.4); padding: 7px 14px;
}
.sh-ctas { display: flex; gap: 20px; align-items: center; margin-bottom: 56px; }
.btn-gold {
  background: var(--gold); color: #fff; padding: 15px 36px;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  border: none; cursor: pointer; font-family: var(--sans); font-weight: 500;
  text-decoration: none; display: inline-block; transition: background 0.3s;
}
.btn-gold:hover { background: var(--gold-deep); }
.btn-outline {
  background: transparent; border: 1px solid rgba(184,149,74,0.5); color: var(--gold);
  padding: 14px 28px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; display: inline-block; transition: all 0.3s; cursor: pointer;
}
.btn-outline:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.sh-stats { display: flex; gap: 0; border-top: 1px solid var(--cream-mid); padding-top: 40px; }
.sh-stat { padding-right: 40px; margin-right: 40px; border-right: 1px solid var(--cream-mid); }
.sh-stat:last-child { border: none; padding: 0; margin: 0; }
.sh-stat-num { font-family: var(--serif); font-size: 34px; font-weight: 300; color: var(--ink); line-height: 1; }
.sh-stat-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-ghost); margin-top: 4px; }

.sh-right {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #EFE8D6 0%, #E8DEC8 50%, #E2D6BC 100%);
}
.sh-right-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 55% 15%, rgba(184,149,74,0.22) 0%, transparent 60%),
              radial-gradient(ellipse at 25% 85%, rgba(184,149,74,0.1) 0%, transparent 50%);
}
.sh-texture {
  position: absolute; inset: 0; opacity: 0.035;
  background-image: repeating-linear-gradient(0deg, #8A6D2F 0, #8A6D2F 1px, transparent 1px, transparent 48px),
    repeating-linear-gradient(90deg, #8A6D2F 0, #8A6D2F 1px, transparent 1px, transparent 48px);
}
.sh-visual-wrap {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.sh-visual-wrap img.sh-hero-img {
  width: 100%; height: 100%; object-fit: cover;
}
.sh-badge-star {
  position: absolute; top: 90px; right: 40px;
  background: var(--gold); color: #fff; width: 90px; height: 90px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.sh-badge-star-top { font-size: 18px; }
.sh-badge-star-text { font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.85); line-height: 1.4; margin-top: 2px; }
.sh-info-tag {
  position: absolute; bottom: 56px; left: 44px;
  background: rgba(249,245,238,0.94); backdrop-filter: blur(12px);
  border: 1px solid rgba(184,149,74,0.28); padding: 22px 26px; max-width: 240px;
}
.sh-info-tag-label { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.sh-info-tag-text { font-family: var(--serif); font-size: 16px; color: var(--ink); line-height: 1.4; }
.sh-info-tag-sub { font-size: 11px; color: var(--ink-ghost); margin-top: 5px; }

/* ══════════════════════════════════
   FLOOR 2: DESIGN STORY
══════════════════════════════════ */
.design-story {
  background: var(--ink); padding: 120px 64px;
}
.ds-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.ds-left { }
.ds-kicker { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
.ds-kicker-line { width: 30px; height: 1px; background: var(--gold); }
.ds-heading { font-family: var(--serif); font-size: clamp(36px, 3.5vw, 56px); font-weight: 300; color: var(--white); line-height: 1.12; margin-bottom: 36px; }
.ds-heading em { font-style: italic; color: var(--gold); }
.ds-body { font-size: 14px; line-height: 2.1; color: rgba(255,255,255,0.52); font-weight: 300; margin-bottom: 32px; }
.ds-body + .ds-body { margin-top: 0; }
.ds-pull { font-family: var(--serif); font-size: 22px; font-style: italic; font-weight: 300; color: var(--gold-light); line-height: 1.6; border-left: 2px solid var(--gold); padding-left: 28px; margin: 40px 0; }
.ds-features { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
.ds-feat { border-top: 1px solid rgba(184,149,74,0.2); padding-top: 20px; }
.ds-feat-icon { width: 36px; height: 36px; border: 1px solid rgba(184,149,74,0.35); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.ds-feat-title { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); margin-bottom: 6px; }
.ds-feat-text { font-size: 12px; color: rgba(255,255,255,0.38); line-height: 1.8; }

.ds-right {
  position: relative; aspect-ratio: 3/4;
  background: linear-gradient(160deg, #2C271C 0%, #1C1912 100%);
  border: 1px solid rgba(184,149,74,0.12);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ds-right-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -55%);
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,149,74,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.ds-visual-label {
  position: absolute; bottom: 28px; left: 0; right: 0; text-align: center;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(184,149,74,0.5);
}

/* ══════════════════════════════════
   FLOOR 3: PRODUCT VARIANTS
══════════════════════════════════ */
.variants-section {
  background: var(--cream); padding: 120px 64px;
}
.vs-header { text-align: center; margin-bottom: 72px; }
.vs-kicker { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.vs-kicker-line { width: 28px; height: 1px; background: var(--gold); }
.vs-title { font-family: var(--serif); font-size: clamp(32px, 3vw, 50px); font-weight: 300; color: var(--ink); }
.vs-title em { font-style: italic; color: var(--gold); }
.vs-sub { font-size: 13px; color: var(--ink-ghost); margin-top: 12px; letter-spacing: 0.5px; line-height: 1.8; }

.variants-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.variant-card {
  background: var(--cream-dark); border: 1px solid rgba(184,149,74,0.12);
  padding: 0 36px 48px; position: relative; overflow: hidden;
  transition: box-shadow 0.35s, transform 0.35s;
}
.variant-card:hover { box-shadow: 0 16px 60px rgba(184,149,74,0.14); transform: translateY(-4px); z-index: 2; }
.vc-num { font-size: 60px; font-family: var(--serif); font-weight: 300; color: rgba(184,149,74,0.12); position: absolute; top: 20px; right: 24px; line-height: 1; z-index: 2; }
.vc-visual { height: 220px; display: flex; align-items: center; justify-content: center; margin: 0 -36px 32px; overflow: hidden; background: #fff; }
.vc-drawing-img { max-width: 100%; max-height: 220px; object-fit: contain; }
.vc-badge { display: inline-block; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(184,149,74,0.4); padding: 5px 12px; margin-bottom: 16px; }
.vc-name { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--ink); margin-bottom: 8px; }
.vc-model { font-size: 11px; letter-spacing: 2px; color: var(--ink-ghost); text-transform: uppercase; margin-bottom: 16px; }
.vc-sizes { font-size: 12px; color: var(--gold); line-height: 2; margin-bottom: 24px; letter-spacing: 1px; }
.vc-actions { display: flex; gap: 12px; }
.vc-btn {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none !important;
  padding: 10px 20px; transition: background 0.25s, border-color 0.25s; display: inline-block; cursor: pointer;
}
.vc-btn-outline { border: 1px solid rgba(184,149,74,0.4); color: var(--gold) !important; background: transparent !important; }
.vc-btn-outline:hover { background: var(--gold) !important; color: #fff !important; }
.vc-btn-gold { background: var(--gold) !important; color: #fff !important; border: 1px solid var(--gold); }
.vc-btn-gold:hover { background: var(--gold-deep) !important; color: #fff !important; border-color: var(--gold-deep); }

/* ══════════════════════════════════
   FLOOR 4: PROJECT GALLERY
══════════════════════════════════ */
.gallery-section { background: var(--cream-dark); padding: 120px 0; }
.gallery-header { padding: 0 64px; margin-bottom: 60px; display: flex; justify-content: space-between; align-items: flex-end; }
.gh-left .gh-kicker { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.gh-left .gh-title { font-family: var(--serif); font-size: clamp(32px, 3vw, 48px); font-weight: 300; color: var(--ink); }
.gh-left .gh-title em { font-style: italic; color: var(--gold); }
.gh-right { font-size: 12px; color: var(--ink-ghost); letter-spacing: 0.5px; text-align: right; }

.gallery-scroll { display: flex; gap: 2px; overflow-x: auto; padding: 0 64px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 380px; scroll-snap-align: start; position: relative;
  aspect-ratio: 3/4; overflow: hidden; cursor: pointer;
  background: linear-gradient(160deg, #EDE6D6 0%, #E0D6C0 100%);
  border: 1px solid rgba(184,149,74,0.1);
}
.gallery-item:hover .gi-overlay { opacity: 1; }
.gallery-item:hover .gi-svg { transform: scale(1.04); }
.gi-svg { transition: transform 0.5s ease; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.gi-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,25,18,0.88) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 32px;
}
.gi-label { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.gi-caption { font-family: var(--serif); font-size: 20px; color: #fff; font-weight: 300; line-height: 1.3; }
.gi-loc { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 6px; }

/* ══════════════════════════════════
   FLOOR 5: SPECS & CUSTOMIZATION
══════════════════════════════════ */
.specs-section { background: var(--cream); padding: 120px 64px; }
.specs-inner { max-width: 1200px; margin: 0 auto; }
.specs-header { margin-bottom: 72px; }
.specs-kicker { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 14px; }
.specs-kicker-line { width: 28px; height: 1px; background: var(--gold); }
.specs-title { font-family: var(--serif); font-size: clamp(32px, 3vw, 50px); font-weight: 300; color: var(--ink); }
.specs-title em { font-style: italic; color: var(--gold); }

.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

/* Specs table */
.specs-table-wrap { }
.specs-table-head { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--ink-ghost); margin-bottom: 24px; padding-bottom: 14px; border-bottom: 1px solid rgba(184,149,74,0.2); }
.spec-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0; border-bottom: 1px solid rgba(184,149,74,0.1);
}
.spec-row:last-child { border-bottom: none; }
.spec-key { font-size: 12px; letter-spacing: 1px; color: var(--ink-ghost); text-transform: uppercase; }
.spec-val { font-size: 14px; color: var(--ink); font-weight: 400; text-align: right; max-width: 55%; line-height: 1.6; }

.spec-certs { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.cert-badge {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid rgba(184,149,74,0.3); padding: 10px 16px;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-deep);
}
.cert-icon { width: 18px; height: 18px; }

/* Customization */
.custom-wrap { }
.custom-head { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--ink-ghost); margin-bottom: 24px; padding-bottom: 14px; border-bottom: 1px solid rgba(184,149,74,0.2); }
.custom-block { margin-bottom: 36px; }
.custom-block-label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-mid); margin-bottom: 16px; }
.finish-swatches { display: flex; gap: 14px; flex-wrap: wrap; }
.swatch-item { display: flex; flex-direction: column; align-items: center; gap: 8px; cursor: pointer; }
.swatch-circle { width: 42px; height: 42px; border-radius: 50%; border: 2px solid transparent; transition: border-color 0.25s; }
.swatch-item:hover .swatch-circle { border-color: var(--gold); }
.swatch-circle.gold { background: linear-gradient(135deg, #D4B06A 0%, #8A6D2F 100%); }
.swatch-circle.chrome { background: linear-gradient(135deg, #E8E8E8 0%, #A0A0A0 100%); }
.swatch-circle.black { background: linear-gradient(135deg, #3D3D3D 0%, #111 100%); }
.swatch-circle.bronze { background: linear-gradient(135deg, #8C6538 0%, #4A3020 100%); }
.swatch-label { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-ghost); }
.custom-option { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(184,149,74,0.08); }
.custom-option:last-child { border: none; }
.co-icon { width: 32px; height: 32px; border: 1px solid rgba(184,149,74,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.co-text { }
.co-title { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-mid); margin-bottom: 3px; }
.co-desc { font-size: 12px; color: var(--ink-ghost); line-height: 1.7; }

.mofun-cta-bar {
  margin-top: 48px; background: var(--ink); padding: 32px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.mofun-cta-text { }
.mofun-cta-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.mofun-cta-desc { font-family: var(--serif); font-size: 18px; color: var(--white); font-weight: 300; }
.mofun-cta-btn {
  background: var(--gold); color: #fff; padding: 14px 28px;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; white-space: nowrap; transition: background 0.3s; display: inline-block;
}
.mofun-cta-btn:hover { background: var(--gold-deep); }

/* ══════════════════════════════════
   FLOOR 6: RELATED COLLECTIONS
══════════════════════════════════ */
.related-section { background: var(--cream-dark); padding: 120px 64px; }
.related-header { text-align: center; margin-bottom: 64px; }
.rel-kicker { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.rel-title { font-family: var(--serif); font-size: clamp(30px, 2.8vw, 46px); font-weight: 300; color: var(--ink); }
.rel-title em { font-style: italic; color: var(--gold); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.related-card {
  background: var(--cream); border: 1px solid rgba(184,149,74,0.12);
  overflow: hidden; transition: box-shadow 0.35s, transform 0.3s; cursor: pointer;
  text-decoration: none; color: inherit; display: block;
}
.related-card:hover { box-shadow: 0 12px 48px rgba(184,149,74,0.15); transform: translateY(-3px); }
.rc-visual {
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.rc-info { padding: 28px 28px 32px; }
.rc-series { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.rc-name { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--ink); margin-bottom: 8px; }
.rc-mat { font-size: 12px; color: var(--ink-ghost); line-height: 1.6; margin-bottom: 18px; }
.rc-link { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 8px; }
.rc-link svg { transition: transform 0.25s; }
.related-card:hover .rc-link svg { transform: translateX(4px); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer { background: var(--ink); padding: 88px 64px 44px; }

/* ══════════════════════════════════
   STICKY INQUIRY BAR
══════════════════════════════════ */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: rgba(28,25,18,0.97); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(184,149,74,0.3);
  padding: 16px 64px; display: flex; align-items: center; justify-content: space-between;
  transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-text { }
.sb-kicker { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.sb-desc { font-family: var(--serif); font-size: 18px; color: var(--white); font-weight: 300; }
.sb-right { display: flex; align-items: center; gap: 20px; }
.sb-dismiss { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); cursor: pointer; text-decoration: none; transition: color 0.25s; }
.sb-dismiss:hover { color: rgba(255,255,255,0.6); }
.sb-btn { background: var(--gold) !important; color: #fff !important; padding: 14px 32px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none !important; transition: background 0.3s; display: inline-block; cursor: pointer; }
.sb-btn:hover { background: var(--gold-deep) !important; color: #fff !important; }

/* ══ MODAL ══ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500; background: rgba(28,25,18,0.88);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--cream); max-width: 520px; width: 90%; padding: 56px 52px;
  position: relative; border: 1px solid rgba(184,149,74,0.2);
  transform: translateY(20px); transition: transform 0.4s;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 22px; right: 24px; cursor: pointer;
  font-size: 22px; color: var(--ink-ghost); line-height: 1; background: none; border: none;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--ink); }
.modal-kicker { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.modal-title { font-family: var(--serif); font-size: 30px; font-weight: 300; color: var(--ink); margin-bottom: 32px; }
.modal-title em { font-style: italic; color: var(--gold); }
.form-group { margin-bottom: 20px; }
.form-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-soft); display: block; margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--cream-dark) !important; border: 1px solid rgba(184,149,74,0.22) !important;
  padding: 13px 16px; font-family: var(--sans); font-size: 13px; color: var(--ink) !important;
  outline: none; transition: border-color 0.25s;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-ghost) !important; opacity: 1 !important; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold) !important; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23B8954A' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") !important; background-repeat: no-repeat !important; background-position: right 16px center !important; padding-right: 40px; cursor: pointer; }
.form-textarea { height: 100px; resize: vertical; }
.form-series-note { background: rgba(184,149,74,0.08); border: 1px solid rgba(184,149,74,0.2); padding: 12px 16px; margin-bottom: 24px; font-size: 12px; color: var(--ink-soft); }
.form-series-note strong { color: var(--gold-deep); }
.form-submit { width: 100%; background: var(--gold) !important; color: #fff !important; padding: 16px; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; border: none; cursor: pointer; font-family: var(--sans); font-weight: 500; transition: background 0.3s; }
.form-submit:hover { background: var(--gold-deep) !important; }

/* ══ ANIMATIONS ══ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

/* ══ MARQUEE ══ */
.marquee-bar { background: var(--ink); padding: 14px 0; overflow: hidden; border-top: 1px solid rgba(184,149,74,0.2); border-bottom: 1px solid rgba(184,149,74,0.2); }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 28s linear infinite; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.marquee-item { display: inline-flex; align-items: center; gap: 18px; padding: 0 36px; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: 0.6; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #F9F5EE;
  --cream-dark:  #F2EDE2;
  --cream-mid:   #EDE6D6;
  --gold:        #B8954A;
  --gold-light:  #D4B06A;
  --gold-pale:   #E8D5A8;
  --gold-deep:   #8A6D2F;
  --ink:         #1C1912;
  --ink-mid:     #3D3828;
  --ink-soft:    #6B6250;
  --ink-ghost:   #A09880;
  --white:       #FFFFFF;
  --serif: 'Cormorant Garamond', serif;
  --sans:  'Jost', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--ink); overflow-x: hidden; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-pale); }

/* ══════════════════════════ NAV ══════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 76px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px;
  background: rgba(249,245,238,0.88); backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(184,149,74,0.18);
  transition: box-shadow 0.3s;
}

/* ══════════════════════════ PAGE HERO ══════════════════════════ */
.page-hero {
  position: relative; padding: 180px 64px 100px; overflow: hidden;
  background: var(--ink);
  min-height: 520px; display: flex; align-items: flex-end;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 40%, rgba(184,149,74,0.08), transparent),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(184,149,74,0.05), transparent);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23B8954A' stroke-width='0.3' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 1400px; margin: 0 auto; }

.hero-content .breadcrumb {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 32px; display: flex; align-items: center; gap: 10px;
}
.hero-content .breadcrumb a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.25s; }
.hero-content .breadcrumb a:hover { color: var(--gold); }
.hero-content .breadcrumb-sep { color: var(--gold); font-size: 9px; }

.hero-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
}
.page-h1 {
  font-family: var(--serif); font-size: 56px; font-weight: 400; line-height: 1.1;
  color: var(--white); letter-spacing: -0.5px;
}
.page-h1 em { color: var(--gold); font-style: italic; }
.page-desc {
  font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.38); font-weight: 300; max-width: 480px;
}

/* Decorative gold line */
.hero-deco {
  position: absolute; top: 76px; right: 64px; width: 1px; height: 120px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* ══════════════════════════ CONTACT SECTION ══════════════════════════ */
.contact-section {
  padding: 100px 64px; max-width: 1400px; margin: 0 auto;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
}

/* ── Left: Contact Info ── */
.contact-info { padding-top: 12px; }
.ci-kicker {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.ci-kicker::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}
.ci-title {
  font-family: var(--serif); font-size: 34px; font-weight: 400; line-height: 1.25;
  color: var(--ink); margin-bottom: 20px;
}
.ci-title em { color: var(--gold); font-style: italic; }
.ci-desc {
  font-size: 14px; line-height: 1.9; color: var(--ink-soft); font-weight: 300; margin-bottom: 48px;
}

/* Contact cards */
.contact-cards { display: flex; flex-direction: column; gap: 0; }
.cc-card {
  display: grid; grid-template-columns: 52px 1fr; gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(184,149,74,0.12);
}
.cc-card:first-child { border-top: 1px solid rgba(184,149,74,0.12); }
.cc-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(184,149,74,0.3);
  display: flex; align-items: center; justify-content: center;
}
.cc-icon svg { width: 20px; height: 20px; }
.cc-label {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.cc-value {
  font-size: 14px; line-height: 1.85; color: var(--ink-mid); font-weight: 300;
}
.cc-value a { color: var(--ink-mid); text-decoration: none; border-bottom: 1px solid rgba(184,149,74,0.3); transition: all 0.25s; }
.cc-value a:hover { color: var(--gold); border-color: var(--gold); }

/* Global offices */
.offices-section { margin-top: 52px; }
.offices-kicker {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.offices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.office-card {
  background: var(--cream-dark); padding: 24px 28px; position: relative;
  border-left: 2px solid var(--gold-pale); transition: border-color 0.3s;
}
.office-card:hover { border-left-color: var(--gold); }
.office-flag {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: #fff;
  font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 1px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.office-name {
  font-family: var(--serif); font-size: 16px; font-weight: 500;
  color: var(--ink); margin-bottom: 4px;
}
.office-detail { font-size: 12px; color: var(--ink-ghost); font-weight: 300; line-height: 1.7; }

/* Certifications strip */
.certs-strip {
  margin-top: 52px; padding-top: 32px;
  border-top: 1px solid rgba(184,149,74,0.12);
}
.certs-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--ink-ghost); margin-bottom: 16px;
}
.certs-row { display: flex; gap: 12px; flex-wrap: wrap; }
.cert-badge {
  padding: 6px 16px; font-size: 11px; letter-spacing: 1.5px; font-weight: 500;
  border: 1px solid rgba(184,149,74,0.2); color: var(--ink-soft);
  background: var(--cream);
}

/* ── Right: Quote Form ── */
.quote-form-wrap {
  background: var(--white); padding: 56px 52px;
  border: 1px solid rgba(184,149,74,0.15);
  position: relative;
}
.quote-form-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-pale), transparent);
}
.qf-kicker {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.qf-title {
  font-family: var(--serif); font-size: 30px; font-weight: 400;
  color: var(--ink); margin-bottom: 8px; line-height: 1.2;
}
.qf-title em { color: var(--gold); font-style: italic; }
.qf-subtitle {
  font-size: 13px; color: var(--ink-ghost); font-weight: 300; margin-bottom: 36px; line-height: 1.7;
}

/* Form elements */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-label {
  display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 8px; font-weight: 500;
}
.form-label .req { color: var(--gold); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 18px;
  border: 1px solid rgba(184,149,74,0.2);
  background: var(--cream); font-family: var(--sans);
  font-size: 14px; color: var(--ink); font-weight: 300;
  outline: none; transition: all 0.3s;
  -webkit-appearance: none; appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder {
  color: var(--ink-ghost); font-weight: 300;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,149,74,0.08);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A09880' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 12px;
  padding-right: 40px; cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.7; }

/* Checkbox group */
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.checkbox-item {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  font-size: 13px; color: var(--ink-mid); font-weight: 300;
}
.checkbox-item input[type="checkbox"] { display: none; }
.checkbox-box {
  width: 18px; height: 18px; flex-shrink: 0;
  border: 1.5px solid rgba(184,149,74,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.checkbox-item input:checked + .checkbox-box {
  background: var(--gold); border-color: var(--gold);
}
.checkbox-item input:checked + .checkbox-box::after {
  content: '✓'; color: var(--white); font-size: 11px; font-weight: 600;
}

/* Submit */
.form-submit {
  width: 100%; padding: 18px 32px; margin-top: 12px;
  background: var(--gold); color: var(--white);
  border: none; cursor: pointer; font-family: var(--sans);
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 500;
  transition: all 0.35s; position: relative; overflow: hidden;
}
.form-submit:hover { background: var(--gold-deep); }
.form-submit::after {
  content: '→'; margin-left: 10px; transition: margin-left 0.25s;
}
.form-submit:hover::after { margin-left: 16px; }

.form-note {
  text-align: center; margin-top: 20px;
  font-size: 11px; color: var(--ink-ghost); font-weight: 300; line-height: 1.7;
}

/* ══════════════════════════ MAP SECTION ══════════════════════════ */
.map-section {
  position: relative; background: var(--ink);
  padding: 80px 64px;
}
.map-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23B8954A' stroke-width='0.3' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.map-inner { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; }
.map-head-row {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px;
}
.map-kicker {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.map-title {
  font-family: var(--serif); font-size: 36px; font-weight: 400;
  color: var(--white); line-height: 1.2;
}
.map-title em { color: var(--gold); font-style: italic; }
.map-desc {
  font-size: 14px; color: rgba(255,255,255,0.35); font-weight: 300; max-width: 400px; text-align: right; line-height: 1.8;
}

.map-embed {
  width: 100%; height: 420px;
  border: 1px solid rgba(184,149,74,0.15);
  background: var(--ink-mid); position: relative; overflow: hidden;
}
.map-embed .map-image {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
/* Simulated map placeholder */
.map-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse at center, rgba(184,149,74,0.06), transparent 70%),
    var(--ink-mid);
  position: relative;
}
.map-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h120v120H0z' fill='none'/%3E%3Cpath d='M60 0v120M0 60h120' stroke='%23B8954A' stroke-width='0.2' opacity='0.1'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}
.map-pin {
  position: relative; z-index: 2; text-align: center;
}
.map-pin-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: pin-pulse 2.5s ease-in-out infinite;
}
@keyframes pin-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,149,74,0.3); }
  50% { box-shadow: 0 0 0 16px rgba(184,149,74,0); }
}
.map-pin-label {
  font-family: var(--serif); font-size: 18px; color: var(--white); margin-bottom: 4px;
}
.map-pin-sub { font-size: 12px; color: rgba(255,255,255,0.35); font-weight: 300; }

/* ══════════════════════════ SHOWROOM CTA ══════════════════════════ */
.showroom-cta {
  padding: 100px 64px; max-width: 1400px; margin: 0 auto;
}
.showroom-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid rgba(184,149,74,0.15);
}
.showroom-img {
  background: var(--ink);
  min-height: 400px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.showroom-img::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 40% 50%, rgba(184,149,74,0.12), transparent 60%),
    var(--ink);
}
.showroom-img.has-image::before {
  background: linear-gradient(to top, rgba(15,14,11,0.55) 0%, rgba(15,14,11,0) 50%);
}
/* Decorative chandelier silhouette */
.showroom-deco {
  position: relative; z-index: 2; text-align: center;
}
.deco-lines {
  display: flex; justify-content: center; gap: 6px; margin-bottom: 20px;
}
.deco-line {
  width: 1px; background: var(--gold-pale); opacity: 0.4;
}
.deco-line:nth-child(1) { height: 80px; }
.deco-line:nth-child(2) { height: 120px; }
.deco-line:nth-child(3) { height: 100px; }
.deco-line:nth-child(4) { height: 130px; }
.deco-line:nth-child(5) { height: 90px; }
.deco-dot {
  width: 8px; height: 8px; border: 1px solid var(--gold-pale); border-radius: 50%;
  margin: 0 auto; opacity: 0.5;
}

.showroom-text {
  padding: 64px 56px; display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.sr-kicker {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.sr-title {
  font-family: var(--serif); font-size: 32px; font-weight: 400;
  color: var(--ink); margin-bottom: 16px; line-height: 1.2;
}
.sr-title em { color: var(--gold); font-style: italic; }
.sr-desc {
  font-size: 14px; line-height: 1.9; color: var(--ink-soft); font-weight: 300; margin-bottom: 36px;
}
.sr-details {
  display: flex; gap: 40px; margin-bottom: 36px;
}
.sr-detail-item {}
.sr-detail-num {
  font-family: var(--serif); font-size: 36px; font-weight: 400;
  color: var(--ink); line-height: 1;
}
.sr-detail-label {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-ghost); margin-top: 4px;
}
.sr-btn {
  display: inline-block; padding: 14px 36px;
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  font-family: var(--sans); font-weight: 500; transition: all 0.3s;
}
.sr-btn:hover { background: var(--gold); color: var(--white); }

/* ══════════════════════════ FAQ SECTION ══════════════════════════ */
.faq-section {
  padding: 0 64px 100px; max-width: 1400px; margin: 0 auto;
}
.faq-head {
  text-align: center; margin-bottom: 56px;
}
.faq-kicker {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.faq-title {
  font-family: var(--serif); font-size: 36px; font-weight: 400; color: var(--ink);
}
.faq-title em { color: var(--gold); font-style: italic; }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.faq-card {
  padding: 32px 36px;
  background: var(--white);
  border: 1px solid rgba(184,149,74,0.1);
  transition: border-color 0.3s;
  cursor: default;
}
.faq-card:hover { border-color: rgba(184,149,74,0.3); }
.faq-q {
  font-family: var(--serif); font-size: 18px; font-weight: 500;
  color: var(--ink); margin-bottom: 12px; line-height: 1.35;
}
.faq-a {
  font-size: 13px; line-height: 1.9; color: var(--ink-soft); font-weight: 300;
}

/* ══════════════════════════ FOOTER ══════════════════════════ */
footer { background: var(--ink); padding: 88px 64px 44px; }

/* ══════════════════════════ REVEAL ANIMATION ══════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ══════════════════════════ SUCCESS STATE ══════════════════════════ */
.form-success {
  display: none; text-align: center; padding: 48px 32px;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 64px; height: 64px; margin: 0 auto 24px;
  border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.form-success h3 {
  font-family: var(--serif); font-size: 28px; font-weight: 400;
  color: var(--ink); margin-bottom: 12px;
}
.form-success h3 em { color: var(--gold); font-style: italic; }
.form-success p {
  font-size: 14px; line-height: 1.85; color: var(--ink-soft); font-weight: 300; max-width: 400px; margin: 0 auto;
}

/* ══════════════════════════ SHARED CTA ENQUIRY SECTION ══════════════════════════ */
/* Two-column layout: text left, form right — matches design mockup Pattern A */
.kl-cta-section {
  padding: 120px 64px;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.kl-cta-section__deco {
  position: absolute; top: -60px; right: -40px;
  width: 400px; height: 400px; opacity: 0.07;
  border-radius: 50%; border: 80px solid var(--gold);
}
.kl-cta-section__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; position: relative; z-index: 1;
  max-width: 1400px; margin: 0 auto;
}

/* Left column */
.kl-cta-section__left .section-kicker { margin-bottom: 20px; }
.kl-cta-section__left .section-h2 { margin-bottom: 24px; }
.kl-cta-section__left .kl-cta-desc {
  font-size: 14px; line-height: 1.9; color: var(--ink-soft);
  font-weight: 300; margin-bottom: 40px;
}

/* Detail items */
.kl-cta-details { display: flex; flex-direction: column; gap: 16px; }
.kl-cta-detail { display: flex; gap: 14px; align-items: flex-start; }
.kl-cta-detail-icon {
  width: 32px; height: 32px; border: 1px solid var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.kl-cta-detail-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 2px;
}
.kl-cta-detail-text { font-size: 13px; line-height: 1.6; color: var(--ink-soft); }

/* Assurances list (hospitality-style) */
.kl-cta-assurances { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
.kl-cta-assurance {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--ink-soft); line-height: 1.6;
}
.kl-cta-assurance-icon { color: var(--gold); flex-shrink: 0; }

/* Right column: override .kl-cf form styles to match mockup */
.kl-cta-section__right .kl-cf__label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-ghost); margin-bottom: 8px;
}
.kl-cta-section__right .kl-cf__input,
.kl-cta-section__right .kl-cf__select,
.kl-cta-section__right .kl-cf__textarea {
  background: var(--cream); border: 1px solid var(--cream-mid);
  border-bottom: 1px solid rgba(184,149,74,0.25);
  border-radius: 0; padding: 14px 16px;
  font-size: 13.5px; font-weight: 300; color: var(--ink);
}
.kl-cta-section__right .kl-cf__input:focus,
.kl-cta-section__right .kl-cf__select:focus,
.kl-cta-section__right .kl-cf__textarea:focus {
  border-color: rgba(184,149,74,0.5); background: var(--white);
  border-bottom-color: var(--gold); box-shadow: none;
}
.kl-cta-section__right .kl-cf__input::placeholder,
.kl-cta-section__right .kl-cf__textarea::placeholder {
  color: rgba(107,98,80,0.4);
}
.kl-cta-section__right .kl-cf__submit {
  width: 100%; background: var(--gold); color: #fff;
  padding: 18px; font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 500;
  border: none; border-radius: 0; cursor: pointer;
  font-family: var(--sans); transition: background 0.3s; margin-top: 8px;
}
.kl-cta-section__right .kl-cf__submit:hover { background: var(--gold-deep); }
.kl-cta-section__right .kl-cf__note {
  font-size: 11px; color: var(--ink-ghost); text-align: center;
  margin-top: 16px; line-height: 1.6;
}
.kl-cta-section__right .kl-cf__success { padding: 40px 20px; }
.kl-cta-section__right .kl-cf__success h3 { color: var(--ink); }
.kl-cta-section__right .kl-cf__success p { color: var(--ink-soft); }

/* ══════════════════════════ RESPONSIVE ══════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  .page-hero { padding: 160px 32px 80px; }
  .hero-row { grid-template-columns: 1fr; gap: 32px; }
  .contact-section { padding: 80px 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .kl-cta-section { padding: 80px 36px; }
  .kl-cta-section__inner { gap: 48px; }
  .map-section { padding: 60px 32px; }
  .showroom-cta { padding: 80px 32px; }
  .showroom-grid { grid-template-columns: 1fr; }
  .showroom-img { min-height: 280px; }
  .faq-section { padding: 0 32px 80px; }
  .faq-grid { grid-template-columns: 1fr; }
  footer { padding: 64px 32px 40px; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; height: 64px; }
  .page-hero { padding: 140px 20px 60px; min-height: 400px; }
  .page-h1 { font-size: 36px; }
  .contact-section { padding: 60px 20px; }
  .contact-grid { gap: 48px; }
  .kl-cta-section { padding: 64px 24px; }
  .kl-cta-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .kl-cta-section__deco { display: none; }
  .quote-form-wrap { padding: 40px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .map-section { padding: 48px 20px; }
  .map-embed { height: 300px; }
  .map-head-row { flex-direction: column; align-items: flex-start; gap: 20px; }
  .map-desc { text-align: left; }
  .showroom-cta { padding: 60px 20px; }
  .showroom-text { padding: 40px 28px; }
  .sr-details { gap: 24px; }
  .faq-section { padding: 0 20px 60px; }
  footer { padding: 48px 20px 32px; }
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #F9F5EE;
  --cream-dark:  #F2EDE2;
  --cream-mid:   #EDE6D6;
  --gold:        #B8954A;
  --gold-light:  #D4B06A;
  --gold-pale:   #E8D5A8;
  --gold-deep:   #8A6D2F;
  --ink:         #1C1912;
  --ink-mid:     #3D3828;
  --ink-soft:    #6B6250;
  --ink-ghost:   #A09880;
  --white:       #FFFFFF;
  --serif: 'Cormorant Garamond', serif;
  --sans:  'Jost', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--ink); overflow-x: hidden; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-pale); }

/* ══ REVEAL ══ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-l.in { opacity: 1; transform: translateX(0); }
.reveal-r { opacity: 0; transform: translateX(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-r.in { opacity: 1; transform: translateX(0); }

/* ══ NAV ══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 76px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px;
  background: rgba(249,245,238,0.92); backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(184,149,74,0.18);
}

/* ══ PAGE HERO (子页面深色 hero) ══ */
.page-hero-dark {
  min-height: 68vh; padding-top: 76px; position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  background: var(--ink);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
}
.hero-bg::before {
  content: '';
  display: block;
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,  rgba(15,14,11,0.82) 0%, rgba(15,14,11,0.55) 45%, rgba(15,14,11,0.08) 75%, rgba(15,14,11,0) 100%),
    linear-gradient(to top,    rgba(15,14,11,0.55) 0%, rgba(15,14,11,0) 40%);
}
.hero-grid {
  display: none;
}
/* Decorative chandelier SVG art */
.hero-deco {
  display: none;
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  padding: 0 64px 90px;
}
.hero-breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 36px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(184,149,74,0.7);
}
.hero-breadcrumb a { color: rgba(184,149,74,0.5); text-decoration: none; transition: color 0.2s; }
.hero-breadcrumb a:hover { color: var(--gold); }
.hero-breadcrumb-sep { color: rgba(184,149,74,0.3); }
.hero-eyebrow {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 400; margin-bottom: 20px;
}
.hero-h1 {
  font-family: var(--serif); font-size: clamp(52px, 7vw, 92px);
  font-weight: 300; color: var(--cream); line-height: 1.03; letter-spacing: -1px;
  margin-bottom: 28px;
}
.hero-h1 em { font-style: italic; color: var(--gold-light); }
.hero-desc {
  max-width: 560px; font-size: 15px; line-height: 1.75; color: rgba(249,245,238,0.6);
  font-weight: 300; margin-bottom: 48px;
}
.hero-stats {
  display: flex; gap: 56px;
}
.hero-stat-num {
  font-family: var(--serif); font-size: 46px; font-weight: 300;
  color: var(--gold-light); line-height: 1;
}
.hero-stat-num sup { font-size: 22px; }
.hero-stat-label {
  font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase;
  color: rgba(249,245,238,0.45); margin-top: 6px;
}

/* ══ FILTER BAR ══ */
.filter-wrap {
  position: sticky; top: 76px; z-index: 100;
  background: var(--cream); border-bottom: 1px solid rgba(184,149,74,0.22);
  box-shadow: 0 2px 20px rgba(28,25,18,0.06);
}
.filter-inner {
  max-width: 1340px; margin: 0 auto;
  padding: 0 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.filter-tabs { display: flex; gap: 0; }
.filter-tab {
  padding: 22px 32px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; font-weight: 500; color: var(--ink-ghost);
  border-bottom: 2px solid transparent; transition: color 0.25s, border-color 0.25s;
  background: none; border-left: none; border-right: none; border-top: none;
  font-family: var(--sans);
}
.filter-tab:hover { color: var(--gold-deep); }
.filter-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.filter-count {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(184,149,74,0.15); color: var(--gold-deep);
  font-size: 9px; font-weight: 600; margin-left: 8px; vertical-align: middle;
}
.filter-right { display: flex; align-items: center; gap: 20px; }
.filter-label { font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--ink-ghost); }
.filter-select {
  font-family: var(--sans); font-size: 12px; color: var(--ink-mid);
  background: transparent; border: 1px solid rgba(184,149,74,0.3);
  padding: 8px 32px 8px 14px; cursor: pointer; letter-spacing: 0.8px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23B8954A' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}

/* ══ FEATURED SECTION ══ */
.featured-wrap {
  padding: 100px 64px 0;
  max-width: 1340px; margin: 0 auto;
}
.section-kicker {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-h2 {
  font-family: var(--serif); font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 300; color: var(--ink); line-height: 1.1; letter-spacing: -0.5px;
}
.section-h2 em { font-style: italic; color: var(--gold); }
.section-intro {
  font-size: 15px; line-height: 1.75; color: var(--ink-soft);
  max-width: 600px; margin-top: 16px; font-weight: 300;
}

/* Featured card — full-width hero case */
.featured-case {
  margin-top: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid rgba(184,149,74,0.2);
  overflow: hidden; position: relative;
}
.featured-visual {
  position: relative; min-height: 560px; background: var(--ink-mid); overflow: hidden;
}
.featured-visual-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #2A2518 0%, #1C1912 40%, #0F0E0B 100%);
}
/* Decorative lighting art for featured card */
.featured-badge {
  position: absolute; top: 32px; left: 32px; z-index: 2;
  background: var(--gold); color: #fff; font-size: 10px;
  letter-spacing: 2.5px; text-transform: uppercase; padding: 7px 16px;
  font-weight: 600;
}
.featured-img-label {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: linear-gradient(transparent, rgba(28,25,18,0.8));
  padding: 60px 36px 36px;
}
.fil-tag {
  display: inline-block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light); border: 1px solid rgba(184,149,74,0.4);
  padding: 4px 12px; margin-bottom: 12px;
}
.fil-name {
  font-family: var(--serif); font-size: 28px; font-weight: 400; color: var(--cream);
  line-height: 1.2;
}

.featured-info {
  padding: 60px 56px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--cream-dark);
}
.featured-info-kicker {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.featured-info-title {
  font-family: var(--serif); font-size: 42px; font-weight: 300;
  color: var(--ink); line-height: 1.1; margin-bottom: 8px;
}
.featured-info-title em { font-style: italic; color: var(--gold-deep); }
.featured-info-loc {
  font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--ink-ghost); margin-bottom: 28px; display: flex; align-items: center; gap: 8px;
}
.featured-info-loc::before {
  content: ''; display: block; width: 20px; height: 1px; background: var(--gold-pale);
}
.featured-info-desc {
  font-size: 15px; line-height: 1.8; color: var(--ink-soft); font-weight: 300;
  margin-bottom: 36px;
}
.featured-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 44px;
  border-top: 1px solid rgba(184,149,74,0.2); padding-top: 28px;
}
.spec-item {}
.spec-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-ghost); margin-bottom: 5px;
}
.spec-val {
  font-family: var(--serif); font-size: 20px; color: var(--ink-mid); font-weight: 400;
}
.btn-gold {
  display: inline-block; background: var(--gold); color: #fff;
  padding: 14px 36px; font-size: 11px; letter-spacing: 2.2px; text-transform: uppercase;
  font-weight: 500; text-decoration: none; font-family: var(--sans);
  transition: background 0.3s; cursor: pointer; border: none; align-self: flex-start;
}
.btn-gold:hover { background: var(--gold-deep); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--gold);
  border: 1px solid var(--gold); padding: 14px 36px;
  font-size: 11px; letter-spacing: 2.2px; text-transform: uppercase;
  font-weight: 500; text-decoration: none; font-family: var(--sans);
  transition: all 0.3s; cursor: pointer; align-self: flex-start; margin-left: 14px;
}
.btn-outline:hover { background: var(--gold); color: #fff; }

/* Secondary featured row */
.featured-row2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 28px;
}
.feat-card-sm {
  position: relative; min-height: 340px; overflow: hidden;
  border: 1px solid rgba(184,149,74,0.15); cursor: pointer;
}
.feat-card-sm:hover .fcs-overlay { opacity: 1; }
.feat-card-sm:hover .fcs-cta { transform: translateY(0); opacity: 1; }
.fcs-overlay {
  position: absolute; inset: 0;
  background: rgba(184,149,74,0.1);
  opacity: 0; transition: opacity 0.4s;
}
.fcs-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: linear-gradient(transparent, rgba(28,25,18,0.85));
  padding: 48px 32px 30px;
}
.fcs-tag {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 8px;
}
.fcs-title {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--cream); margin-bottom: 4px;
}
.fcs-loc {
  font-size: 11px; letter-spacing: 1.2px; color: rgba(249,245,238,0.5); text-transform: uppercase;
}
.fcs-cta {
  margin-top: 14px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); transform: translateY(8px); opacity: 0; transition: all 0.35s;
  display: flex; align-items: center; gap: 8px;
}
.fcs-cta::after {
  content: '→'; transition: transform 0.3s;
}
.feat-card-sm:hover .fcs-cta::after { transform: translateX(4px); }

/* ══ GRID SECTION ══ */
.grid-wrap {
  padding: 100px 64px;
  max-width: 1340px; margin: 0 auto;
}
.grid-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 56px;
}
.grid-head-left {}
.grid-count {
  font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--ink-ghost); margin-bottom: 12px;
}
.see-all {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(184,149,74,0.3); padding-bottom: 4px;
  transition: border-color 0.3s; font-weight: 500;
}
.see-all:hover { border-color: var(--gold); }

/* Masonry-like grid */
.projects-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 24px;
}
.projects-masonry .proj-card {
  border: 1px solid rgba(184,149,74,0.14); overflow: hidden;
  cursor: pointer; transition: box-shadow 0.4s, transform 0.4s;
  background: var(--cream-dark);
}
.projects-masonry .proj-card:hover { box-shadow: 0 20px 60px rgba(28,25,18,0.14); transform: translateY(-3px); }
.projects-masonry .proj-card.tall { grid-row: span 2; }

.projects-masonry .proj-visual {
  position: relative; overflow: hidden;
  background: var(--ink);
}
.projects-masonry .proj-card.tall .proj-visual { height: 480px; }
.projects-masonry .proj-card:not(.tall) .proj-visual { height: 240px; }

.projects-masonry .proj-visual-bg {
  position: absolute; inset: 0;
  transition: transform 0.6s ease;
}
.projects-masonry .proj-card:hover .proj-visual-bg { transform: scale(1.04); }

/* Each project gets a unique gradient art */

/* Chandelier SVG art inside cards */
.projects-masonry .proj-art {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0.55;
}
.projects-masonry .proj-art svg { max-width: 70%; max-height: 80%; }

/* Real image hover zoom for project cards */
.projects-masonry .proj-visual img {
  transition: transform 0.7s ease;
}
.projects-masonry .proj-card:hover .proj-visual img { transform: scale(1.06); }

/* Real image hover zoom for secondary featured cards */
.feat-card-sm img {
  transition: transform 0.7s ease;
}
.feat-card-sm:hover img { transform: scale(1.06); }

.projects-masonry .proj-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,14,11,0.92) 0%, rgba(15,14,11,0.65) 35%, rgba(15,14,11,0.25) 60%, transparent 100%);
  pointer-events: none; z-index: 1;
}
.projects-masonry .proj-visual-overlay { display: none !important; }
.projects-masonry .proj-info {
  padding: 24px 28px 28px;
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
}
.projects-masonry .proj-category {
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 10px;
}
.projects-masonry .proj-name {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: #fff; margin-bottom: 6px; line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.projects-masonry .proj-loc {
  font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin-bottom: 16px; display: flex; align-items: center; gap: 6px;
}
.projects-masonry .proj-loc::before {
  content: ''; display: block; width: 14px; height: 1px; background: var(--gold-pale);
}
.projects-masonry .proj-series {
  font-size: 12px; color: rgba(255,255,255,0.7);
  padding-top: 14px; border-top: 1px solid rgba(184,149,74,0.25);
  display: flex; align-items: center; justify-content: space-between;
}
.projects-masonry .proj-series-name { font-weight: 400; }
.projects-masonry .proj-arrow {
  width: 28px; height: 28px; border: 1px solid rgba(184,149,74,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 13px;
  background: rgba(28,25,18,0.5);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.projects-masonry .proj-card:hover .proj-arrow { background: var(--gold); color: #fff; border-color: var(--gold); }

/* Load more */
.load-more-wrap {
  text-align: center; margin-top: 64px;
}
.btn-load {
  background: transparent; border: 1px solid rgba(184,149,74,0.4);
  color: var(--gold-deep); padding: 16px 48px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  cursor: pointer; font-weight: 500; transition: all 0.3s;
}
.btn-load:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ══ BRAND PARTNERS ══ */
.brands-wrap {
  background: var(--cream-mid); padding: 80px 64px;
  border-top: 1px solid rgba(184,149,74,0.18); border-bottom: 1px solid rgba(184,149,74,0.18);
}
.brands-inner { max-width: 1340px; margin: 0 auto; }
.brands-head {
  text-align: center; margin-bottom: 52px;
}
.brands-kicker {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.brands-title {
  font-family: var(--serif); font-size: 34px; font-weight: 300; color: var(--ink);
}
.brands-row {
  display: flex; align-items: center; justify-content: center;
  gap: 60px; flex-wrap: wrap;
}
.brand-pill {
  font-family: var(--serif); font-size: 18px; font-weight: 400;
  color: var(--ink-soft); letter-spacing: 1px; opacity: 0.7;
  transition: opacity 0.3s, color 0.3s; cursor: default;
}
.brand-pill:hover { opacity: 1; color: var(--gold-deep); }

/* ══ CTA SECTION ══ */
.cta-wrap {
  background: var(--ink); padding: 120px 64px;
  position: relative; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(184,149,74,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 60%, rgba(184,149,74,0.08) 0%, transparent 50%);
}
.cta-grid-overlay {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, #B8954A 0, #B8954A 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(90deg, #B8954A 0, #B8954A 1px, transparent 1px, transparent 80px);
}
.cta-inner {
  max-width: 1340px; margin: 0 auto; position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.cta-left {}
.cta-kicker {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.cta-h2 {
  font-family: var(--serif); font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 300; color: var(--cream); line-height: 1.1; margin-bottom: 24px;
}
.cta-h2 em { font-style: italic; color: var(--gold-light); }
.cta-desc {
  font-size: 15px; line-height: 1.8; color: rgba(249,245,238,0.55);
  font-weight: 300; margin-bottom: 44px;
}
.cta-points { display: flex; flex-direction: column; gap: 14px; margin-bottom: 48px; }
.cta-point {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; color: rgba(249,245,238,0.65); letter-spacing: 0.3px;
}
.cta-point::before {
  content: ''; display: block; width: 20px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-cta-gold {
  background: var(--gold); color: #fff; padding: 16px 40px;
  font-size: 11px; letter-spacing: 2.2px; text-transform: uppercase;
  font-weight: 500; text-decoration: none; font-family: var(--sans);
  transition: background 0.3s; display: inline-block;
}
.btn-cta-gold:hover { background: var(--gold-deep); }
.btn-cta-outline {
  background: transparent; color: rgba(249,245,238,0.7);
  border: 1px solid rgba(249,245,238,0.25);
  padding: 16px 40px; font-size: 11px; letter-spacing: 2.2px; text-transform: uppercase;
  font-weight: 500; text-decoration: none; font-family: var(--sans);
  transition: all 0.3s; display: inline-block;
}
.btn-cta-outline:hover { border-color: rgba(249,245,238,0.6); color: #fff; }

/* CTA Form */
.cta-form {
  background: rgba(249,245,238,0.04); border: 1px solid rgba(184,149,74,0.25);
  padding: 48px 44px;
}
.cta-form-title {
  font-family: var(--serif); font-size: 28px; font-weight: 300;
  color: var(--cream); margin-bottom: 8px;
}
.cta-form-sub {
  font-size: 12px; color: rgba(249,245,238,0.45); margin-bottom: 32px; letter-spacing: 0.3px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(249,245,238,0.5); margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; background: rgba(249,245,238,0.05); border: 1px solid rgba(184,149,74,0.2);
  color: rgba(249,245,238,0.8); font-family: var(--sans); font-size: 14px;
  padding: 12px 16px; outline: none; transition: border-color 0.25s;
  letter-spacing: 0.3px;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(249,245,238,0.25); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23B8954A' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  background-color: rgba(249,245,238,0.05);
}
.form-select option { background: var(--ink-mid); color: var(--cream); }
.form-textarea { height: 100px; resize: vertical; }
.form-submit {
  width: 100%; background: var(--gold); color: #fff;
  padding: 16px; font-family: var(--sans); font-size: 11px;
  letter-spacing: 2.5px; text-transform: uppercase; font-weight: 500;
  border: none; cursor: pointer; transition: background 0.3s; margin-top: 8px;
}
.form-submit:hover { background: var(--gold-deep); }
.form-note {
  font-size: 11px; color: rgba(249,245,238,0.3); text-align: center; margin-top: 14px;
  line-height: 1.6;
}

/* ══ FOOTER ══ */
footer {
  background: var(--ink-mid); padding: 80px 64px 0;
}

/* ══ Hidden items (filter JS) ══ */
.proj-card[data-cat] { transition: opacity 0.3s, transform 0.3s; }
.proj-card.hidden { display: none; }

/* Fix: page-hero 内部的 breadcrumb 不应有背景色 */
.page-hero .breadcrumb,
.hero-content .breadcrumb {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #F9F5EE;
  --cream-dark:  #F2EDE2;
  --cream-mid:   #EDE6D6;
  --gold:        #B8954A;
  --gold-light:  #D4B06A;
  --gold-pale:   #E8D5A8;
  --gold-deep:   #8A6D2F;
  --ink:         #1C1912;
  --ink-mid:     #3D3828;
  --ink-soft:    #6B6250;
  --ink-ghost:   #A09880;
  --white:       #FFFFFF;
  --serif: 'Cormorant Garamond', serif;
  --sans:  'Jost', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--ink); overflow-x: hidden; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-pale); }

/* ═══ REVEAL ANIMATIONS ═══ */
.reveal {
  opacity: 0; transform: translateY(32px); transition: opacity 0.7s cubic-bezier(0.23,1,0.32,1), transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }
.reveal-d4 { transition-delay: 0.48s; }

/* ═══ NAV ═══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 76px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px;
  background: rgba(249,245,238,0.88); backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(184,149,74,0.18);
  transition: box-shadow 0.3s;
}

/* ═══ HERO / FLOOR 1 ═══ */
.hero-oem {
  min-height: 100vh; position: relative; display: flex; flex-direction: column;
  justify-content: center; padding-top: 76px;
  background: var(--ink); overflow: hidden;
}
.hero-oem-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.hero-oem::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(184,149,74,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(184,149,74,0.05) 0%, transparent 60%),
    linear-gradient(180deg, rgba(28,25,18,0.3) 0%, rgba(28,25,18,0.4) 100%);
}
.hero-oem::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0' y1='60' x2='60' y2='0' stroke='rgba(184,149,74,0.04)' stroke-width='0.5'/%3E%3C/svg%3E");
}

.hero-oem-inner {
  position: relative; z-index: 2; padding: 0 64px; max-width: 1440px; margin: 0 auto; width: 100%;
}
.hero-oem-breadcrumb {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.28); margin-bottom: 48px;
}
.hero-oem-breadcrumb a { color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.25s; }
.hero-oem-breadcrumb a:hover { color: var(--gold); }
.hero-oem-breadcrumb span { color: var(--gold-pale); margin: 0 10px; }

.hero-oem-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 36px; display: flex; align-items: center; gap: 14px;
}
.hero-oem-eyebrow-line { width: 36px; height: 1px; background: var(--gold); }

.hero-oem h1 {
  font-family: var(--serif); font-size: clamp(42px, 4.2vw, 68px);
  font-weight: 300; line-height: 1.1; color: var(--white); margin-bottom: 24px;
  max-width: 780px;
}
.hero-oem h1 em { font-style: italic; color: var(--gold); }

.hero-oem-sub {
  font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.45);
  max-width: 560px; margin-bottom: 56px; font-weight: 300; letter-spacing: 0.3px;
}

.hero-oem-ctas { display: flex; gap: 24px; align-items: center; margin-bottom: 80px; }
.btn-gold {
  background: var(--gold); color: #fff; padding: 16px 38px;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  border: none; cursor: pointer; font-family: var(--sans); font-weight: 500;
  text-decoration: none; display: inline-block; transition: background 0.3s;
}
.btn-gold:hover { background: var(--gold-deep); }
.btn-outline {
  border: 1px solid rgba(184,149,74,0.5); color: var(--gold-light); padding: 15px 36px;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  background: transparent; cursor: pointer; font-family: var(--sans); font-weight: 400;
  text-decoration: none; display: inline-block; transition: all 0.3s;
}
.btn-outline:hover { background: rgba(184,149,74,0.1); border-color: var(--gold); }

/* Stats bar */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 40px;
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-family: var(--serif); font-size: 42px; font-weight: 300; color: var(--gold);
  line-height: 1; margin-bottom: 8px;
}
.hero-stat-num .counter { display: inline; }
.hero-stat-lbl {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); font-weight: 400;
}

/* ═══ FLOOR 2 – COOPERATION MODELS ═══ */
.section-pad { padding: 120px 64px; max-width: 1440px; margin: 0 auto; }
.section-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; display: flex; align-items: center; gap: 14px;
}
.section-eyebrow-line { width: 28px; height: 1px; background: var(--gold); }
.section-h2 {
  font-family: var(--serif); font-size: clamp(32px, 3.2vw, 52px);
  font-weight: 300; line-height: 1.12; color: var(--ink); margin-bottom: 20px;
}
.section-h2 em { font-style: italic; color: var(--gold); }
.section-sub {
  font-size: 14px; line-height: 1.85; color: var(--ink-soft); max-width: 580px;
  font-weight: 300; margin-bottom: 64px;
}

.coop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.coop-card {
  background: var(--white); padding: 0; position: relative;
  border: 1px solid rgba(184,149,74,0.12); transition: all 0.4s; overflow: hidden;
}
.coop-card-img {
  width: 100%; height: 220px; background-size: cover; background-position: center;
  flex-shrink: 0;
}
.coop-card-body { padding: 48px 40px 44px; }
.coop-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}
.coop-card:hover { border-color: rgba(184,149,74,0.35); box-shadow: 0 20px 60px rgba(28,25,18,0.06); }
.coop-card:hover::before { transform: scaleX(1); }

.coop-icon {
  width: 56px; height: 56px; border: 1px solid rgba(184,149,74,0.25);
  display: flex; align-items: center; justify-content: center; margin-bottom: 28px;
}
.coop-tag {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 500;
}
.coop-title {
  font-family: var(--serif); font-size: 26px; font-weight: 400;
  color: var(--ink); margin-bottom: 16px; line-height: 1.2;
}
.coop-desc {
  font-size: 13.5px; line-height: 1.85; color: var(--ink-soft);
  font-weight: 300; margin-bottom: 24px;
}
.coop-for {
  font-size: 11px; color: var(--ink-ghost); letter-spacing: 1px;
  text-transform: uppercase; padding-top: 20px;
  border-top: 1px solid rgba(184,149,74,0.1);
}
.coop-for strong { color: var(--ink-soft); font-weight: 500; }

/* ═══ FLOOR 3 – MANUFACTURING CAPABILITIES ═══ */
.mfg-section {
  background: var(--ink); padding: 120px 0; position: relative; overflow: hidden;
}
.mfg-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 80% 50%, rgba(184,149,74,0.05) 0%, transparent 70%);
}
.mfg-inner { max-width: 1440px; margin: 0 auto; padding: 0 64px; position: relative; z-index: 2; }

.mfg-header { margin-bottom: 72px; }
.mfg-header .section-eyebrow { color: var(--gold-light); }
.mfg-header .section-h2 { color: var(--white); }
.mfg-header .section-sub { color: rgba(255,255,255,0.4); }

.mfg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.mfg-card {
  padding: 40px 32px; border: 1px solid rgba(184,149,74,0.12);
  background: rgba(255,255,255,0.02); transition: all 0.4s;
  position: relative;
}
.mfg-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent); opacity: 0;
  transition: opacity 0.4s;
}
.mfg-card:hover { background: rgba(255,255,255,0.04); border-color: rgba(184,149,74,0.25); }
.mfg-card:hover::after { opacity: 1; }

.mfg-card-icon { margin-bottom: 24px; }
.mfg-card-title {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--white); margin-bottom: 14px; line-height: 1.25;
}
.mfg-card-desc {
  font-size: 13px; line-height: 1.85; color: rgba(255,255,255,0.38);
  font-weight: 300;
}

/* Vertical integration visual */
.vi-flow {
  margin-top: 72px; display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 40px 0;
}
.vi-step {
  text-align: center; flex: 1; position: relative;
}
.vi-step-dot {
  width: 14px; height: 14px; border: 2px solid var(--gold);
  border-radius: 50%; margin: 0 auto 16px; position: relative; z-index: 2;
  background: var(--ink);
}
.vi-step:hover .vi-step-dot { background: var(--gold); }
.vi-step-label {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.35); font-weight: 400; transition: color 0.3s;
}
.vi-step:hover .vi-step-label { color: var(--gold-light); }
.vi-connector {
  flex: 0 0 auto; width: 40px; height: 1px; background: rgba(184,149,74,0.25);
  margin-bottom: 28px;
}

/* ═══ FLOOR 4 – QUALITY ASSURANCE (CNAS) ═══ */
.qa-section { padding: 120px 64px; max-width: 1440px; margin: 0 auto; }
.qa-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.qa-visual {
  background: var(--cream-dark); padding: 56px; position: relative; min-height: 480px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  border: 1px solid rgba(184,149,74,0.12);
}
.qa-visual-badge {
  width: 120px; height: 120px; border: 2px solid var(--gold);
  border-radius: 50%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; margin-bottom: 32px;
}
.qa-visual-badge-text {
  font-family: var(--serif); font-size: 28px; font-weight: 600;
  color: var(--gold); letter-spacing: 2px;
}
.qa-visual-badge-sub {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-ghost); margin-top: 2px;
}
.qa-visual-title {
  font-family: var(--serif); font-size: 20px; color: var(--ink);
  text-align: center; line-height: 1.4; font-weight: 400;
}
.qa-visual-subtitle {
  font-size: 12px; color: var(--ink-ghost); text-align: center;
  margin-top: 8px; letter-spacing: 0.5px;
}

/* Lab visual: abstract lab diagram */
.lab-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; width: 100%;
}
.lab-item {
  background: var(--white); padding: 20px; border: 1px solid rgba(184,149,74,0.08);
  text-align: center;
}
.lab-item-icon { margin-bottom: 8px; }
.lab-item-name { font-size: 11px; color: var(--ink-soft); letter-spacing: 0.5px; font-weight: 400; }

.qa-content {}
.qa-content .section-eyebrow { margin-bottom: 20px; }
.qa-content .section-h2 { margin-bottom: 20px; }
.qa-content .section-sub { margin-bottom: 48px; }

.qa-tests { display: flex; flex-direction: column; gap: 32px; margin-bottom: 48px; }
.qa-test-group {}
.qa-test-group-title {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; font-weight: 500;
}
.qa-test-items { display: flex; flex-wrap: wrap; gap: 8px; }
.qa-test-tag {
  font-size: 12px; color: var(--ink-soft); padding: 8px 16px;
  border: 1px solid rgba(184,149,74,0.15); background: var(--white);
  font-weight: 300; letter-spacing: 0.3px;
}

.cert-row { display: flex; gap: 16px; flex-wrap: wrap; }
.cert-badge {
  width: 64px; height: 64px; border: 1px solid rgba(184,149,74,0.18);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 15px; font-weight: 600;
  color: var(--ink-mid); background: var(--white); letter-spacing: 1px;
  transition: all 0.3s;
}
.cert-badge:hover { border-color: var(--gold); color: var(--gold); }

/* ═══ FLOOR 5 – R&D & ENGINEERING ═══ */
.rd-section {
  background: var(--cream-dark); padding: 120px 64px;
}
.rd-inner { max-width: 1440px; margin: 0 auto; }
.rd-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.rd-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.rd-stat-card {
  padding: 36px 32px; background: var(--white);
  border: 1px solid rgba(184,149,74,0.1); transition: all 0.3s;
}
.rd-stat-card:hover { border-color: rgba(184,149,74,0.3); }
.rd-stat-num {
  font-family: var(--serif); font-size: 36px; font-weight: 300;
  color: var(--gold); margin-bottom: 6px;
}
.rd-stat-label {
  font-size: 12px; color: var(--ink-soft); letter-spacing: 0.5px; font-weight: 300;
}

.rd-visual {
  position: relative; background: var(--ink); padding: 56px;
  min-height: 420px; display: flex; flex-direction: column;
  justify-content: center;
}
.rd-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(184,149,74,0.08), transparent 70%);
}
.rd-process { position: relative; z-index: 2; }
.rd-process-title {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px; font-weight: 500;
}
.rd-process-steps { display: flex; flex-direction: column; gap: 20px; }
.rd-process-step { display: flex; gap: 20px; align-items: flex-start; }
.rd-process-step-num {
  font-family: var(--serif); font-size: 20px; color: var(--gold);
  min-width: 32px; font-weight: 400;
}
.rd-process-step-text {
  font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; font-weight: 300;
}
.rd-process-step-text strong { color: rgba(255,255,255,0.85); font-weight: 500; }

/* ═══ FLOOR 6 – SUPPLY CHAIN & LOGISTICS ═══ */

/* ═══ FLOOR 7 – IP PROTECTION ═══ */
.ip-section {
  background: var(--ink); padding: 100px 0; position: relative; overflow: hidden;
}
.ip-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 30% 50%, rgba(184,149,74,0.06), transparent 70%);
}
.ip-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 64px;
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.ip-content {}
.ip-content .section-eyebrow { color: var(--gold-light); }
.ip-content .section-h2 { color: var(--white); margin-bottom: 24px; }
.ip-content .section-sub { color: rgba(255,255,255,0.4); margin-bottom: 40px; max-width: 480px; }

.ip-points { display: flex; flex-direction: column; gap: 28px; }
.ip-point { display: flex; gap: 20px; align-items: flex-start; }
.ip-point-icon {
  width: 44px; height: 44px; min-width: 44px;
  border: 1px solid rgba(184,149,74,0.3); display: flex;
  align-items: center; justify-content: center;
}
.ip-point-title {
  font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500;
  margin-bottom: 4px;
}
.ip-point-desc {
  font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; font-weight: 300;
}

.ip-visual {
  display: flex; align-items: center; justify-content: center;
}
.ip-shield {
  width: 260px; height: 300px; position: relative;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
}
.ip-shield svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.ip-shield-text {
  position: relative; z-index: 2; text-align: center;
}
.ip-shield-title {
  font-family: var(--serif); font-size: 48px; font-weight: 300;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.ip-shield-sub {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ═══ FLOOR 8 – CTA ═══ */
.cta-section {
  padding: 120px 64px; text-align: center;
  background: var(--cream); position: relative;
}
.cta-section::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 60px; background: linear-gradient(to bottom, var(--gold-pale), transparent);
}
.cta-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.cta-h2 {
  font-family: var(--serif); font-size: clamp(32px, 3.2vw, 52px);
  font-weight: 300; line-height: 1.15; color: var(--ink); margin-bottom: 20px;
}
.cta-h2 em { font-style: italic; color: var(--gold); }
.cta-sub {
  font-size: 14px; line-height: 1.85; color: var(--ink-soft); max-width: 520px;
  margin: 0 auto 48px; font-weight: 300;
}
.cta-buttons { display: flex; gap: 24px; justify-content: center; align-items: center; }
.btn-outline-dark {
  border: 1px solid rgba(28,25,18,0.2); color: var(--ink-soft); padding: 15px 36px;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  background: transparent; cursor: pointer; font-family: var(--sans); font-weight: 400;
  text-decoration: none; display: inline-block; transition: all 0.3s;
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }

/* ═══ CLIENT LOGOS ═══ */
.clients {
  padding: 52px 64px; text-align: center;
  border-top: 1px solid rgba(184,149,74,0.1);
}
.clients-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--ink-ghost); margin-bottom: 28px;
}
.clients-row { display: flex; justify-content: center; gap: 56px; flex-wrap: wrap; }
.client-name {
  font-family: var(--serif); font-size: 16px; letter-spacing: 4px;
  color: var(--ink-ghost); opacity: 0.45; transition: opacity 0.3s;
}
.client-name:hover { opacity: 0.8; }

/* ═══ FOOTER ═══ */
footer { background: var(--ink); padding: 88px 64px 44px; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .coop-grid { grid-template-columns: 1fr; }
  .mfg-grid { grid-template-columns: repeat(2, 1fr); }
  .qa-layout, .rd-layout, .ip-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .hero-oem-inner, .section-pad, .qa-section, .rd-section, .cta-section,
  .mfg-inner, .ip-inner { padding-left: 24px; padding-right: 24px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-stat-num { font-size: 32px; }
  .mfg-grid { grid-template-columns: 1fr; }
  .vi-flow { flex-wrap: wrap; gap: 12px; }
  .vi-connector { display: none; }
  footer { padding: 64px 24px 32px; }
  .clients { padding: 40px 24px; }
  .clients-row { gap: 28px; }
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* 防止 WordPress Twemoji 将 emoji 转换为的 img 被容器撑大 */

:root {
  --cream:       #F9F5EE;
  --cream-dark:  #F2EDE2;
  --cream-mid:   #EDE6D6;
  --gold:        #B8954A;
  --gold-light:  #D4B06A;
  --gold-pale:   #E8D5A8;
  --gold-deep:   #8A6D2F;
  --ink:        #1C1912;
  --ink-mid:    #3D3828;
  --ink-soft:   #6B6250;
  --ink-ghost:  #A09880;
  --serif: 'Cormorant Garamond', serif;
  --sans:  'Jost', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--ink); overflow-x: hidden; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-pale); }

/* ══ REVEAL ══ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-l.in { opacity: 1; transform: translateX(0); }
.reveal-r { opacity: 0; transform: translateX(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-r.in { opacity: 1; transform: translateX(0); }

/* ══ PAGE TOGGLE TABS ══ */

/* ══ NAV ══ */
nav,
#kl-header {
  box-shadow: none !important;
}
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 76px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px;
  background: rgba(249,245,238,0.88); backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(184,149,74,0.18);
}

/* ══ FOOTER ══ */
footer {
  background: var(--ink); color: var(--cream); padding: 80px 10% 40px;
}

/* ══════════════════════════════════════
   PAGE 1 — BLOG LIST
══════════════════════════════════════ */

/* HERO */
.blog-hero {
  min-height: 58vh; padding-top: 76px; position: relative;
  display: flex; align-items: flex-end;
  background: var(--ink);
}
.blog-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.blog-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(15,14,11,0.72) 0%, rgba(15,14,11,0.35) 60%, rgba(15,14,11,0.15) 100%),
    linear-gradient(to top, rgba(15,14,11,0.6) 0%, transparent 50%);
}
.hero-grid-lines {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, #B8954A 0, #B8954A 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(90deg, #B8954A 0, #B8954A 1px, transparent 1px, transparent 80px);
}
/* Decorative light filaments */
.hero-deco-svg {
  position: absolute; right: 7%; top: 80px;
  width: 320px; height: 420px; opacity: 0.12; pointer-events: none;
}
.blog-hero-content {
  position: relative; z-index: 2; width: 100%;
  padding: 0 10% 80px;
}
.hero-breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 32px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(184,149,74,0.65);
}
.hero-breadcrumb a { color: rgba(184,149,74,0.45); text-decoration: none; }
.hero-breadcrumb-sep { color: rgba(184,149,74,0.3); }
.blog-hero-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.blog-hero-title {
  font-family: var(--serif); font-size: clamp(46px, 6vw, 80px);
  font-weight: 300; color: var(--cream); line-height: 1.08;
  letter-spacing: 1px; margin-bottom: 24px;
}
.blog-hero-title em { font-style: italic; color: var(--gold-light); }
.blog-hero-sub {
  font-size: 14px; color: rgba(249,245,238,0.55); letter-spacing: 0.5px;
  line-height: 1.7; max-width: 480px;
}
.blog-hero-line {
  width: 60px; height: 1px; background: var(--gold); margin: 28px 0;
}
.blog-hero-stats { display: flex; gap: 48px; }
.blog-stat-num { font-family: var(--serif); font-size: 36px; color: var(--gold-light); font-weight: 300; }
.blog-stat-lbl { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(249,245,238,0.4); margin-top: 4px; }

/* FILTER BAR */
.filter-section {
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(184,149,74,0.2);
  padding: 0 10%;
  position: sticky; top: 76px; z-index: 100;
}
.filter-inner { display: flex; align-items: center; gap: 0; }
.filter-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-ghost); padding: 20px 24px 20px 0; border-right: 1px solid rgba(184,149,74,0.2); margin-right: 24px; white-space: nowrap; }
.filter-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.filter-tab {
  padding: 8px 20px; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  font-family: var(--sans); font-weight: 400; border: 1px solid transparent;
  background: transparent; color: var(--ink-soft); cursor: pointer; transition: all 0.25s;
}
.filter-tab:hover { color: var(--gold); border-color: rgba(184,149,74,0.3); }
.filter-tab.active { background: var(--ink); color: var(--gold); border-color: var(--ink); }
.filter-count { margin-left: auto; font-size: 12px; color: var(--ink-ghost); padding: 20px 0; white-space: nowrap; }

/* BLOG MAIN */
.blog-main { padding: 72px 10% 80px; }
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: start; }

/* ARTICLE GRID */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 28px; }

/* ARTICLE CARD */
.art-card {
  background: #fff; border: 1px solid rgba(184,149,74,0.12);
  display: flex; flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer; overflow: hidden;
}
.art-card:hover { box-shadow: 0 12px 48px rgba(28,25,18,0.1); transform: translateY(-4px); }
.art-card-img {
  width: 100%; aspect-ratio: 16/9; overflow: hidden; position: relative;
  background: var(--ink);
}
/* SVG placeholder art for images */
.art-img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.art-card-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.art-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.art-category {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  padding: 4px 10px; border: 1px solid; display: inline-block;
}
.cat-trends { color: #7B5EA7; border-color: rgba(123,94,167,0.35); background: rgba(123,94,167,0.06); }
.cat-design  { color: var(--gold-deep); border-color: rgba(138,109,47,0.35); background: rgba(138,109,47,0.06); }
.cat-project { color: #3A6E5A; border-color: rgba(58,110,90,0.35); background: rgba(58,110,90,0.06); }
.cat-exhibition { color: #B85C38; border-color: rgba(184,92,56,0.35); background: rgba(184,92,56,0.06); }
.art-date { font-size: 11px; color: var(--ink-ghost); letter-spacing: 0.5px; }
.art-card-title {
  font-family: var(--serif); font-size: 20px; font-weight: 400; line-height: 1.35;
  color: var(--ink); margin-bottom: 12px; flex: 1;
}
.art-card-excerpt { font-size: 13px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 20px; }
.art-card-read {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
  font-weight: 500; display: flex; align-items: center; gap: 6px; text-decoration: none;
  transition: gap 0.2s;
}
.art-card-read:hover { gap: 10px; }
.art-card-read::after { content: '→'; }

/* FEATURED CARD (full width, first card) */
.art-card.featured {
  grid-column: 1 / -1;
  flex-direction: row;
}
.art-card.featured .art-card-img {
  width: 50%; flex-shrink: 0; aspect-ratio: 16/9;
}
.art-card.featured .art-card-body { padding: 48px 40px; justify-content: center; }
.art-card.featured .art-card-title { font-size: 30px; }

/* SIDEBAR */
.blog-sidebar { position: sticky; top: calc(76px + 60px + 20px); }
.sidebar-widget { margin-bottom: 40px; }
.sidebar-widget-h {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(184,149,74,0.25);
}

/* Popular posts */
.pop-post { display: flex; gap: 14px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid rgba(184,149,74,0.1); }
.pop-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.pop-post-num { font-family: var(--serif); font-size: 28px; color: var(--gold-pale); font-weight: 300; line-height: 1; width: 24px; flex-shrink: 0; }
.pop-post-info { flex: 1; }
.pop-post-title { font-size: 13px; line-height: 1.5; color: var(--ink-mid); margin-bottom: 6px; font-weight: 400; }
.pop-post-date { font-size: 11px; color: var(--ink-ghost); }

/* Product promo widget */
.promo-widget {
  background: var(--ink); padding: 28px;
  position: relative; overflow: hidden;
}
.promo-widget::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,149,74,0.25) 0%, transparent 70%);
}
.promo-widget-eyebrow { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.promo-widget-title { font-family: var(--serif); font-size: 20px; color: var(--cream); font-weight: 300; line-height: 1.4; margin-bottom: 8px; }
.promo-widget-sub { font-size: 12px; color: rgba(249,245,238,0.5); line-height: 1.6; margin-bottom: 20px; }
.promo-widget-cta {
  display: inline-block; background: var(--gold); color: #fff;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 20px; text-decoration: none; font-weight: 500; transition: background 0.3s;
}
.promo-widget-cta:hover { background: var(--gold-deep); }

/* Inquiry CTA widget */
.inq-widget { background: var(--cream-mid); padding: 28px; border: 1px solid rgba(184,149,74,0.2); }
.inq-widget-title { font-family: var(--serif); font-size: 20px; line-height: 1.35; margin-bottom: 10px; }
.inq-widget-sub { font-size: 12px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 20px; }
.inq-btn {
  display: block; background: var(--ink); color: var(--gold);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  padding: 12px 20px; text-decoration: none; font-weight: 500;
  text-align: center; transition: background 0.3s;
}
.inq-btn:hover { background: var(--ink-mid); }

/* PAGINATION */
.pagination { display: flex; align-items: center; justify-content: center; gap: 4px; margin-top: 64px; }
/* ============================================================
   Kinglong Lighting — Contact Form Style Fix
   粘贴位置：
     方法A：kinglong-child/main.css 末尾追加
     方法B：WordPress 后台 → 外观 → 自定义 → 额外CSS
   ============================================================ */

/* 表单容器：白色背景 + 金色顶边 */
.quote-form-wrap {
  background: #FFFFFF !important;
  padding: 56px 52px;
  border: 1px solid rgba(184, 149, 74, 0.15) !important;
  position: relative;
}
.quote-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, #B8954A, #E8D5A8, transparent);
}

/* ── 输入框、下拉、文本域 ── */
.quote-form-wrap .form-input,
.quote-form-wrap .form-select,
.quote-form-wrap .form-textarea,
/* 兼容 WordPress/Astra 可能注入的通用选择器 */
.quote-form-wrap input[type="text"],
.quote-form-wrap input[type="email"],
.quote-form-wrap input[type="tel"],
.quote-form-wrap select,
.quote-form-wrap textarea {
  width: 100% !important;
  padding: 14px 18px !important;
  background: #F9F5EE !important;          /* --cream 米色，区别于白色表单背景 */
  border: 1px solid rgba(184, 149, 74, 0.22) !important;
  border-radius: 0 !important;             /* 保持方形风格 */
  color: #1C1912 !important;               /* --ink */
  font-family: 'Jost', sans-serif !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  outline: none !important;
  box-shadow: none !important;
  transition: border-color 0.3s, box-shadow 0.3s !important;
  -webkit-appearance: none;
  appearance: none;
}

/* Placeholder 颜色 */
.quote-form-wrap input::placeholder,
.quote-form-wrap textarea::placeholder {
  color: #A09880 !important;               /* --ink-ghost */
  font-weight: 300 !important;
}

/* Focus 状态：金色描边 */
.quote-form-wrap input:focus,
.quote-form-wrap select:focus,
.quote-form-wrap textarea:focus,
.quote-form-wrap .form-input:focus,
.quote-form-wrap .form-select:focus,
.quote-form-wrap .form-textarea:focus {
  border-color: #B8954A !important;
  box-shadow: 0 0 0 3px rgba(184, 149, 74, 0.10) !important;
  background: #F9F5EE !important;
  outline: none !important;
}

/* Select 下拉箭头（自定义SVG，覆盖浏览器默认） */
.quote-form-wrap select,
.quote-form-wrap .form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A09880' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 12px !important;
  /* 注意：background需合并写，否则背景色会被覆盖 */
  background-color: #F9F5EE !important;
  padding-right: 40px !important;
  cursor: pointer;
}

/* Textarea 最小高度 */
.quote-form-wrap textarea,
.quote-form-wrap .form-textarea {
  resize: vertical !important;
  min-height: 140px !important;
  line-height: 1.7 !important;
}

/* ── 标签 (Label) ── */
.quote-form-wrap .form-label,
.quote-form-wrap label {
  display: block !important;
  font-size: 10px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #6B6250 !important;               /* --ink-soft */
  margin-bottom: 8px !important;
  font-weight: 500 !important;
  font-family: 'Jost', sans-serif !important;
}
.quote-form-wrap .form-label .req,
.quote-form-wrap label .req {
  color: #B8954A !important;               /* --gold */
}

/* ── Checkbox 自定义样式 ── */
.quote-form-wrap .checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.quote-form-wrap .checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: #3D3828;                          /* --ink-mid */
  font-weight: 300;
}
.quote-form-wrap .checkbox-item input[type="checkbox"] {
  display: none !important;
}
.quote-form-wrap .checkbox-box {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
  border: 1.5px solid rgba(184, 149, 74, 0.35) !important;
  background: #F9F5EE !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.quote-form-wrap .checkbox-item input:checked + .checkbox-box {
  background: #B8954A !important;
  border-color: #B8954A !important;
}
.quote-form-wrap .checkbox-item input:checked + .checkbox-box::after {
  content: '✓';
  color: #fff !important;
  font-size: 11px;
  font-weight: 600;
}

/* ── 提交按钮 ── */
.quote-form-wrap .form-submit,
.quote-form-wrap button[type="submit"] {
  width: 100% !important;
  padding: 18px 32px !important;
  margin-top: 12px !important;
  background: #B8954A !important;          /* --gold */
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer;
  font-family: 'Jost', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  transition: background 0.35s !important;
}
.quote-form-wrap .form-submit:hover,
.quote-form-wrap button[type="submit"]:hover {
  background: #8A6D2F !important;          /* --gold-deep */
}

/* ── 底部隐私说明 ── */
.quote-form-wrap .form-note {
  text-align: center;
  margin-top: 20px;
  font-size: 11px;
  color: #A09880;                          /* --ink-ghost */
  font-weight: 300;
  line-height: 1.7;
}

/* ── 响应式 ── */
@media (max-width: 640px) {
  .quote-form-wrap {
    padding: 40px 28px !important;
  }
  .quote-form-wrap .form-row,
  .quote-form-wrap .checkbox-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ============================================================
   Kinglong — Cert Badge Gap Fix
   追加到 main.css 末尾（覆盖上一版的 .cert-badge 规则）
   ============================================================ */

   .certs-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    align-items: center !important;
    /* 防止主题把 flex children 的 margin 清零 */
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .cert-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 36px !important;
    /* 用 padding 控制左右留白，不依赖 gap */
    padding: 0 18px !important;
    /* 双保险：gap 不生效时用 margin */
    margin: 0 8px 8px 0 !important;
    white-space: nowrap !important;
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
    font-weight: 500 !important;
    font-family: 'Jost', sans-serif !important;
    text-transform: uppercase !important;
    border: 1px solid rgba(184, 149, 74, 0.25) !important;
    color: #6B6250 !important;
    background: #F9F5EE !important;
    line-height: 1 !important;
    /* 防止 box-sizing 被主题改掉导致 padding 计入宽度溢出 */
    box-sizing: border-box !important;
    /* 防止内容溢出 */
    overflow: visible !important;
    text-overflow: clip !important;
    /* 最小宽度兜底 */
    min-width: 0 !important;
    flex-shrink: 0 !important;
  }
  /* ============================================================
   Kinglong — Cert Badge Final Fix
   追加到 main.css 末尾，完全覆盖之前所有 .cert-badge 规则
   ============================================================ */

.certs-row {
  display: flex !important;
  flex-wrap: wrap !important;
  /* 用 gap 控制间距 */
  gap: 12px !important;
  align-items: flex-start !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.cert-badge {
  /* 宽度完全由内容决定，不设 height/width */
  display: inline-block !important;
  /* 上下左右统一内边距 */
  padding: 8px 20px !important;
  /* 不设 height，让行高自然撑开 */
  height: auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;

  white-space: nowrap !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;

  font-size: 11px !important;
  letter-spacing: 1.5px !important;
  font-weight: 500 !important;
  font-family: 'Jost', sans-serif !important;
  text-transform: uppercase !important;
  line-height: 1.4 !important;
  color: #6B6250 !important;

  border: 1px solid rgba(184, 149, 74, 0.28) !important;
  background: #F9F5EE !important;

  /* 清除可能继承的阴影/圆角 */
  border-radius: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  vertical-align: middle !important;
  margin: 0 !important;        /* 完全由 gap 控制，不用 margin */
}
/* ============================================================
   Kinglong — Checkbox Item Style Fix
   追加到 main.css 末尾
   ============================================================ */

/* checkbox 整行：水平对齐，文字正常大小写 */
.quote-form-wrap .checkbox-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
  cursor: pointer !important;

  /* 覆盖 Astra 全局 label 样式 */
  font-size: 13px !important;
  font-weight: 300 !important;
  letter-spacing: 0.3px !important;       /* 正常字间距，不要 2px */
  text-transform: none !important;         /* 关键：取消全大写 */
  color: #3D3828 !important;              /* --ink-mid */
  font-family: 'Jost', sans-serif !important;
  line-height: 1.4 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  width: auto !important;
}

/* 隐藏原生 checkbox */
.quote-form-wrap .checkbox-item input[type="checkbox"] {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* 自定义 checkbox 方框 */
.quote-form-wrap .checkbox-box {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;             /* 防止被压缩 */
  flex-shrink: 0 !important;
  border: 1.5px solid rgba(184, 149, 74, 0.35) !important;
  background: #F9F5EE !important;
  transition: all 0.2s;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* 勾选状态 */
.quote-form-wrap .checkbox-item input[type="checkbox"]:checked + .checkbox-box {
  background: #B8954A !important;
  border-color: #B8954A !important;
}
.quote-form-wrap .checkbox-item input[type="checkbox"]:checked + .checkbox-box::after {
  content: '✓' !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
}

/* checkbox grid 两列布局 */
.quote-form-wrap .checkbox-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px 20px !important;
  margin-top: 4px !important;
}
/* ============================================================
   Kinglong — collections-page.css
   追加到 kinglong-child/main.css 末尾
   或在 functions.php 中单独 enqueue（仅 collections 页加载）
   ============================================================ */

/* ── Page Hero ── */
.page-hero {
  padding-top: 72px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-color: #1C1912;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(20,17,10,0.82) 0%, rgba(20,17,10,0.55) 50%, rgba(20,17,10,0.25) 100%),
    linear-gradient(to top,   rgba(20,17,10,0.60) 0%, transparent 60%);
}
.page-hero-grid {
  position: absolute; inset: 0; opacity: 0.03; z-index: 1;
  background-image:
    repeating-linear-gradient(0deg,  #B8954A 0, #B8954A 1px, transparent 1px, transparent 48px),
    repeating-linear-gradient(90deg, #B8954A 0, #B8954A 1px, transparent 1px, transparent 48px);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 60px 56px; width: 100%;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px;
}
.page-hero-left  { max-width: 600px; }
.page-hero-right { flex-shrink: 0; text-align: right; }
.page-hero-content .breadcrumb {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(184,149,74,0.85); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.page-hero-content .breadcrumb a    { color: rgba(255,255,255,0.6); text-decoration: none; }
.page-hero-content .breadcrumb-sep  { color: rgba(255,255,255,0.35); }
.page-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px,4.5vw,66px); font-weight: 300;
  color: #fff; line-height: 1.05; margin-bottom: 18px;
}
.page-h1 em   { font-style: italic; color: #D4B06A; }
.page-desc    { font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.75); max-width: 480px; font-weight: 300; }
.hero-stat-row { display: flex; gap: 40px; justify-content: flex-end; }
.hero-stat     { text-align: right; }
.hero-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 300; color: #D4B06A; line-height: 1; }
.hero-stat-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* ── Filter Bar ── */
.filter-bar {
  position: sticky; top: 72px; z-index: 200;
  background: #fff; border-bottom: 1px solid rgba(184,149,74,0.16);
  display: flex; align-items: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.filter-tabs { display: flex; border-right: 1px solid rgba(184,149,74,0.12); }
.filter-tab {
  padding: 18px 28px; font-size: 12px; letter-spacing: 1.8px; text-transform: uppercase;
  cursor: pointer; color: #A09880; border-bottom: 2px solid transparent;
  border-top: none; border-left: none; border-right: none;
  background: none; font-family: 'Jost', sans-serif; font-weight: 400;
  white-space: nowrap; transition: all .25s;
}
.filter-tab.active { color: #8A6D2F; border-bottom-color: #B8954A; background: rgba(184,149,74,0.04); }
.filter-tab:hover:not(.active) { color: #3D3828; background: #F9F5EE; }
.filter-pills { display: flex; gap: 8px; padding: 12px 24px; flex-wrap: wrap; flex: 1; }
.pill {
  padding: 7px 16px; border: 1px solid rgba(184,149,74,0.25);
  font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: #6B6250;
  cursor: pointer; background: transparent; font-family: 'Jost', sans-serif;
  transition: all .22s;
}
.pill:hover  { border-color: #B8954A; color: #8A6D2F; background: rgba(184,149,74,0.06); }
.pill.active { background: #B8954A; color: #fff; border-color: #B8954A; }
.filter-count {
  padding: 0 24px; font-size: 12px; color: #A09880;
  white-space: nowrap; border-left: 1px solid rgba(184,149,74,0.12);
}
.filter-count strong { color: #B8954A; }

/* ── Section Shared ── */
.section-wrap  { padding: 80px 60px; }
.bespoke-wrap  { background: #F9F5EE; }
.standard-wrap { background: #fff; }
.section-kicker {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: #B8954A; display: flex; align-items: center; gap: 14px; margin-bottom: 12px;
}
.section-kicker::before { content: ''; width: 28px; height: 1px; background: #B8954A; }
.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px,3.2vw,48px); font-weight: 300;
  color: #1C1912; line-height: 1.1; margin-bottom: 12px;
}
.section-h2 em   { font-style: italic; color: #B8954A; }
.section-intro   { font-size: 14px; line-height: 1.85; color: #6B6250; max-width: 580px; font-weight: 300; }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; gap: 40px; }
.see-all {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #B8954A;
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid #E8D5A8; padding-bottom: 2px; flex-shrink: 0; transition: gap .3s;
}
.see-all:hover { color: #8A6D2F; gap: 14px; }

/* ── Bespoke Feature Card ── */
.bespoke-feature {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; margin-bottom: 3px;
}
.bf-visual {
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 45% 35%, rgba(210,185,130,0.55) 0%, #C8B890 40%, #B8A878 100%);
  display: flex; align-items: center; justify-content: center;
}
.bf-visual-bg { position: absolute; inset: 0; }
.bf-visual svg { position: relative; z-index: 2; filter: drop-shadow(0 12px 40px rgba(138,109,47,0.35)); transition: transform .8s ease; }
.bespoke-feature:hover .bf-visual svg { transform: translateY(-10px) scale(1.03); }
.bf-badge {
  position: absolute; top: 32px; left: 32px; z-index: 3;
  background: #B8954A; color: #fff; padding: 6px 14px;
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
}
.bf-info {
  background: #1C1912; padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.bf-series { font-size: 10px; letter-spacing: 3.5px; text-transform: uppercase; color: #D4B06A; margin-bottom: 16px; }
.bf-title  { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px,3vw,48px); font-weight: 300; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.bf-title em { font-style: italic; color: #D4B06A; }
.bf-desc   { font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.5); margin-bottom: 36px; font-weight: 300; max-width: 380px; }
.bf-tags   { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.bf-tag    { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(184,149,74,0.8); border: 1px solid rgba(184,149,74,0.25); padding: 5px 12px; }
.bf-ctas   { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-gold-sm  { background: #B8954A; color: #fff; padding: 13px 28px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; border: none; cursor: pointer; font-family: 'Jost', sans-serif; text-decoration: none; display: inline-block; transition: background .3s; }
.btn-gold-sm:hover { background: #8A6D2F; }
.btn-ghost-sm { background: transparent; border: 1px solid rgba(184,149,74,0.4); color: rgba(255,255,255,0.7); padding: 12px 24px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-family: 'Jost', sans-serif; text-decoration: none; display: inline-block; transition: all .3s; }
.btn-ghost-sm:hover { border-color: #B8954A; color: #D4B06A; }

/* ── 9-Series Grid ── */
.series-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 3px;
}
.series-card {
  position: relative; overflow: hidden; cursor: pointer; display: block;
  background: #EAE0CC; border: none; text-decoration: none;
}
.series-card:hover .sc-visual  { transform: scale(1.05); }
.series-card:hover .sc-overlay { opacity: 1; }
.series-card:hover .sc-arrow   { opacity: 1; transform: translateX(0); }
.series-card:hover .sc-num     { opacity: 1; }
.sc-visual-wrap { overflow: hidden; aspect-ratio: 4/5; position: relative; }
.sc-visual {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .7s ease; position: relative;
}
.sc-visual svg { position: relative; z-index: 2; }
.sc-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(to top, rgba(28,25,18,0.88) 0%, rgba(28,25,18,0.15) 55%, transparent 100%);
  opacity: 0.55; transition: opacity .4s;
}
.sc-info  { position: absolute; bottom: 0; left: 0; right: 0; z-index: 4; padding: 24px 22px; }
.sc-num   { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: #D4B06A; margin-bottom: 5px; opacity: 0; transition: opacity .4s; }
.sc-name  { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: #fff; line-height: 1.2; margin-bottom: 4px; }
.sc-mat   { font-size: 11px; color: rgba(255,255,255,0.5); }
.sc-arrow {
  position: absolute; bottom: 24px; right: 22px; z-index: 5;
  width: 36px; height: 36px; border: 1px solid rgba(184,149,74,0.5);
  display: flex; align-items: center; justify-content: center;
  color: #D4B06A; font-size: 18px;
  opacity: 0; transform: translateX(8px); transition: all .3s;
}

/* Series color palettes */
.sg1{background:radial-gradient(ellipse at 50% 25%,rgba(220,195,140,.55) 0%,#C8B890 45%,#B8A878 100%)}
.sg2{background:radial-gradient(ellipse at 45% 30%,rgba(195,215,230,.4) 0%,#C4CADA 50%,#B4BAC8 100%)}
.sg3{background:radial-gradient(ellipse at 55% 25%,rgba(225,205,165,.55) 0%,#D0C4A0 50%,#C4B48C 100%)}
.sg4{background:radial-gradient(ellipse at 50% 35%,rgba(205,225,205,.4) 0%,#C8D4C4 50%,#B8C4B0 100%)}
.sg5{background:radial-gradient(ellipse at 40% 25%,rgba(235,215,175,.55) 0%,#D8C8A0 50%,#CCC092 100%)}
.sg6{background:radial-gradient(ellipse at 60% 30%,rgba(225,195,155,.5) 0%,#D4BCA0 50%,#C8AA8C 100%)}
.sg7{background:radial-gradient(ellipse at 50% 20%,rgba(240,220,180,.55) 0%,#DACCAC 50%,#D0BE98 100%)}
.sg8{background:radial-gradient(ellipse at 45% 35%,rgba(215,235,215,.4) 0%,#CAD4C8 50%,#BCCAB8 100%)}
.sg9{background:radial-gradient(ellipse at 55% 25%,rgba(230,205,160,.55) 0%,#D4C8A0 50%,#CAB890 100%)}

/* ── Standard Products Intro ── */
.standard-intro-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  margin-bottom: 56px; padding: 48px 0; border-bottom: 1px solid rgba(184,149,74,0.12);
}
.si-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  border: 1px solid rgba(184,149,74,0.25); background: rgba(184,149,74,0.06); margin-bottom: 16px;
}
.si-badge-dot   { width: 6px; height: 6px; border-radius: 50%; background: #B8954A; }
.si-badge-text  { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: #8A6D2F; }
.si-title       { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; color: #1C1912; margin-bottom: 14px; line-height: 1.2; }
.si-title em    { font-style: italic; color: #B8954A; }
.si-desc        { font-size: 13.5px; line-height: 1.85; color: #6B6250; font-weight: 300; }
.si-right       { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; }
.si-feat        { background: #F9F5EE; padding: 20px; border: 1px solid rgba(184,149,74,0.1); }
.si-feat-icon   { font-size: 22px; margin-bottom: 8px; }
.si-feat-title  { font-size: 13px; font-weight: 500; color: #1C1912; margin-bottom: 4px; }
.si-feat-text   { font-size: 12px; color: #A09880; line-height: 1.6; }

/* ── Product Grid ── */
.product-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2px;
}
.prod-card {
  background: #F9F5EE; cursor: pointer; position: relative; overflow: hidden;
  border: 1px solid rgba(184,149,74,0.08); transition: border-color .3s;
}
.prod-card:hover { border-color: rgba(184,149,74,0.3); }
.prod-card:hover .prod-visual { transform: scale(1.04); }
.prod-visual-wrap {
  overflow: hidden; aspect-ratio: 1/1; background: #F2EDE2;
  position: relative; display: flex; align-items: center; justify-content: center;
}
.prod-visual { transition: transform .6s ease; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.prod-patent {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: #B8954A; color: #fff; font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 8px;
}
.prod-customizable {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(28,25,18,0.75); color: rgba(184,149,74,0.9); font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 8px;
}
.prod-info    { padding: 16px 16px 20px; background: #fff; border-top: 1px solid rgba(184,149,74,0.1); }
.prod-series  { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: #B8954A; margin-bottom: 4px; }
.prod-name    { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 400; color: #1C1912; margin-bottom: 4px; line-height: 1.2; }
.prod-spec    { font-size: 11px; color: #A09880; margin-bottom: 12px; }
.prod-actions { display: flex; gap: 8px; }
.prod-btn {
  flex: 1; padding: 9px 0; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  text-align: center; cursor: pointer; font-family: 'Jost', sans-serif;
  border: 1px solid rgba(184,149,74,0.25); color: #6B6250; background: transparent;
  transition: all .25s; text-decoration: none; display: flex; align-items: center; justify-content: center;
}
.prod-btn:hover          { border-color: #B8954A; color: #8A6D2F; background: rgba(184,149,74,0.06); }
.prod-btn.primary        { background: #B8954A; color: #fff; border-color: #B8954A; }
.prod-btn.primary:hover  { background: #8A6D2F; }

/* Product grid placeholder gradients */
.pg1{background:radial-gradient(ellipse at 50% 30%,rgba(220,195,140,.4) 0%,#E4D8C0 60%,#D8CCAE 100%)}
.pg2{background:radial-gradient(ellipse at 45% 25%,rgba(195,215,230,.35) 0%,#D0D8DE 60%,#C4CED8 100%)}
.pg3{background:radial-gradient(ellipse at 55% 30%,rgba(220,205,165,.45) 0%,#DDD0B0 60%,#D4C5A0 100%)}
.pg4{background:radial-gradient(ellipse at 50% 35%,rgba(205,220,205,.35) 0%,#D0D8CC 60%,#C4CEBC 100%)}
.pg5{background:radial-gradient(ellipse at 40% 25%,rgba(235,215,175,.45) 0%,#E0D0B0 60%,#D4C49E 100%)}
.pg6{background:radial-gradient(ellipse at 60% 30%,rgba(225,195,155,.45) 0%,#DDBEA0 60%,#D2AE8C 100%)}
.pg7{background:radial-gradient(ellipse at 50% 20%,rgba(235,220,180,.5) 0%,#DED0B0 60%,#D4C29A 100%)}
.pg8{background:radial-gradient(ellipse at 45% 35%,rgba(215,230,215,.38) 0%,#CCD8C8 60%,#C0CEB8 100%)}

/* ── Load More ── */
.load-more-wrap { text-align: center; padding: 48px 0 0; }
.btn-load       { background: transparent; border: 1.5px solid #B8954A; color: #8A6D2F; padding: 14px 44px; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; cursor: pointer; font-family: 'Jost', sans-serif; transition: all .3s; }
.btn-load:hover { background: #B8954A; color: #fff; }
.load-sub       { font-size: 11px; color: #A09880; margin-top: 12px; }

/* ── Reveal Animation ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in,
.reveal.visible { opacity: 1 !important; transform: translateY(0) !important; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .product-grid  { grid-template-columns: repeat(3,1fr) !important; }
  .series-grid   { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 768px) {
  .section-wrap         { padding: 48px 24px; }
  .bespoke-feature      { grid-template-columns: 1fr; }
  .standard-intro-row   { grid-template-columns: 1fr; }
  .product-grid         { grid-template-columns: repeat(2,1fr) !important; }
  .page-hero-content    { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr !important; }
}
/* ── 修复 select 下拉框文字被截断（Astra 新版兼容）── */
select,
.form-select,
.quote-form-wrap select,
.quote-form-wrap .form-select {
  height: auto !important;
  min-height: 52px !important;
  line-height: 1.5 !important;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}

/* ── 全屏 Hero 页面隐藏 header spacer ── */
/* body class 由 WordPress 自动生成，格式为 page-template-page-[模板名] */

.home .kl-header-spacer {
  display: none !important;
}

/* ── 修复全屏 Hero 顶部多余 padding（只针对子页面 hero，不包含首页 section.hero）── */
section.about-hero,
section.villa-hero,
section.oem-hero,
section.page-hero {
  padding-top: 0 !important;
}

/* ══════════════════════════ HERO DESIGN TOOL ══════════════════════════ */
.hero-design-tool {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
  padding-top: 76px;
}

/* ── Design Tool breadcrumb ── */
.kl-dt-hero__breadcrumb {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.28); margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}
.kl-dt-hero__breadcrumb a {
  color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.25s;
}
.kl-dt-hero__breadcrumb a:hover { color: var(--gold); }
.kl-dt-hero__bc-sep { color: rgba(255,255,255,0.15); font-size: 10px; }
.kl-dt-hero__breadcrumb > span:last-child { color: var(--gold); }

/* ── Collections hero stats 居中（left 区域无内容时）── */
.page-collections .page-hero-content {
  justify-content: center !important;
}
.page-collections .page-hero-right {
  text-align: center !important;
}
.page-collections .hero-stat-row {
  justify-content: center !important;
}
.page-collections .hero-stat {
  text-align: center !important;
}

/* ── 全局修复：所有页面 hero stats 居中 ── */
.page-hero-content {
  justify-content: center !important;
}
.page-hero-right {
  text-align: center !important;
}
.hero-stat-row {
  justify-content: center !important;
}
.hero-stat {
  text-align: center !important;
}

/* ── Showroom stats 数字与标签居中对齐 ── */
.sr-details {
  justify-content: center !important;
}
.sr-detail-item {
  text-align: center !important;
}

/* ── Contact 页面隐藏 header spacer（page-template-default + page-id-14）── */

/* ── 修复首页 hero-right 被 Astra 覆盖为黑色背景 ── */
.hero-right {
  background: var(--cream-dark) !important;
  position: relative !important;
  overflow: hidden !important;
}
.hero-right-bg {
  position: absolute !important;
  inset: 0 !important;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(184,149,74,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 80%, rgba(184,149,74,0.08) 0%, transparent 50%),
    linear-gradient(160deg, #F0E8D4 0%, #EAE0CA 50%, #E4D8BE 100%) !important;
}

/* ── 修复首页顶部黑条（Astra separate container 背景）── */

.home #content,
.home #primary {
  background: transparent !important;
}
.home::before {
  display: none !important;
}

/* ── 修复 Gutenberg block editor 样式污染 hero 标题 ── */
/* 仅首页浅色 hero 强制深色文字 */
.home .hero-h1,
.home .hero-h1 * {
  background: none !important;
  background-color: transparent !important;
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
}
.home .hero-h1 em {
  color: var(--gold) !important;
  -webkit-text-fill-color: var(--gold) !important;
}
/* 暗色 hero（Showcase 等页面）保持浅色文字 */
.page-hero-dark .hero-h1,
.page-hero-dark .hero-h1 * {
  background: none !important;
  background-color: transparent !important;
  color: var(--cream) !important;
  -webkit-text-fill-color: var(--cream) !important;
}
.page-hero-dark .hero-h1 em {
  color: var(--gold-light) !important;
  -webkit-text-fill-color: var(--gold-light) !important;
}


/* ══════════════════════════════════════════════════════════
   REAL PRODUCT IMAGES — replaces SVG placeholders
   ══════════════════════════════════════════════════════════ */

/* ── Hero product image (right side) ── */
.hero-product-img-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.hero-product-img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ── Collection card real images (homepage + collections page) ── */
.col-real-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: transform 0.8s ease;
}
.col-card:hover .col-real-img,
.series-card:hover .col-real-img,
.bespoke-feature:hover .col-real-img {
  transform: scale(1.05);
}

/* ── Collections page: featured card image ── */
.bf-visual .col-real-img {
  object-fit: cover;
}

/* ── Collections page: series card image ── */
.sc-visual .col-real-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-product-img { max-height: 60vh; }
}

/* ══ Contact page hero 背景图支持 ══ */
.page-hero .hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero .hero-bg::before {
  content: '';
  display: block;
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,  rgba(15,14,11,0.78) 0%, rgba(15,14,11,0.55) 50%, rgba(15,14,11,0.22) 100%),
    linear-gradient(to top,    rgba(15,14,11,0.45) 0%, rgba(15,14,11,0) 40%);
}
.page-hero .hero-content { z-index: 2; }

/* ══ 首页 Collections & Projects 响应式对齐 ══ */
@media (max-width: 1024px) {
  /* Collections：中等屏幕稍降高度 */
  .col-visual { height: 260px; }
  /* Projects：main 卡片缩小最小高度 */
  .proj-card.main .proj-visual { min-height: 400px; }
}

@media (max-width: 768px) {
  /* Collections：两行改为竖向堆叠，span 全部占满，高度缩小 */
  .col-grid { grid-template-columns: 1fr 1fr; }
  .col-card.span5,
  .col-card.span4,
  .col-card.span3 { grid-column: span 1; }
  .col-visual { height: 220px; }
  /* Projects：改为单列堆叠 */
  .projects-grid { grid-template-columns: 1fr; }
  .proj-card.main .proj-visual { min-height: 300px; flex: none; aspect-ratio: 16/9; }
  .proj-card.side .proj-visual { flex: none; aspect-ratio: 16/9; }
  .side-stack { align-self: auto; }
}

@media (max-width: 480px) {
  /* Collections：超小屏单列 */
  .col-grid { grid-template-columns: 1fr; }
  .col-card.span5,
  .col-card.span4,
  .col-card.span3 { grid-column: span 1; }
  .col-visual { height: 200px; }
}

/* ══ Astra Scroll to Top 按钮品牌色覆盖 ══ */
#ast-scroll-top,
.ast-scroll-to-top-wrap,
.ast-scroll-to-top,
.ast-scroll-to-top-side,
#ast-scroll-top:focus,
.ast-scroll-to-top-wrap:focus,
.ast-scroll-to-top:focus,
#ast-scroll-top:hover,
.ast-scroll-to-top-wrap:hover,
.ast-scroll-to-top:hover {
  background-color: #B8954A !important;
  background: #B8954A !important;
  color: #fff !important;
  border: none !important;
  opacity: 1 !important;
}

/* ══════════════════════════════════════════════════════════
   SINGLE PRODUCT PAGE FIXES
   ══════════════════════════════════════════════════════════ */

/* ── 去掉 Astra 主题在 single-product 页面添加的额外 wrapper padding ── */

/* ── 隐藏 Astra 内置 breadcrumb 及页面标题条（避免与自定义内容重叠） ── */

/* ── 覆盖 Astra 把 body 背景设为 #F0F5FA 的默认值 ── */
body {
  background-color: var(--cream) !important;
}

/* ── Breadcrumb 紧贴固定导航栏，清除所有多余间距 ── */
/* header.php 已输出 .kl-header-spacer (76px)，breadcrumb 无需任何 margin */

/* ── Hero 主图：铺满右侧区域 ── */

/* ── Design Story 图片：铺满容器 ── */

/* ── 技术图纸：铺满卡片视觉区域 ── */

/* ── Gallery 图片确保铺满 ── */

/* ── Related cards 图片确保铺满 ── */

/* ══ 覆盖 Astra 默认蓝色链接色 — 全局按钮颜色修正 ══ */
.btn-gold,
.btn-gold:visited {
  color: #fff !important;
  background: #B8954A !important;
  text-decoration: none !important;
}
.btn-gold:hover,
.btn-gold:focus {
  color: #fff !important;
  background: #8A6D2F !important;
}
.btn-outline,
.btn-outline:visited {
  color: #B8954A !important;
  border-color: #B8954A !important;
  background: transparent !important;
  text-decoration: none !important;
}
.btn-outline:hover,
.btn-outline:focus {
  color: #fff !important;
  background: #B8954A !important;
  border-color: #B8954A !important;
}
.btn-gold-sm,
.btn-gold-sm:visited {
  color: #fff !important;
  background: #B8954A !important;
  text-decoration: none !important;
}
.btn-gold-sm:hover,
.btn-gold-sm:focus {
  color: #fff !important;
  background: #8A6D2F !important;
}
.btn-ghost-sm,
.btn-ghost-sm:visited {
  color: rgba(255,255,255,0.7) !important;
  border-color: rgba(184,149,74,0.4) !important;
  background: transparent !important;
  text-decoration: none !important;
}
.btn-ghost-sm:hover,
.btn-ghost-sm:focus {
  color: #D4B06A !important;
  border-color: #B8954A !important;
}
.mofun-cta-btn,
.mofun-cta-btn:visited {
  color: #fff !important;
  background: #B8954A !important;
  text-decoration: none !important;
}
.mofun-cta-btn:hover,
.mofun-cta-btn:focus {
  color: #fff !important;
  background: #8A6D2F !important;
}

/* Online Design Tool — Testimonials responsive */
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .testimonials-section { padding: 80px 32px !important; }
}
@media (max-width: 640px) {
  .testimonials-section { padding: 60px 20px !important; }
}

/* Resources sidebar — :visited override to prevent browser blue */
.promo-widget-cta,
.promo-widget-cta:visited {
  color: #fff !important;
  background: #B8954A !important;
  text-decoration: none !important;
}
.promo-widget-cta:hover,
.promo-widget-cta:focus {
  color: #fff !important;
  background: #8A6D2F !important;
}
.inq-btn,
.inq-btn:visited {
  color: #B8954A !important;
  background: var(--ink) !important;
  text-decoration: none !important;
}
.inq-btn:hover,
.inq-btn:focus {
  color: #B8954A !important;
  background: var(--ink-mid) !important;
}
.art-card-read,
.art-card-read:visited {
  color: #B8954A !important;
  text-decoration: none !important;
}
.art-card-read:hover {
  color: #D4B06A !important;
}
.pop-post-title a,
.pop-post-title a:visited {
  color: var(--ink-mid) !important;
  text-decoration: none !important;
}
.pop-post-title a:hover {
  color: #B8954A !important;
}


/* ══════════════════════════════════════════════════════════════
   Fluent Forms — Global Style Overrides
   ══════════════════════════════════════════════════════════════ */

.fluentform {
  font-family: var(--sans, 'Jost', sans-serif) !important;
}
.fluentform * {
  box-sizing: border-box;
}

/* Labels */
.fluentform .ff-el-form-label {
  font-family: var(--sans, 'Jost', sans-serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mid, #444);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Text inputs, email, textarea */
.fluentform input[type="text"],
.fluentform input[type="email"],
.fluentform input[type="tel"],
.fluentform input[type="url"],
.fluentform input[type="number"],
.fluentform textarea,
.fluentform select {
  width: 100%;
  background: var(--cream-dark, #FAF8F3) !important;
  border: 1px solid rgba(184,149,74,0.22) !important;
  padding: 14px 18px !important;
  font-family: var(--sans, 'Jost', sans-serif) !important;
  font-size: 15px !important;
  color: var(--ink, #1A1A1A) !important;
  border-radius: 0 !important;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.fluentform input:focus,
.fluentform textarea:focus,
.fluentform select:focus {
  border-color: var(--gold, #B8954A) !important;
  box-shadow: 0 0 0 3px rgba(184,149,74,0.1) !important;
}

/* Placeholder */
.fluentform input::placeholder,
.fluentform textarea::placeholder {
  color: var(--gold-muted, rgba(184,149,74,0.5)) !important;
  font-style: italic;
}

/* Select dropdown */
.fluentform select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23B8954A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 12px !important;
  padding-right: 40px !important;
  cursor: pointer;
}

/* Textarea */
.fluentform textarea {
  min-height: 120px;
  resize: vertical;
}

/* Submit button */
.fluentform .ff_btn_submit,
.fluentform button.ff_btn_submit,
.fluentform input[type="submit"].ff_btn_submit {
  background: var(--gold, #B8954A) !important;
  color: #fff !important;
  border: none !important;
  padding: 16px 40px !important;
  font-family: var(--sans, 'Jost', sans-serif) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  width: 100%;
  display: block;
}

.fluentform .ff_btn_submit:hover,
.fluentform button.ff_btn_submit:hover,
.fluentform input[type="submit"].ff_btn_submit:hover {
  background: var(--gold-deep, #9A7A3A) !important;
  transform: translateY(-1px);
}

/* Checkboxes */
.fluentform .ff-el-group.ff-el-checkbox-group label {
  font-family: var(--sans, 'Jost', sans-serif);
  font-size: 14px;
  color: var(--ink-mid, #444);
}
.fluentform input[type="checkbox"] {
  accent-color: var(--gold, #B8954A);
}

/* File upload */
.fluentform .ff-upload-area {
  border: 2px dashed rgba(184,149,74,0.3) !important;
  border-radius: 0 !important;
  background: var(--cream-dark, #FAF8F3) !important;
  padding: 24px !important;
}
.fluentform .ff-upload-area:hover {
  border-color: var(--gold, #B8954A) !important;
}

/* Error states */
.fluentform .ff-el-group.has-error input,
.fluentform .ff-el-group.has-error textarea,
.fluentform .ff-el-group.has-error select {
  border-color: #D32F2F !important;
}
.fluentform .ff-el-group .ff-errors {
  font-size: 12px;
  color: #D32F2F;
  margin-top: 4px;
}

/* Required asterisk */
.fluentform .ff-el-form-label .ff_required_asterisk {
  color: var(--gold, #B8954A) !important;
}

/* Success message */
.fluentform .ff-message-success {
  background: rgba(184,149,74,0.08) !important;
  border: 1px solid rgba(184,149,74,0.3) !important;
  border-radius: 0 !important;
  color: var(--ink, #1A1A1A) !important;
  padding: 24px !important;
  font-family: var(--sans, 'Jost', sans-serif) !important;
}

/* Two-column row layout (match site form rows) */
.fluentform .ff-el-group .ff-el-input--content {
  display: block;
}
.fluentform .ff_t_container {
  gap: 16px;
}

/* Modal-specific overrides */
.modal .fluentform input[type="text"],
.modal .fluentform input[type="email"],
.modal .fluentform input[type="tel"],
.modal .fluentform textarea,
.modal .fluentform select {
  padding: 12px 14px !important;
  font-size: 14px !important;
}
.modal .fluentform .ff_btn_submit {
  padding: 12px 24px !important;
  font-size: 13px !important;
}

/* Spacing between fields */
.fluentform .ff-el-group {
  margin-bottom: 18px !important;
}
