/* ============================================================
   MOCA Website — extra sections (extending kit-styles.css)
   ============================================================ */

/* ── Global niceties ── */
.section--ink   { background: var(--moca-ink); color: var(--moca-cream); }
.section--accent { background: var(--moca-orange); color: var(--moca-ink); }

/* "Image" placeholders — designed as material/photo stand-ins.
   Each has a subtle diagonal stripe weave + a label band. Use the
   accompanying CSS variables to colorize per usage. */
.photo {
  position: relative; overflow: hidden;
  background:
    linear-gradient(135deg, var(--photo-a, #2a221b) 0%, var(--photo-b, #1a1612) 100%);
  border-radius: 4px;
}
.photo::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    var(--photo-stripe-angle, 45deg),
    transparent 0 18px,
    var(--photo-stripe-color, rgba(255,255,255,0.06)) 18px 19px);
  pointer-events: none;
}
.photo::after {
  /* warm light vignette to mimic photo lighting */
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,193,128,0.18), transparent 55%);
  pointer-events: none;
}
.photo__corner {
  position: absolute; left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  z-index: 2;
}
.photo__corner::before {
  content: ''; width: 8px; height: 8px;
  background: var(--moca-orange); border-radius: 50%;
}
.photo__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--moca-orange); color: var(--moca-ink);
  font-weight: 700; font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 5px 9px; border-radius: 2px;
}
.photo__title {
  position: absolute; right: 18px; top: 18px; z-index: 2;
  font-family: 'Archivo', sans-serif; font-weight: 900;
  font-size: 28px; line-height: 0.95; letter-spacing: -0.02em;
  color: rgba(255,255,255,0.92);
  text-align: right; text-transform: uppercase;
  max-width: 70%;
}

