/* ============================================================
   SPARK LANTERN — Global Design System (Phase 1)
   Shared stylesheet for every page. Do not create page-local CSS
   that duplicates these tokens or components.
   ============================================================ */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Color */
  --bg: #FBFAF8;
  --bg-2: #F5F1EA;
  --panel: #FFFFFF;
  --ink: #1A1714;
  --ink-2: #3E3830;
  --muted: #7A7268;
  --bronze: #C58F4E;
  --gold: #EEC279;
  --green: #1F3D2E;
  --green-soft: rgba(31,61,46,0.08);
  --bronze-soft: rgba(197,143,78,0.12);
  --border: rgba(26,23,20,0.10);
  --dark: #0E1116;
  --dark-2: #141A22;
  --dark-text: #ECE8E1;
  --dark-muted: #9AA0A8;
  --amber: #E8A317;
  --cream: #FBFAF8;

  /* Typography */
  --display: "Cinzel", Georgia, serif;
  --body: "Merriweather", Georgia, serif;
  --ui: "Inter", system-ui, sans-serif;

  /* Shape */
  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1200px;

  /* Spacing scale (Section rhythm) */
  --sec: clamp(64px, 9vw, 110px);
  --sec-sm: clamp(40px, 6vw, 64px);
  --card-gap: 22px;
}

/* ---------- 2. Reset & base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- 3. Typography ---------- */
h1, h2, h3, .display { font-family: var(--display); font-weight: 600; line-height: 1.15; letter-spacing: 0.01em; }
.display { font-size: clamp(2.2rem, 5.8vw, 5rem); }
.h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--ink-2); max-width: 54ch; line-height: 1.7; }
.small { font-size: 14px; color: var(--muted); line-height: 1.6; }
/* Eyebrow: deep bronze on light sections (was --bronze #C58F4E, ratio 2.72 on cream = unreadable; now #8B5E2E = 5.39). Dark sections override to --gold for contrast on --green. */
.eyebrow {
  font-family: var(--ui);
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.2em;
  color: #8B5E2E; font-weight: 600;
}
.eyebrow::before { content: "\2726\00a0"; color: #8B5E2E; }
.section.dark .eyebrow { color: var(--gold); }
.section.dark .eyebrow::before { color: var(--gold); }

/* ---------- 4. Section rhythm ---------- */
.section { padding: var(--sec) 0; }
.section.tint { background: var(--bg-2); }
.section.dark { background: var(--green); color: #F5F1EA; }
.section.dark .h2 { color: #fff; }
.section.dark .lead { color: rgba(245,241,234,0.75); }
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head .lead { margin-top: 16px; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ui); font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 999px;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform 0.18s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  white-space: nowrap; text-align: center;
}
.btn-sm { padding: 11px 22px; font-size: 14px; }
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-primary { background: var(--amber); color: #1A1206; }
.btn-primary:hover { transform: translateY(-2px); background: #F2B12C; }
.btn-gold { background: var(--bronze); color: #fff; }
.btn-gold:hover { transform: translateY(-2px); background: #A67439; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--bronze); color: var(--bronze); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: #FFFFFF; border-color: rgba(255,255,255,0.6); font-weight: 600; }
.btn-ghost-light:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- 6. Global header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  height: 80px;
  display: flex; align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(14,17,22,0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.header-inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: 0.04em; color: var(--dark-text); white-space: nowrap; }
.brand-icon { width: 34px; height: auto; flex: none; filter: drop-shadow(0 0 10px rgba(255, 26, 44, 0.35)); }

/* Desktop nav */
.nav-links { display: none; align-items: center; gap: 26px; font-family: var(--ui); font-size: 14px; font-weight: 500; color: var(--dark-muted); }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link { position: relative; display: inline-flex; align-items: center; gap: 6px; padding: 8px 2px; color: rgba(236,232,225,0.85); transition: color 0.2s ease; }
.nav-link:hover { color: var(--amber); }
/* Current page highlight (Phase 2 alignment: parent nav active) */
.nav-link.active { color: var(--amber); }
.nav-link.active .caret { color: var(--amber); }
.mobile-menu > a.active { color: var(--amber); font-weight: 600; }
.mobile-menu .mm-toggle.active { color: var(--amber); }
.nav-link .caret { width: 9px; height: 9px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: 0.7; transition: transform 0.2s ease; }
.nav-dropdown:hover .caret { transform: rotate(225deg) translateY(-1px); }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  min-width: 248px; padding: 8px; margin-top: 10px;
  background: rgba(14,17,22,0.98); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.10); border-radius: 12px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.45);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease; z-index: 120;
}
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown:hover .dropdown,
.nav-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
/* Bridge the hover gap (margin-top 10px + translateY 10px) so the mouse can move
   from the main nav item down into the dropdown without the menu closing. */
.nav-dropdown > .dropdown::before {
  content: ""; position: absolute; top: -22px; left: 0; right: 0; height: 22px;
}
.dropdown a { display: block; padding: 11px 14px; border-radius: 8px; font-size: 13.5px; font-weight: 500; color: var(--dark-text); white-space: nowrap; }
.dropdown a:hover { background: rgba(232,163,23,0.12); color: var(--amber); }
.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }

/* Mobile toggle */
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 42px; height: 42px; flex: none;
  background: transparent; border: 1px solid rgba(255,255,255,0.22); border-radius: 10px; cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--dark-text); border-radius: 2px; transition: .25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Mobile menu panel */
.mobile-menu {
  position: fixed; top: 80px; left: 0; right: 0; z-index: 59;
  background: rgba(14,17,22,0.98); backdrop-filter: blur(14px);
  padding: 8px 24px 24px; border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 30px rgba(0,0,0,0.4);
  display: none; flex-direction: column; max-height: calc(100vh - 80px); overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu > a, .mobile-menu .mm-toggle {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 15px 2px; border-bottom: 1px solid rgba(255,255,255,0.07); width: 100%;
  font-family: var(--ui); font-size: 15px; font-weight: 500; color: var(--dark-text);
  background: none; border-left: none; border-right: none; border-top: none; cursor: pointer;
}
.mobile-menu .mm-toggle .caret { width: 9px; height: 9px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: 0.7; transition: transform 0.2s ease; }
.mobile-menu .mm-open .caret { transform: rotate(225deg) translateY(-1px); }
.mobile-menu .mm-panel { display: none; flex-direction: column; padding: 2px 0 10px 14px; }
.mobile-menu .mm-open + .mm-panel { display: flex; }
.mobile-menu .mm-panel a { padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.05); color: rgba(246,241,231,0.78); font-family: var(--ui); font-size: 14px; }
.mobile-menu .mm-panel a:hover { color: var(--amber); }
.mobile-menu .mm-panel a::before { content: "\2014  "; opacity: 0.45; }
.mobile-menu .mobile-cta { margin-top: 18px; }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(96px, 12vw, 150px) 0 clamp(80px, 10vw, 120px);
  background: #0E1116;
  color: var(--dark-text);
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10,12,16,0.82) 0%, rgba(10,12,16,0.55) 42%, rgba(10,12,16,0.18) 100%),
    linear-gradient(0deg, rgba(10,12,16,0.66) 0%, rgba(10,12,16,0.10) 38%);
}
.hero-grid { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 70ch; margin: 0 auto; text-align: center; }
.hero h1 { max-width: 18ch; margin: 0 auto; color: #F6F1E7; }
.hero h1 .amber { color: var(--amber); }
.hero .lead { margin: 24px auto 34px; color: rgba(246,241,231,0.82); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero-meta {
  display: flex; justify-content: center; gap: clamp(32px, 6vw, 64px); margin-top: 46px; padding-top: 32px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.14); font-family: var(--ui); text-align: center;
}
.hero-meta div { min-width: 140px; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.hero-meta .hm-label { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); }
.hero-meta strong { color: #F6F1E7; font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 600; font-family: var(--display); line-height: 1.05; margin: 2px 0; }
.hero-meta .hm-note { font-size: 12px; color: rgba(246,241,231,0.68); max-width: 22ch; line-height: 1.45; }
.scroll-hint {
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  font-family: var(--ui); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--dark-muted); z-index: 3;
}
.scroll-hint .chev { width: 20px; height: 20px; color: var(--amber); animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* Inner page hero (smaller, no video) */
.inner-hero {
  position: relative;
  padding: clamp(140px, 18vw, 180px) 0 clamp(56px, 7vw, 84px);
  background: var(--dark) radial-gradient(ellipse at 70% 10%, rgba(232,163,23,0.14), transparent 55%);
  color: var(--dark-text);
  overflow: hidden;
}
.inner-hero .wrap { position: relative; z-index: 2; }
.inner-hero h1 { max-width: 22ch; color: #F6F1E7; margin-top: 14px; }
.inner-hero .lead { color: rgba(246,241,231,0.82); margin-top: 18px; }
.inner-hero .hero-orb { opacity: 0.5; }

/* ---------- 8. Breadcrumbs ---------- */
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-family: var(--ui); font-size: 12.5px; letter-spacing: 0.04em;
  color: var(--dark-muted);
}
.breadcrumb a { color: rgba(236,232,225,0.7); transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb [aria-current="page"] { color: var(--gold); }
.breadcrumb.on-light a { color: var(--muted); }
.breadcrumb.on-light [aria-current="page"] { color: var(--bronze); }

/* ---------- 9. Cards (unified system) ---------- */
.card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--panel); border: 1px solid var(--border);
  box-shadow: 0 14px 40px rgba(26,23,20,0.06);
  display: flex; flex-direction: column;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 46px rgba(26,23,20,0.12); }
/* Standard square image frame: every card image lives in a 1:1 box with the
   full image visible (contain) and the leftover space filled with #F2EFE9.
   The frame fills the layout cell (铺满图框) while the image stays complete
   (完整显示). Card body sits below the square image. */
.card img {
  width: 100%; height: auto; aspect-ratio: 1/1; object-fit: contain;
  transition: transform 0.6s ease; background: #F2EFE9; display: block;
}
.card:hover img { transform: scale(1.04); }
.card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 3;
  background: linear-gradient(90deg, var(--bronze), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .45s ease;
}
.card:hover::after { transform: scaleX(1); }
.card-overlay { display: none; }
.card-body { position: relative; padding: 22px 22px 24px; color: var(--ink); display: flex; flex-direction: column; gap: 8px; flex: 1 1 auto; }
.card-body h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); margin: 0; color: var(--ink); }
.card-body p { font-size: 14.5px; color: var(--muted); max-width: 46ch; line-height: 1.6; opacity: 1; }
.card-body .tag {
  display: inline-block; font-family: var(--ui); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.12em; background: var(--bronze-soft); color: var(--bronze);
  padding: 5px 10px; border-radius: 999px; align-self: flex-start;
}
.card-go { position: absolute; right: 20px; bottom: 22px; font-size: 22px; line-height: 1; color: var(--bronze); opacity: 0; transform: translate(-8px, 8px); transition: .35s ease; z-index: 3; }
.card:hover .card-go { opacity: 1; transform: translate(0, 0); }