/* Color variants used as "photographic" tones */
.photo--warm   { --photo-a: #6b3a1e; --photo-b: #2a1c13; }
.photo--steel  { --photo-a: #3a3a3e; --photo-b: #1c1c20; }
.photo--cream  { --photo-a: #c8b395; --photo-b: #7a6a55; color: var(--moca-ink); }
.photo--orange { --photo-a: #ff6b1a; --photo-b: #b34a0d; --photo-stripe-color: rgba(255,255,255,0.18); }
.photo--ink    { --photo-a: #2a2520; --photo-b: #0e0c0a; }
.photo--walnut { --photo-a: #4d3320; --photo-b: #1f1410; }
.photo--white  { --photo-a: #f4ede0; --photo-b: #d9cfbd; color: var(--moca-ink); }
.photo--white .photo__corner { color: rgba(26,22,18,0.7); }

/* Reusable cluster image grid: 1 big + 2 small */
.photo-cluster {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 480px;
}
.photo-cluster > :nth-child(1) { grid-row: span 2; }


/* ── Hero overrides ── */
.hero { padding: 72px 0 96px; }
.hero__grid { grid-template-columns: 1.1fr 1fr; gap: 56px; }
.hero__title {
  font-size: clamp(36px, 4.2vw, 56px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.02em !important;
  margin: 22px 0 22px !important;
  max-width: 560px;
}
.hero__title em { white-space: nowrap; }

/* Keep header nav on one line each */
.header__nav a { white-space: nowrap; }
.header__inner { gap: 24px !important; }
.header__logo-link {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.header__logo {
  height: 44px !important; width: auto !important;
  display: block;
}
.header__logo-text {
  display: flex; flex-direction: column; line-height: 1.05;
  font-family: 'Be Vietnam Pro', sans-serif;
  white-space: nowrap;
}
.header__logo-text strong {
  font-family: 'Archivo', sans-serif; font-weight: 900;
  font-size: 17px; letter-spacing: 0.02em;
  color: var(--moca-ink); text-transform: uppercase;
}
.header__logo-text em {
  font-style: normal; font-weight: 500;
  font-size: 9.5px; letter-spacing: 0.18em;
  color: var(--fg-2); text-transform: uppercase;
  margin-top: 2px;
}
.header__phone { white-space: nowrap; }
.header .btn   { white-space: nowrap; }
.btn { white-space: nowrap; }

.hero__visual {
  aspect-ratio: 4/5;
  background:
    linear-gradient(160deg, #2a1c13 0%, #0d0a08 100%);
}
.hero__visual::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(255,107,26,0.22), transparent 55%),
    radial-gradient(ellipse at 20% 90%, rgba(255,193,128,0.10), transparent 60%);
}
.hero__visual::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 99px, rgba(255,255,255,0.04) 99px 100px),
    repeating-linear-gradient(0deg,  transparent 0 99px, rgba(255,255,255,0.04) 99px 100px);
}

/* ── Hero photo slideshow ── */
.hero__visual--slides::before,
.hero__visual--slides::after { display: none; }
.hero__slides {
  position: absolute; inset: 0;
  background: #0e0a07;
}
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
  transform: scale(1.02);
  transition: transform 5200ms ease-out;
}
.hero__slide.is-active img { transform: scale(1.08); }
.hero__slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0) 25%,
    rgba(0,0,0,0) 45%,
    rgba(14,10,7,0.85) 100%);
  z-index: 2; pointer-events: none;
}
/* re-style stats badge to sit on top of photos */
.hero__visual--slides .hero__stats {
  top: 22px; right: 22px; z-index: 5;
  box-shadow: 0 8px 22px rgba(0,0,0,0.32);
  padding: 12px 16px;
}
.hero__visual--slides .hero__stats strong { font-size: 22px; }
.hero__visual--slides .hero__visual-corner {
  z-index: 4;
}
.hero__slide-meta {
  display: flex; flex-direction: column;
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 2px solid var(--moca-orange);
}
.hero__slide-meta .cat {
  font-family: 'Be Vietnam Pro', sans-serif; font-weight: 700;
  font-size: 13px; color: var(--moca-cream); letter-spacing: 0.01em;
}
.hero__slide-meta .loc {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: rgba(255,255,255,0.7); letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Compact slide controls — top-left, won't crowd the badge */
.hero__slide-ctl {
  position: absolute; top: 22px; left: 22px;
  display: flex; align-items: stretch; gap: 0;
  z-index: 5;
  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
}
.hero__slide-btn {
  width: 32px; height: 32px;
  background: transparent; border: 0;
  color: var(--moca-cream); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 150ms, color 150ms;
}
.hero__slide-btn:hover {
  background: var(--moca-orange);
  color: var(--moca-ink);
}
.hero__slide-dots {
  display: flex; align-items: center;
  padding: 0 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--moca-cream);
  border-left: 1px solid rgba(255,255,255,0.12);
  border-right: 1px solid rgba(255,255,255,0.12);
  white-space: nowrap;
}
.hero__slide-dots strong {
  color: var(--moca-orange); font-weight: 700;
  font-size: 13px;
}
.hero__visual-edge {
  position: absolute; left: 24px; right: 24px; top: 32px;
  height: 120px; display: flex; flex-direction: column;
  z-index: 2;
}
/* HPL panel cross-section stripes */
.hero__visual-edge .layer {
  height: 9px; flex: 0 0 9px; border-radius: 1px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.25);
}
.hero__visual-edge .layer.dark   { background: #1a1612; flex: 0 0 14px; }
.hero__visual-edge .layer.kraft  { background: #6b4a2a; }
.hero__visual-edge .layer.kraft2 { background: #8b6336; }
.hero__visual-edge .layer.cream  { background: #faf7f0; flex: 0 0 14px; }
.hero__visual-edge .layer.orange { background: var(--moca-orange); flex: 0 0 5px; }
.hero__visual-edge .label {
  margin-top: 14px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--moca-gray-300); letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 28px; max-width: 520px;
}
.hero__chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: 2px;
  background: var(--moca-white); border: 1px solid var(--border-1);
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.06em; color: var(--moca-graphite);
}
.hero__chip::before {
  content: ''; width: 5px; height: 5px; background: var(--moca-orange);
  border-radius: 50%;
}

/* ── Product grid — column variants (driven by .moca-app--cols-N) ── */
.products--3col { grid-template-columns: repeat(3, 1fr); gap: 24px; }
.moca-app--cols-4 .products { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.moca-app--cols-3 .products { grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Real photos in product cards — cover-fit the whole thumb */
.pcard__thumb { background: var(--moca-ink); }
.pcard__thumb img {
  width: 100% !important; height: 100% !important;
  object-fit: cover; object-position: center;
  display: block;
}
.pcard:hover .pcard__thumb img { transform: scale(1.04); }

/* Product detail overlay — show full photo */
.pdp__visual {
  padding: 0 !important;
  background: var(--moca-ink) !important;
}
.pdp__visual img {
  width: 100% !important; height: 100% !important;
  max-width: none !important;
  object-fit: cover; object-position: center;
}

/* ── Accessory mini-showcase (below product grid) ── */
.acc-showcase {
  margin-top: 56px;
  padding: 40px;
  background: var(--moca-white);
  border: 1px solid rgba(26, 22, 18, 0.06);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.acc-showcase::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--moca-orange);
}
.acc-showcase__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 32px;
}
.acc-showcase__head h3 {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 800; font-size: 24px; line-height: 1.2;
  letter-spacing: -0.01em; color: var(--moca-ink);
  margin: 12px 0 0;
}
.acc-showcase__head p {
  font-size: 13.5px; line-height: 1.6; color: var(--moca-gray-600);
  margin: 4px 0 0;
}
.acc-showcase__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.acc-tile {
  background: var(--moca-cream);
  border: 1px solid rgba(26, 22, 18, 0.06);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.acc-tile:hover {
  border-color: rgba(26, 22, 18, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26, 22, 18, 0.06);
}
.acc-tile__thumb {
  aspect-ratio: 1; overflow: hidden;
  background: var(--moca-gray-100);
}
.acc-tile__thumb img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 250ms;
}
.acc-tile:hover .acc-tile__thumb img { transform: scale(1.05); }
.acc-tile__meta { padding: 14px 16px; }
.acc-tile__name {
  font-weight: 700; font-size: 14px; color: var(--moca-ink);
  letter-spacing: -0.005em;
}
.acc-tile__series {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; color: var(--fg-2);
  letter-spacing: 0.04em; margin-top: 3px;
}
.acc-tile--cta {
  background: var(--moca-ink);
  display: flex; align-items: center; justify-content: center;
  color: var(--moca-cream);
  border-color: var(--moca-ink);
}
.acc-tile--cta:hover {
  background: var(--moca-orange);
  border-color: var(--moca-orange);
  color: var(--moca-ink);
}
.acc-tile__cta-inner { text-align: center; padding: 24px 18px; }
.acc-tile__cta-num {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 800; font-size: 42px; line-height: 1;
  letter-spacing: -0.03em;
  color: var(--moca-orange);
}
.acc-tile--cta:hover .acc-tile__cta-num { color: var(--moca-ink); }
.acc-tile__cta-label {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  margin: 8px 0 16px;
  opacity: 0.8;
}
.acc-tile__cta-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.acc-showcase__certs {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid rgba(26, 22, 18, 0.06);
  display: flex; align-items: center; gap: 12px;
  font-size: 12.5px; color: var(--moca-gray-600);
  line-height: 1.5;
}
.acc-showcase__certs svg { color: var(--moca-orange); flex-shrink: 0; }
.acc-showcase__certs strong {
  color: var(--moca-ink); font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  font-size: 11px;
}

/* ── Trust strip (Khách hàng tiêu biểu) ── */
.trust {
  padding: 36px 0; background: var(--moca-white);
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}
.trust__inner { display: flex; align-items: center; gap: 48px; }
.trust__label {
  font-family: 'Be Vietnam Pro', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-2); white-space: nowrap;
  display: flex; align-items: center; gap: 10px;
}
.trust__label::after {
  content: ''; width: 32px; height: 1.5px; background: var(--moca-orange);
}
.trust__logos {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 32px; flex: 1; align-items: center;
}
.trust__logo {
  height: 48px; display: flex; align-items: center; justify-content: center;
  opacity: 0.78; transition: opacity 150ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.trust__logo:hover { opacity: 1; }
.trust__logo img {
  max-height: 100%; max-width: 100%;
  width: auto; height: auto;
  object-fit: contain; display: block;
}


/* ── Applications (Ứng dụng) ── */
.apps__layout {
  display: grid; grid-template-columns: 280px 1fr; gap: 48px;
}
.apps__menu {
  display: flex; flex-direction: column; gap: 2px;
  border-left: 1px solid var(--border-1);
}
.apps__menu button {
  text-align: left; background: transparent; border: 0;
  padding: 18px 22px; cursor: pointer;
  border-left: 2px solid transparent; margin-left: -1px;
  transition: all 150ms cubic-bezier(0.2,0.8,0.2,1);
  display: flex; flex-direction: column; gap: 6px;
}
.apps__menu button:hover { background: var(--moca-cream); }
.apps__menu button.is-active {
  border-left-color: var(--moca-orange);
  background: var(--moca-cream);
}
.apps__menu .num {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.16em; color: var(--moca-orange);
}
.apps__menu .name {
  font-weight: 700; font-size: 15px; color: var(--moca-ink);
  letter-spacing: -0.005em;
}
.apps__menu button.is-active .name { color: var(--moca-ink); }
.apps__menu .name em {
  font-style: normal; font-weight: 500; font-size: 12px;
  color: var(--fg-2); margin-left: 6px;
}

.apps__stage {
  position: relative; min-height: 460px;
}
.apps__hero {
  position: relative; height: 420px; border-radius: 4px;
  overflow: hidden;
  background: #0e0a07;
}
.apps__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.apps__slide.is-active { opacity: 1; }
.apps__slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
  transform: scale(1.04);
  transition: transform 6000ms ease-out;
}
.apps__slide.is-active img { transform: scale(1.12); }

.apps__hero-shade {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0) 30%, rgba(14,10,7,0.85) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.05) 50%);
  pointer-events: none;
}

.apps__hero-content {
  position: absolute; left: 32px; bottom: 32px; right: 32px;
  color: var(--moca-cream); z-index: 3;
}
.apps__hero-content .title {
  font-family: 'Be Vietnam Pro', sans-serif; font-weight: 800;
  font-size: 36px; line-height: 1.1; letter-spacing: -0.015em;
  margin: 12px 0 14px; max-width: 540px;
  color: var(--moca-cream);
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
.apps__hero-content .desc {
  font-size: 14px; line-height: 1.6; color: var(--moca-gray-300);
  max-width: 460px; margin: 0 0 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.apps__hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--moca-orange); color: var(--moca-ink);
  font-weight: 700; font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 6px 10px; border-radius: 2px;
}

/* progress bar for auto-advance */
.apps__progress {
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: rgba(255,255,255,0.12); z-index: 3;
}
.apps__progress-bar {
  height: 100%; background: var(--moca-orange);
  transform-origin: left center;
  animation: apps-progress 5000ms linear forwards;
}
@keyframes apps-progress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.apps__chips {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 20px;
}
.apps__chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 11px; border: 1px solid var(--border-1);
  background: var(--moca-white); border-radius: 2px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.04em; color: var(--moca-graphite);
}
.apps__chip svg { color: var(--moca-orange); }