/* Card grids — equal-height rows */
.card-grid { display: grid; grid-template-columns: 1fr; gap: var(--card-gap); align-items: stretch; }
@media (min-width: 640px) { .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }
.proj-grid { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: stretch; }
@media (min-width: 720px) { .proj-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .proj-grid { grid-template-columns: repeat(3, 1fr); } }

/* Bento (home product showcase) */
.bento { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 720px) {
  .bento { grid-template-columns: repeat(12, 1fr); grid-auto-rows: 400px; }
  .bento .card:nth-child(1) { grid-column: span 7; grid-row: span 2; }
  .bento .card:nth-child(2) { grid-column: span 5; }
  .bento .card:nth-child(3) { grid-column: span 5; }
  .bento .card:nth-child(4) { grid-column: span 6; }
  .bento .card:nth-child(5) { grid-column: span 6; }
}

/* Plain info card (safety / why) */
.info-card {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 28px; box-shadow: 0 10px 30px rgba(26,23,20,0.05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.info-card:hover { transform: translateY(-6px); box-shadow: 0 18px 46px rgba(26,23,20,0.10); }
.info-card h4 { font-family: var(--display); font-size: 18px; color: var(--green); margin: 14px 0 8px; }
.info-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.info-card .why-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bronze-soft); display: grid; place-items: center;
  font-family: var(--display); font-size: 16px; color: var(--bronze); font-weight: 700;
}

/* ---------- 10. Trust strip ---------- */
.trust { padding: 40px 0 30px; background: var(--bg-2); border-bottom: 1px solid var(--border); }
.trust p { text-align: center; margin-bottom: 18px; color: var(--muted); font-family: var(--ui); font-size: 13px; letter-spacing: 0.08em; }
.focus-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; font-family: var(--ui); font-size: 13px; font-weight: 500; }
.focus-pills span { padding: 8px 16px; border-radius: 999px; background: var(--panel); border: 1px solid var(--border); color: var(--ink-2); }

/* ---------- 11. Manufacturing steps ---------- */
.mfg-flow { list-style: none; display: grid; gap: 24px; margin-top: 46px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .mfg-flow { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .mfg-flow { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.mfg-step { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0; overflow: hidden; box-shadow: 0 10px 30px rgba(26,23,20,0.05); transition: transform .3s ease, background .3s ease; }
.mfg-step:hover { transform: translateY(-6px); box-shadow: 0 18px 46px rgba(26,23,20,0.10); }
.mfg-step img { width: 100%; height: auto; aspect-ratio: 1/1; background: #F2EFE9; object-fit: contain; display: block; transition: transform 0.5s ease; }
.mfg-step:hover img { transform: scale(1.08); }
.mfg-step-body { padding: 22px; }
.mfg-num { font-family: var(--display); font-size: 1.6rem; color: var(--bronze); display: inline-block; margin-bottom: 10px; }
.mfg-step h4 { font-family: var(--ui); font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.mfg-step p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.mfg-cap { display: grid; gap: 30px; margin-top: 56px; align-items: center; grid-template-columns: 1fr; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 30px; }
@media (min-width: 860px) { .mfg-cap { grid-template-columns: 1.1fr 1fr; gap: 48px; padding: 40px 44px; } }
.mfg-cap-intro .h3 { margin: 6px 0 14px; }
.mfg-check { list-style: none; display: grid; gap: 14px; grid-template-columns: 1fr 1fr; align-items: stretch; align-content: center; }
.mfg-check li { font-family: var(--ui); font-size: 15px; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 12px; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; box-shadow: 0 6px 18px rgba(26,23,20,0.04); }
.mfg-check .tick { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 999px; background: var(--bronze); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; }

/* ---------- 12. Experience / About ---------- */
.exp-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 860px) { .exp-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.exp-quote { font-family: var(--display); font-size: clamp(1.4rem, 3vw, 2rem); color: var(--amber); line-height: 1.35; margin-bottom: 24px; }
.exp-list { list-style: none; display: grid; gap: 16px; margin-top: 28px; }
.exp-list li { display: flex; gap: 16px; align-items: flex-start; font-family: var(--ui); font-size: 15px; color: var(--ink-2); }
.exp-list .dot { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; background: var(--gold); margin-top: 2px; box-shadow: 0 0 0 4px rgba(238,194,121,0.25); }
.exp-list li strong { color: var(--ink); font-weight: 600; }
.exp-gallery { display: flex; flex-direction: column; gap: 18px; }
.exp-main { border-radius: var(--radius-sm); overflow: hidden; }
.exp-main img { width: 100%; height: auto; aspect-ratio: 1/1; object-fit: contain; background: #F2EFE9; display: block; transition: transform 0.5s ease; }
.exp-main:hover img { transform: scale(1.04); }
.exp-thumbs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.exp-thumbs img { width: 100%; height: auto; aspect-ratio: 1/1; object-fit: contain; background: #F2EFE9; border-radius: var(--radius-sm); overflow: hidden; display: block; transition: transform 0.5s ease, box-shadow 0.4s ease; }
.exp-thumbs img:hover { transform: scale(1.06); box-shadow: 0 18px 40px rgba(26,23,20,0.18); }
.exp-sticker {
  position: absolute; top: 14px; right: 14px; z-index: 4;
  background: var(--green); color: var(--gold);
  font-family: var(--ui); font-size: 12px; font-weight: 600; letter-spacing: .02em;
  padding: 9px 15px; border-radius: 999px;
  box-shadow: 0 12px 30px rgba(31,61,46,0.35);
  animation: floatY 5s ease-in-out infinite;
}
.exp-img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 24px 70px rgba(31,61,46,0.16); position: relative; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ---------- 13. Case studies ---------- */
.case-feature { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 44px; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 40px rgba(26,23,20,0.08); }
@media (min-width: 860px) { .case-feature { grid-template-columns: 1.1fr 1fr; } }
.case-feature-media { position: relative; min-height: 320px; overflow: hidden; aspect-ratio: 1/1; }
.case-carousel { position: absolute; inset: 0; display: flex; width: 400%; height: 100%; transition: transform 0.6s ease-in-out; }
.case-carousel .slide { width: 25%; height: 100%; flex-shrink: 0; }
.case-carousel .slide img { width: 100%; height: 100%; object-fit: contain; background: #F2EFE9; display: block; }
.case-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; background: rgba(246,241,231,0.92); border: 1px solid var(--border); color: var(--ink); cursor: pointer; z-index: 2; display: flex; align-items: center; justify-content: center; font-size: 15px; line-height: 1; opacity: 0.65; transition: opacity 0.25s, background 0.25s, color 0.25s; }
.case-nav:hover { opacity: 1; background: var(--amber); border-color: var(--amber); color: #fff; }
.case-prev { left: 12px; }
.case-next { right: 12px; }
.case-feature-body { padding: 34px 34px 36px; display: flex; flex-direction: column; gap: 14px; }
.case-feature-body h3 { font-family: var(--display); font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 4px 0 2px; line-height: 1.2; }
.case-feature-body .tag { align-self: flex-start; }
.case-line { font-family: var(--ui); font-size: 15px; color: var(--ink-2); line-height: 1.65; }
.case-line strong { color: var(--ink); }
.case-feature-body .btn { align-self: flex-start; margin-top: 8px; }
.note { font-family: var(--ui); font-size: 12.5px; color: var(--muted); line-height: 1.6; margin-top: 22px; }
.note.center { text-align: center; }

/* ---------- 14. Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 860px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(28px, 3.4vw, 34px); text-align: left; position: relative; display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; }
.testi-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(26,23,20,0.08); }
.testi-stars { color: var(--bronze); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card blockquote { font-family: var(--display); font-size: clamp(1.02rem, 1.9vw, 1.2rem); color: var(--green); line-height: 1.5; margin: 0 0 22px; position: relative; z-index: 1; }
.testi-card blockquote::before { content: "\201C"; font-family: var(--display); font-size: 54px; color: var(--bronze); opacity: 0.2; position: absolute; top: -20px; left: -8px; line-height: 1; }
.testi-by { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }
.testi-by .name { font-family: var(--ui); font-size: 14px; font-weight: 600; color: var(--ink); }
.testi-by .role { font-family: var(--ui); font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.testi-verify { display: inline-flex; align-items: center; gap: 5px; font-family: var(--ui); font-size: 11px; letter-spacing: 0.04em; color: var(--bronze); margin-top: 9px; }

/* ---------- 15. Process ---------- */
.process-layout { display: grid; grid-template-columns: 1fr; gap: 40px; margin-top: 50px; }
@media (min-width: 900px) { .process-layout { grid-template-columns: 1fr 1.55fr; align-items: stretch; } }
.process-stages { display: flex; flex-direction: column; gap: 14px; }
.process-stage { display: flex; gap: 18px; padding: 22px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.05); border: 1px solid rgba(238,194,121,0.18); cursor: pointer; transition: background .3s ease, border-color .3s ease, transform .3s ease; }
.process-stage:hover, .process-stage.active { background: rgba(255,255,255,0.11); border-color: rgba(238,194,121,0.45); transform: translateX(8px); }
.stage-num { font-family: var(--display); font-size: 28px; color: var(--gold); line-height: 1; min-width: 46px; text-shadow: 0 0 18px rgba(238,194,121,0.45); }
.stage-body h4 { font-family: var(--ui); font-size: 16px; font-weight: 600; margin-bottom: 6px; color: #fff; }
.stage-body p { font-size: 14px; color: rgba(245,241,234,0.72); line-height: 1.6; margin: 0; }
.process-visual { position: sticky; top: 100px; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 24px 70px rgba(0,0,0,0.35); background: #0e1f1a; }
.visual-track { position: relative; width: 100%; height: 100%; }
.visual-track img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #0e1f1a; opacity: 0; transform: scale(1.06); transition: opacity .55s ease, transform .7s ease; }
.visual-track img.active { opacity: 1; transform: scale(1); }
@media (min-width: 900px) { .process-visual { align-self: stretch; height: auto; aspect-ratio: auto; } }
@media (max-width: 899px) { .process-visual { position: relative; top: auto; aspect-ratio: 1/1; } }

/* ---------- 16. FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 0 56px; }
@media (min-width: 860px) { .faq-grid { grid-template-columns: 0.8fr 1.2fr; align-items: start; } }
.faq-list { margin-top: 8px; }
@media (min-width: 860px) {
  /* contact page only: span the full width of the 0.8fr+1.2fr parent and lay 4 columns × 2 rows
     (last cell empty since there are 7 items). */
  .faq-list.is-2col { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); column-gap: 28px; row-gap: 0; align-items: start; }
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { cursor: pointer; list-style: none; padding: 14px 4px; font-family: var(--ui); font-weight: 600; font-size: 15px; line-height: 1.45; color: var(--ink); display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { color: var(--bronze); font-size: 20px; line-height: 1; transition: transform .3s ease; flex: 0 0 auto; margin-top: 2px; }
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item .ans { padding: 0 4px 24px; color: var(--ink-2); font-family: var(--body); max-width: 70ch; line-height: 1.7; }

/* ---------- 17. Blog / resources ---------- */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 720px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { display: block; background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; box-shadow: 0 10px 30px rgba(31,28,22,0.06); transition: transform .3s ease, box-shadow .3s ease; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 18px 42px rgba(31,28,22,0.13); }
.blog-card img { width: 100%; height: auto; aspect-ratio: 1/1; object-fit: contain; background: #F2EFE9; display: block; transition: transform .4s ease; background: #F2EFE9; }
.blog-card:hover img { transform: scale(1.04); }
.blog-body { padding: 22px 24px 26px; }
.blog-meta { display: flex; gap: 14px; font-family: var(--ui); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bronze); margin-bottom: 12px; }
.blog-card h4 { font-family: var(--display); font-weight: 600; font-size: 19px; line-height: 1.35; color: var(--ink); margin: 0 0 10px; }
.blog-card p { font-family: var(--ui); font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0 0 16px; }
.blog-more { font-family: var(--ui); font-size: 13px; font-weight: 600; color: var(--bronze); display: inline-flex; align-items: center; gap: 6px; transition: gap .25s ease; }
.blog-card:hover .blog-more { gap: 11px; }
.blog-card .soon { display: inline-flex; font-family: var(--ui); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--border); border-radius: 999px; padding: 5px 12px; }

/* ===== Editorial blog layout (resources / blog index) ===== */
.featured-post {
  display: grid; grid-template-columns: 1fr; gap: 0;
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  overflow: hidden; box-shadow: 0 16px 44px rgba(31,28,22,0.08);
  margin-bottom: 36px;
}
.featured-media { display: block; position: relative; background: #F2EFE9; }
.featured-media img {
  width: 100%; height: auto; aspect-ratio: 1/1; object-fit: contain;
  background: #F2EFE9; display: block; transition: transform .5s ease;
}
.featured-post:hover .featured-media img { transform: scale(1.03); }
.featured-text { padding: 30px 32px 34px; display: flex; flex-direction: column; gap: 12px; }
.badge-featured {
  align-self: flex-start; font-family: var(--ui); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: var(--bronze);
  border-radius: 999px; padding: 6px 14px;
}
.featured-text h3 { font-family: var(--display); font-weight: 700; font-size: clamp(1.5rem, 3.4vw, 2.15rem); line-height: 1.2; color: var(--ink); margin: 0; }
.featured-excerpt { font-family: var(--ui); font-size: 16px; line-height: 1.7; color: var(--muted); max-width: 60ch; margin: 0; }
.featured-post .post-meta { display: flex; align-items: center; gap: 18px; margin-top: 8px; flex-wrap: wrap; }

.blog-filter { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 30px; }
.chip {
  font-family: var(--ui); font-size: 13px; font-weight: 600; color: var(--ink);
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: 9px 18px; cursor: pointer; transition: all .25s ease;
}
.chip:hover { border-color: var(--bronze); color: var(--bronze); }
.chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.blog-grid.editorial { gap: 26px; }
.post-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 4px; }
.read-time { font-family: var(--ui); font-size: 12px; font-weight: 500; color: var(--muted); letter-spacing: 0.02em; }

@media (min-width: 760px) {
  .featured-post { grid-template-columns: 1.05fr 1fr; align-items: stretch; }
  .featured-media { height: 100%; }
  .featured-media img { height: 100%; min-height: 340px; }
}

/* ---------- 18. Forms ---------- */
.form { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; box-shadow: 0 14px 40px rgba(26,23,20,0.05); }
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--ui); font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 8px; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); background: var(--bg); font-family: var(--body); font-size: 15px; color: var(--ink); transition: border-color 0.2s ease; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--bronze); }
.field textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0 20px; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-row .field { margin-bottom: 22px; }
.form-note { font-family: var(--ui); font-size: 12px; color: var(--muted); line-height: 1.6; margin: 0 0 20px; }
.form-status { display: none; padding: 14px 16px; border-radius: var(--radius-sm); font-family: var(--ui); font-size: 13px; margin-bottom: 20px; }
.form-status.info { display: block; background: rgba(238,194,121,0.12); border: 1px solid rgba(197,143,78,0.35); color: var(--bronze); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: start; } }
.contact-info h3 { margin-bottom: 18px; }
.contact-info p { color: var(--ink-2); margin-bottom: 28px; }
.contact-row { display: flex; gap: 16px; margin-bottom: 18px; font-family: var(--ui); font-size: 15px; color: var(--ink-2); }
.contact-row .dot { flex: 0 0 10px; width: 10px; height: 10px; border-radius: 50%; background: var(--bronze); margin-top: 8px; }
.contact-row .placeholder-note { font-size: 12px; color: var(--muted); font-style: italic; }

/* ---------- 19. CTA section ---------- */
.cta-section {
  position: relative; overflow: hidden;
  background: var(--dark) radial-gradient(ellipse at 50% 0%, rgba(232,163,23,0.16), transparent 60%);
  color: var(--dark-text); text-align: center;
  padding: var(--sec) 0;
}
.cta-section h2 { color: #F6F1E7; max-width: 20ch; margin: 0 auto; }
.cta-section .lead { color: rgba(246,241,231,0.8); margin: 18px auto 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }

/* ---------- 20. Footer ---------- */
.site-footer { background: var(--dark); color: rgba(245,241,234,0.7); font-family: var(--ui); font-size: 14px; padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 48px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px; } }
.footer-brand-col .brand { color: #fff; margin-bottom: 16px; }
.footer-tagline { font-size: 13.5px; line-height: 1.7; color: rgba(245,241,234,0.6); max-width: 30ch; margin-bottom: 20px; }
.footer-logo-wrap { display: inline-flex; background: var(--bg); padding: 10px 14px; border-radius: var(--radius-sm); margin-bottom: 18px; }
.footer-col h5 { font-family: var(--ui); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: rgba(245,241,234,0.68); font-size: 13.5px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--amber); }
.footer-col a.soon { opacity: 0.55; cursor: default; }
.footer-contact { margin-top: 22px; font-size: 13px; color: rgba(245,241,234,0.6); display: grid; gap: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex; flex-direction: column; gap: 12px; align-items: center; justify-content: space-between;
}
@media (min-width: 720px) { .footer-bottom { flex-direction: row; } }
.footer-bottom .legal { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.footer-bottom .legal a { color: rgba(245,241,234,0.55); font-size: 12.5px; transition: color 0.2s ease; }
.footer-bottom .legal a:hover { color: var(--amber); }
.footer-bottom .copy { font-size: 12.5px; color: rgba(245,241,234,0.45); }
.footer-bottom .copy .soon { opacity: 0.6; }

/* ---------- 21. Ambient texture & detail ---------- */
.grain {
  position: fixed; inset: 0; z-index: 100; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.dottex { background-image: radial-gradient(rgba(197,143,78,0.10) 1.2px, transparent 1.2px); background-size: 26px 26px; }
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--bronze), var(--gold)); z-index: 80; transition: width 0.08s linear; }
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 2; background: radial-gradient(circle, rgba(232,163,23,0.5) 0%, rgba(232,163,23,0) 70%); filter: blur(2px); animation: floatOrb 9s ease-in-out infinite, twinkle 4.5s ease-in-out infinite; }
@keyframes floatOrb { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-28px) translateX(16px); } }
@keyframes twinkle { 0%,100% { opacity: 0.3; } 50% { opacity: 0.9; } }
.branch { width: 100%; height: 70px; color: var(--bronze); opacity: 0.55; display: block; }
.branch.flip { transform: scaleX(-1); }