/* ── Materials / Color collection ── */
.materials {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px;
  align-items: center;
}
.materials__copy ul {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px;
}
.materials__copy li {
  position: relative; padding-left: 24px;
  font-size: 14px; line-height: 1.5; color: var(--moca-gray-700);
}
.materials__copy li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 12px; height: 2px; background: var(--moca-orange);
}

.swatch-grid {
  display: grid; grid-template-columns: repeat(8, 1fr);
  gap: 6px;
}
.swatch {
  aspect-ratio: 1; border-radius: 2px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 150ms cubic-bezier(0.2,0.8,0.2,1);
}
.swatch:hover { transform: translateY(-2px); }
.swatch__code {
  position: absolute; left: 4px; bottom: 3px;
  font-family: 'JetBrains Mono', monospace; font-size: 8px;
  color: rgba(0,0,0,0.55); letter-spacing: 0.04em;
  background: rgba(255,255,255,0.7); padding: 1px 3px; border-radius: 1px;
}
.swatch--dark .swatch__code {
  color: rgba(255,255,255,0.85); background: rgba(0,0,0,0.4);
}
.swatch-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px; font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.06em; color: var(--fg-2);
}
.swatch-meta strong { color: var(--moca-ink); }


/* ── Projects (Công trình tiêu biểu) ── */
.projects-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 14px;
}
.projects-grid > :nth-child(1) { grid-row: span 2; }
.project {
  position: relative; overflow: hidden; border-radius: 4px;
  cursor: pointer;
  background:
    linear-gradient(135deg, var(--photo-a, #2a221b) 0%, var(--photo-b, #0e0a07) 100%);
  transition: transform 250ms cubic-bezier(0.2,0.8,0.2,1);
}
.project::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg,
    transparent 0 22px, rgba(255,255,255,0.05) 22px 23px);
}
.project::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.65) 100%);
}
.project__meta {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  z-index: 2; color: var(--moca-cream);
}
.project__cat {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--moca-orange); margin-bottom: 6px;
}
.project__title {
  font-family: 'Be Vietnam Pro', sans-serif; font-weight: 700;
  font-size: 18px; line-height: 1.25; letter-spacing: -0.005em;
}
.project__loc {
  font-size: 12px; color: var(--moca-gray-300); margin-top: 4px;
}
.project__arrow {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  width: 38px; height: 38px; border-radius: 2px;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--moca-cream);
  transition: background 150ms, transform 150ms;
}
.project:hover .project__arrow {
  background: var(--moca-orange);
  color: var(--moca-ink);
  transform: rotate(-45deg);
}
.project--big .project__title { font-size: 28px; }