/* ---------- 22. Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .card:hover img, .btn:hover, .info-card:hover, .mfg-step:hover, .blog-card:hover { transform: none; }
  .hero-orb, .scroll-hint .chev, .eyebrow::before, .exp-sticker { animation: none; }
}

/* ---------- 23. Placeholder copy marker (Phase 2) ---------- */
.ph2 {
  font-family: var(--ui); font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--bronze); border: 1px dashed rgba(197,143,78,0.5); border-radius: 8px;
  padding: 10px 14px; display: inline-block; background: var(--bronze-soft);
}

/* ---------- 24. Misc / responsive ---------- */
.split { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } }
.split-img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 24px 70px rgba(31,61,46,0.16); }
.split-img img { width: 100%; height: auto; aspect-ratio: 1/1; object-fit: contain; background: #F2EFE9; display: block; background: #F2EFE9; }
.page-bottom-cta { margin-top: var(--sec-sm); }

/* ---------- 25. Capability blocks (What We Do / Why) ---------- */
.cap-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .cap-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px) { .cap-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 860px) { .cap-grid.cols-5 { grid-template-columns: repeat(5, 1fr); } }
.cap-item {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 10px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.cap-item:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(26,23,20,0.09); }
.cap-num { font-family: var(--display); font-size: 1.35rem; color: var(--bronze); line-height: 1; }
.cap-item h3 { font-family: var(--display); font-size: 1.15rem; color: var(--ink); margin: 4px 0 0; }
.cap-item p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }

/* ---------- 26. Process timeline (horizontal desktop / vertical mobile) ---------- */
.timeline { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 48px; position: relative; }
@media (min-width: 900px) {
  .timeline { grid-template-columns: repeat(8, 1fr); gap: 0; align-items: start; }
  .timeline::before {
    content: ""; position: absolute; top: 22px; left: 4%; right: 4%; height: 1.5px;
    background: linear-gradient(90deg, rgba(238,194,121,0.15), rgba(238,194,121,0.55), rgba(238,194,121,0.15));
  }
}
.tl-step { position: relative; text-align: left; padding: 0; }
@media (min-width: 900px) { .tl-step { text-align: center; padding: 0 10px; } }
.tl-dot {
  width: 44px; height: 44px; border-radius: 50%; margin-bottom: 14px;
  background: var(--green); border: 2px solid rgba(238,194,121,0.45); color: var(--gold);
  font-family: var(--display); font-size: 15px; font-weight: 600;
  display: grid; place-items: center;
  box-shadow: 0 0 0 6px rgba(31,61,46,0.35);
}
@media (min-width: 900px) { .tl-dot { margin-left: auto; margin-right: auto; } }
/* Default: dark readable text (works in light-bg sections).
   Dark sections (.section.dark) override to cream. */
.tl-step h3 { font-family: var(--ui); font-size: 15px; font-weight: 600; color: var(--ink, #2A2418); margin: 0 0 6px; }
.tl-step p  { font-size: 13px; color: rgba(42,36,24,0.72); line-height: 1.55; margin: 0; max-width: 18ch; }
.section.dark .tl-step h3 { color: #F5F1EA; }
.section.dark .tl-step p  { color: rgba(245,241,234,0.72); }
@media (min-width: 900px) { .tl-step p { margin-left: auto; margin-right: auto; } }

/* ---------- 27. Floating enquiry widget (WhatsApp + Email) ---------- */
.contact-floater {
  position: fixed; right: 18px; bottom: 18px; z-index: 80;
  display: flex; flex-direction: column; align-items: flex-end; gap: 9px;
  font-family: var(--ui);
}
/* Two color pills shown directly; no toggle button. */
.contact-floater .actions {
  width: 190px; flex: none;
  display: flex; flex-direction: column; gap: 8px; align-items: stretch;
}
.contact-floater .btn-chat {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  padding: 9px 14px; border-radius: 999px;
  background: #25D366; color: #fff;
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(37,211,102,0.40);
  transition: transform 0.18s ease;
  white-space: nowrap;
  text-align: center;
}
.contact-floater .btn-chat.email {
  background: var(--gold, #EEC279); color: #1A1207;
  box-shadow: 0 6px 18px rgba(232,163,23,0.40);
}
.contact-floater .btn-chat:hover { transform: translateY(-2px); }
.contact-floater .btn-chat .ico { font-size: 16px; line-height: 1; display: inline-flex; }
.contact-floater .btn-chat .ico svg { width: 18px; height: 18px; display: block; fill: currentColor; }
.contact-floater .btn-chat > span { display: inline-flex; flex-direction: column; align-items: center; line-height: 1.3; }
@media (max-width: 540px) {
  .contact-floater { right: 12px; bottom: 12px; }
  .contact-floater .actions { width: 170px; }
  .contact-floater .btn-chat { padding: 8px 12px; font-size: 12px; }
}

/* ---------- 27b. Form submission toast ---------- */
.form-toast {
  position: fixed; left: 50%; bottom: 32px; z-index: 90;
  transform: translate(-50%, 20px);
  background: #fff; color: #1A1207;
  border: 1px solid var(--border);
  border-left: 4px solid #16A34A;
  padding: 14px 22px 14px 18px;
  border-radius: 12px;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ui); font-size: 14px; line-height: 1.4; font-weight: 500;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.08);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  max-width: min(92vw, 480px);
}
.form-toast.show { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.form-toast .ico {
  width: 28px; height: 28px; border-radius: 50%;
  background: #16A34A; color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 16px; flex: 0 0 auto;
}
.form-toast.is-info { border-left-color: #E8A317; }
.form-toast.is-info .ico { background: #E8A317; }