/* ── CTA Band (orange full-bleed) ── */
.ctaband {
  background: var(--moca-orange);
  color: var(--moca-ink);
  padding: 56px 0;
  position: relative; overflow: hidden;
}
.ctaband::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg,
    transparent 0 28px, rgba(0,0,0,0.06) 28px 30px);
  pointer-events: none;
}
.ctaband__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; position: relative; z-index: 2;
}
.ctaband__inner h3 {
  font-family: 'Be Vietnam Pro', sans-serif; font-weight: 800;
  font-size: clamp(24px, 2.6vw, 36px); line-height: 1.15;
  letter-spacing: -0.015em; margin: 0; max-width: 620px;
}
.ctaband__inner p {
  font-size: 14px; color: var(--moca-ink); opacity: 0.75; margin: 8px 0 0;
}
.ctaband__cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--moca-ink); color: var(--moca-cream);
  padding: 16px 26px; border-radius: 2px; border: 0;
  font-weight: 600; font-size: 15px; cursor: pointer;
  transition: background 150ms;
  font-family: inherit;
}
.ctaband__cta:hover { background: var(--moca-charcoal); }
.ctaband__phone {
  display: inline-flex; flex-direction: column; align-items: flex-end;
  font-family: 'JetBrains Mono', monospace;
}
.ctaband__phone .lbl { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.65; }
.ctaband__phone .num { font-size: 28px; font-weight: 700; letter-spacing: 0.02em; white-space: nowrap; }
.ctaband__phone { white-space: nowrap; }


/* ── News / Knowledge cards ── */
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.ncard {
  background: var(--moca-white);
  border: 1px solid var(--border-1); border-radius: 4px;
  overflow: hidden; cursor: pointer;
  transition: border-color 150ms;
  display: flex; flex-direction: column;
}
.ncard:hover { border-color: var(--moca-ink); }
.ncard__thumb {
  aspect-ratio: 16/9; position: relative; overflow: hidden;
  background:
    linear-gradient(135deg, var(--photo-a, #2a221b) 0%, var(--photo-b, #0e0a07) 100%);
}
.ncard__thumb::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg,
    transparent 0 18px, rgba(255,255,255,0.05) 18px 19px);
}
.ncard__cat {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--moca-orange); color: var(--moca-ink);
  font-weight: 700; font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 5px 9px; border-radius: 2px;
}
.ncard__date {
  position: absolute; bottom: 14px; left: 14px; z-index: 2;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: rgba(255,255,255,0.8); letter-spacing: 0.06em;
}
.ncard__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.ncard__title {
  font-weight: 700; font-size: 17px; line-height: 1.35;
  color: var(--moca-ink); letter-spacing: -0.005em; margin: 0 0 10px;
}
.ncard__exc {
  font-size: 13.5px; line-height: 1.6; color: var(--moca-gray-600);
  flex: 1;
}
.ncard__more {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 13px; color: var(--moca-ink);
  transition: gap 150ms, color 150ms;
}
.ncard:hover .ncard__more { color: var(--moca-orange-600); gap: 10px; }


/* ── Process timeline ── */
.process {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative;
}
.process::before {
  content: ''; position: absolute;
  left: 10%; right: 10%; top: 30px; height: 2px;
  background: var(--moca-orange); opacity: 0.35;
}
.proc {
  position: relative; padding: 0 16px; text-align: center;
}
.proc__dot {
  width: 60px; height: 60px; border-radius: 50%;
  margin: 0 auto 18px; position: relative; z-index: 2;
  background: var(--moca-cream); border: 2px solid var(--moca-orange);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Archivo', sans-serif; font-weight: 900;
  font-size: 22px; color: var(--moca-ink);
}
.section--ink .proc__dot { background: var(--moca-ink); color: var(--moca-cream); }
.proc__title {
  font-weight: 700; font-size: 14px; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 8px;
}
.proc__desc { font-size: 12.5px; line-height: 1.55; color: var(--moca-gray-600); }
.section--ink .proc__desc { color: var(--moca-gray-300); }


/* ── Footer brand layout (with real logo) ── */
.footer__brand-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer__brand-row img { height: 56px !important; width: auto !important; margin: 0 !important; display: block; }
.footer__brand-text { display: flex; flex-direction: column; line-height: 1.1; white-space: nowrap; }
.footer__brand-text strong {
  font-family: 'Archivo', sans-serif; font-weight: 900;
  font-size: 18px; letter-spacing: 0.02em;
  color: var(--moca-cream); text-transform: uppercase;
}
.footer__brand-text em {
  font-style: normal; font-weight: 500;
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--moca-orange); text-transform: uppercase;
  margin-top: 3px;
}

/* ── Quote / contact section with embedded Typeform ── */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: stretch;
}
.quote-grid a { transition: opacity 150ms; }
.quote-grid a:hover { opacity: 0.78; }
.quote-embed {
  background: var(--moca-white);
  border-radius: 4px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}
.quote-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}
.floatbar {
  position: fixed; right: 18px; bottom: 18px; z-index: 80;
  display: flex; flex-direction: column; gap: 10px;
}
.floatbar a {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--moca-orange); color: var(--moca-ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(255,107,26,0.35);
  transition: transform 150ms cubic-bezier(0.2,0.8,0.2,1);
}
.floatbar a:hover { transform: translateY(-2px); }
.floatbar .zalo {
  background: var(--moca-ink); color: var(--moca-cream);
  box-shadow: 0 8px 22px rgba(26,22,18,0.35);
  font-family: 'Archivo', sans-serif; font-weight: 900;
  font-size: 14px; letter-spacing: 0.04em;
}


/* ── Tweaks panel (custom, follows MOCA aesthetic) ── */
.tweaks {
  position: fixed; right: 18px; top: 90px; z-index: 90;
  width: 280px; background: var(--moca-white);
  border: 1px solid var(--border-2); border-radius: 4px;
  box-shadow: var(--shadow-md);
  font-family: 'Be Vietnam Pro', sans-serif;
}
.tweaks__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 14px; border-bottom: 1px solid var(--border-1);
}
.tweaks__head strong {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--moca-ink);
}
.tweaks__close {
  background: none; border: 0; padding: 2px; color: var(--fg-2);
}
.tweaks__body { padding: 14px; display: flex; flex-direction: column; gap: 16px; }
.tweaks__row { display: flex; flex-direction: column; gap: 6px; }
.tweaks__row label {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-2); font-weight: 700;
}
.tweaks__seg {
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 4px;
}
.tweaks__seg button {
  border: 1px solid var(--border-1); background: var(--moca-white);
  padding: 8px 6px; font-size: 12px; cursor: pointer;
  font-family: inherit; color: var(--moca-graphite);
  transition: all 150ms;
}
.tweaks__seg button:hover { border-color: var(--moca-ink); }
.tweaks__seg button.is-on {
  background: var(--moca-ink); color: var(--moca-cream); border-color: var(--moca-ink);
}
.tweaks__sw { display: flex; gap: 6px; }
.tweaks__sw button {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--border-1); cursor: pointer; padding: 0;
  transition: border-color 150ms, transform 150ms;
}
.tweaks__sw button:hover { transform: scale(1.08); }
.tweaks__sw button.is-on { border-color: var(--moca-ink); }
