/* ============================================================
   PRUNY — Landing page layout
   ============================================================ */

/* ---------------- NAV (centered, logo in the middle) ---------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s;
  background: linear-gradient(to bottom, rgba(247,238,229,.5), rgba(247,238,229,0));
}
.nav.scrolled {
  background: rgba(247,238,229,.9);
  backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 rgba(66,40,94,.08), var(--shadow-sm);
}
.nav-inner {
  position: relative;
  max-width: 1320px; margin-inline: auto;
  padding: .8rem var(--gutter);
  display: flex; align-items: center; justify-content: center;
  min-height: 76px;
}
.nav-row { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.4rem); }
.nav-row > a:not(.nav-logo) {
  font-family: var(--body); font-weight: 800; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--plum); text-decoration: none; white-space: nowrap;
  transition: color .2s; position: relative; padding: .4rem 0;
}
.nav.scrolled .nav-row > a:not(.nav-logo) { color: var(--plum); }
.nav-row > a:not(.nav-logo)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--lime); border-radius: 2px; transform: scaleX(0); transform-origin: center;
  transition: transform .25s var(--ease);
}
.nav-row > a:not(.nav-logo):hover::after { transform: scaleX(1); }
.nav-row > a.current { color: var(--green); }
.nav-row > a.current::after { transform: scaleX(1); }

/* interior pages: always-solid nav + short page hero */
.nav.solid { background: rgba(247,238,229,.95); backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 rgba(66,40,94,.08), var(--shadow-sm); }
.page-hero { padding-top: clamp(120px, 14vh, 160px); padding-bottom: clamp(2rem,5vw,3.5rem); text-align: center; }
.page-hero .wrap { max-width: 820px; }
.page-hero .eyebrow { margin-bottom: 1.1rem; }
.page-hero h1 { font-family: var(--serif); font-weight: 700; color: var(--plum);
  font-size: clamp(2.6rem, 1.6rem + 3.4vw, 4.4rem); line-height: 1.03; letter-spacing: -.01em; }
.page-hero h1 .accent { color: var(--green); font-style: italic; font-weight: 600; }
.page-hero .lead { margin: 1.3rem auto 0; max-width: 56ch; }
.page-hero.on-dark { background: var(--plum-night); color: var(--on-plum); position: relative; overflow: hidden; }
.page-hero.on-dark h1 { color: #FBF3E2; }
.page-hero.on-dark h1 .accent { color: var(--gold); }
.page-hero.on-dark .lead { color: #D9C7DF; }

/* catalogue category header */
.cat-head { display: flex; align-items: baseline; gap: 1rem; margin: clamp(2.2rem,4vw,3.2rem) 0 1.4rem; }
.cat-head h2 { font-size: var(--fs-h2); }
.cat-head .ico { width: 1.7rem; height: 1.7rem; color: var(--green); }
.cat-head .count { font-family: var(--body); font-weight: 700; font-size: var(--fs-sm); color: var(--ink-faint); }
.notice { display: flex; gap: .9rem; align-items: center; background: var(--lavender); color: var(--plum);
  border-radius: var(--r); padding: 1rem 1.3rem; font-size: var(--fs-sm); font-weight: 700; }
.notice .ico { width: 1.5rem; height: 1.5rem; color: var(--plum); flex: none; }
.avail { margin-top: .9rem; font-family: var(--body); font-weight: 800; font-size: var(--fs-sm); color: var(--green);
  display: inline-flex; align-items: center; gap: .4rem; }
.avail.soon { color: var(--ink-faint); }
.nav-logo { display: flex; align-items: center; flex: none; margin: 0 clamp(.6rem,1.6vw,1.6rem); }
.nav-logo .pruny-svg { height: 48px; width: auto; display: block; }
.nav-logo-m { display: none; margin: 0; }
.nav-logo-m .pruny-svg { height: 42px; }

.lang {
  position: absolute; right: var(--gutter); top: 50%; transform: translateY(-50%);
  display: inline-flex; align-items: center;
  background: rgba(66,40,94,.1); border-radius: var(--pill); padding: 3px; gap: 2px;
}
.lang button {
  font-family: var(--body); font-weight: 800; font-size: .78rem; letter-spacing: .04em;
  border: 0; background: transparent; color: var(--ink-soft);
  padding: .38rem .66rem; border-radius: var(--pill); cursor: pointer; transition: all .2s;
}
.lang button.is-active { background: var(--plum); color: var(--on-plum); box-shadow: var(--shadow-sm); }

.burger { position: absolute; left: var(--gutter); top: 50%; transform: translateY(-50%);
  display: none; width: 46px; height: 46px; border: 0; background: rgba(66,40,94,.1);
  border-radius: 14px; cursor: pointer; align-items: center; justify-content: center; }
.burger span, .burger span::before, .burger span::after {
  content: ""; display: block; width: 20px; height: 2.2px; background: var(--plum); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s; }
.burger span { position: relative; }
.burger span::before { position: absolute; top: -6px; }
.burger span::after { position: absolute; top: 6px; }
.menu-open .burger span { background: transparent; }
.menu-open .burger span::before { transform: translateY(6px) rotate(45deg); }
.menu-open .burger span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------------- HERO (centered) ---------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; overflow: hidden; text-align: center; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(125% 95% at 50% 50%, rgba(28,16,44,.62) 0%, rgba(28,16,44,.4) 38%, rgba(28,16,44,.12) 68%, transparent 100%),
    linear-gradient(to bottom, rgba(28,16,44,.4) 0%, transparent 20%, transparent 72%, rgba(28,16,44,.5) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 6rem var(--gutter) 0; max-width: 980px; margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; }
.hero-eyebrow { color: var(--gold); display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--body); font-weight: 800; letter-spacing: .24em; text-transform: uppercase; font-size: .78rem; margin-bottom: 1.6rem; }
.hero-eyebrow::before, .hero-eyebrow::after { content: ""; width: 1.8rem; height: 2px; background: var(--gold); border-radius: 2px; opacity: .8; }
.hero h1 {
  font-family: var(--serif); color: #FBF3E2; font-weight: 700;
  font-size: clamp(2.9rem, 1.5rem + 5.6vw, 6rem);
  line-height: 1.02; letter-spacing: -0.005em; max-width: 16ch;
  text-shadow: 0 6px 50px rgba(20,10,32,.55);
}
.hero h1 .accent { color: var(--gold); font-style: italic; font-weight: 600; }
.hero-sub { color: #ECE0D2; font-family: var(--body); font-size: var(--fs-lead); max-width: 46ch; margin-top: 1.6rem; line-height: 1.55; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.4rem; justify-content: center; }

.scrollcue { position: absolute; left: 50%; transform: translateX(-50%); bottom: 2.2rem; z-index: 3;
  display: grid; place-items: center; color: #FBF3E2; opacity: .85; }
.scrollcue svg { width: 30px; height: 30px; animation: bob 2.2s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
@media (prefers-reduced-motion: reduce) { .scrollcue svg { animation: none; } }

/* ---------------- MANIFESTO STRIP ---------------- */
.manifesto { background: var(--cream); }
.manifesto-inner { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: center;
  padding-block: clamp(3rem,6vw,5rem); }
.manifesto img { width: clamp(92px,11vw,132px); height: auto; }
.manifesto p { font-family: var(--display); font-weight: 600; color: var(--plum);
  font-size: clamp(1.4rem,1rem+1.8vw,2.4rem); line-height: 1.18; letter-spacing: -.01em; }
.manifesto p b { color: var(--green); font-weight: 700; }

/* ---------------- STORY ---------------- */
.story-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.story-media { position: relative; }
.story-media .ph { aspect-ratio: 4/5; }
.story-media .stamp {
  position: absolute; bottom: -22px; left: -22px; width: clamp(92px,9vw,116px); height: auto;
  filter: drop-shadow(0 12px 26px rgba(46,27,68,.3)); }
.story h2 { font-size: var(--fs-h1); margin: .9rem 0 1.3rem; }
.story .lead + p { margin-top: 1.1rem; }
.story p + p { margin-top: 1.1rem; }
.story .quote {
  margin-top: 1.8rem; padding-left: 1.4rem; border-left: 3px solid var(--lime);
  font-family: var(--display); font-weight: 600; color: var(--plum); font-size: 1.3rem; line-height: 1.3; }

/* ---------------- VALUES ---------------- */
.values { background: var(--lavender); position: relative; overflow: hidden; }
.values .head { text-align: center; max-width: 46ch; margin: 0 auto clamp(2.5rem,5vw,3.5rem); }
.values h2 { font-size: var(--fs-h1); margin: .8rem 0 1rem; }
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; }
.value-card { background: var(--cream-card); border-radius: var(--r-lg); padding: 1.7rem 1.4rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(66,40,94,.06); }
.value-card .icon-chip { margin-bottom: 1.1rem; }
.value-card h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.value-card p { font-size: var(--fs-sm); color: var(--ink-soft); line-height: 1.5; }

/* ---------------- SUSTAINABILITY ---------------- */
.sustain { background: var(--green-deep); color: #EFF3E7; position: relative; overflow: hidden; }
.sustain::after { content:""; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(120% 80% at 100% 0%, rgba(147,182,68,.16), transparent 55%); }
.sustain .wrap { position: relative; z-index: 1; }
.sustain-top { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: end; margin-bottom: clamp(2.5rem,5vw,4rem); }
.sustain h2 { color: #FBF4EA; font-size: var(--fs-h1); }
.sustain .lead { color: #CDDABF; }
.sustain-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
.sustain-item { padding: 1.6rem; border-radius: var(--r-lg); background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); }
.sustain-item .icon-chip { background: rgba(147,182,68,.18); color: var(--lime); margin-bottom: 1rem; }
.sustain-item h3 { color: #FBF4EA; font-size: 1.1rem; margin-bottom: .45rem; }
.sustain-item p { font-size: var(--fs-sm); color: #C6D4B8; line-height: 1.5; }
.sustain-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: clamp(2.5rem,5vw,3.5rem);
  border-top: 1px solid rgba(255,255,255,.14); padding-top: clamp(2rem,4vw,3rem); }
.stat .num { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem,1.5rem+2.5vw,3.6rem); color: var(--lime); line-height: 1; }
.stat .lbl { color: #CDDABF; font-size: var(--fs-sm); margin-top: .5rem; }

/* ---------------- STICKERS / MASCOT MOMENT ---------------- */
.stickers { background: var(--cream); position: relative; overflow: hidden;
  padding-block: clamp(2.5rem, 5vw, 4rem); }
.stickers-inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.stickers h2 { font-size: var(--fs-h1); margin: .8rem 0 1.1rem; max-width: 16ch; }
.stickers .mascot { display: inline-block; width: clamp(64px,7vw,88px); height: auto; margin-bottom: .9rem;
  filter: drop-shadow(0 10px 20px rgba(46,27,68,.2)); }
.stickers .mascot .pruny-svg { width: 100%; height: auto; display: block; }
.sticker-cloud { display: flex; flex-wrap: wrap; gap: 1.1rem; align-items: center; justify-content: center; }
.sticker { font-size: clamp(.95rem,.8rem+.5vw,1.25rem); }
.sticker.s1 { color: var(--plum); --rot: -5deg; }
.sticker.s2 { color: var(--green); --rot: 4deg; }
.sticker.s3 { color: var(--mauve); --rot: -2deg; }
.sticker.s4 { color: #b88321; --rot: 6deg; }
.sticker.s5 { color: var(--plum); --rot: 3deg; }

/* ---------------- PRODUCTS ---------------- */
.products .head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap;
  margin-bottom: clamp(2rem,4vw,3rem); }
.products h2 { font-size: var(--fs-h1); margin-top: .7rem; }
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
.product-card { display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card .ph { aspect-ratio: 4/3; border-radius: 0; }
.product-card .body { padding: 1.5rem 1.5rem 1.7rem; }
.product-card h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.product-card p { font-size: var(--fs-sm); color: var(--ink-soft); }
.product-card .meta { margin-top: 1rem; display: flex; gap: .5rem; flex-wrap: wrap; }

/* ---------------- EXPERIENCES (dark immersive) ---------------- */
.exp { position: relative; color: #F1E7DE; overflow: hidden; background: var(--plum-night); }
.exp-bg { position: absolute; inset: 0; opacity: .5;
  background:
    radial-gradient(80% 60% at 20% 0%, rgba(147,182,68,.22), transparent 60%),
    radial-gradient(70% 70% at 100% 100%, rgba(201,130,174,.28), transparent 60%),
    radial-gradient(50% 50% at 60% 40%, rgba(238,187,81,.16), transparent 60%); }
.exp .wrap { position: relative; z-index: 1; }
.exp-head { max-width: 52ch; margin-bottom: clamp(2rem,4vw,3rem); }
.exp h2 { color: #FBF4EA; font-size: var(--fs-h1); margin: .8rem 0 1.1rem; }
.exp-head .lead { color: #D9C7DF; }
.exp-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.1rem; }
.exp-card { padding: 1.6rem; border-radius: var(--r-lg); background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12); transition: background .3s, transform .3s var(--ease); }
.exp-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.exp-card .ico { color: var(--gold); width: 2.2rem; height: 2.2rem; margin-bottom: 1rem; }
.exp-card h3 { color: #FBF4EA; font-size: 1.12rem; margin-bottom: .4rem; }
.exp-card p { font-size: var(--fs-sm); color: #CDBBD2; }

/* ---------------- B2B ---------------- */
.b2b { background: var(--plum); color: var(--on-plum); position: relative; overflow: hidden; }
.b2b::before { content:""; position:absolute; right:-8%; top:-30%; width:480px; height:480px; border-radius:50%;
  background: radial-gradient(circle, rgba(201,130,174,.35), transparent 68%); }
.b2b .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.b2b h2 { color: #FBF4EA; font-size: var(--fs-h1); margin: .9rem 0 1.2rem; }
.b2b .lead { color: var(--on-plum-soft); }
.b2b-list { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: 1.5rem; }
.b2b-list li { display: flex; gap: .9rem; align-items: flex-start; }
.b2b-list .ico { color: var(--lime); flex: none; width: 1.7rem; height: 1.7rem; margin-top: .1rem; }
.b2b-list b { color: #FBF4EA; font-weight: 800; }
.b2b-list span { color: var(--on-plum-soft); font-size: var(--fs-sm); display: block; }
.b2b-cta { margin-top: 2rem; display: flex; gap: .9rem; flex-wrap: wrap; }
.b2b-panel { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-xl); padding: clamp(1.8rem,3vw,2.6rem); }
.b2b-panel h3 { color: #FBF4EA; font-size: 1.3rem; margin-bottom: 1.2rem; }
.b2b-spec { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.b2b-spec .num { font-family: var(--display); font-weight: 800; font-size: 2rem; color: var(--gold); line-height: 1; }
.b2b-spec .lbl { font-size: var(--fs-sm); color: var(--on-plum-soft); margin-top: .35rem; }

/* ---------------- VALUE BAND (sustainability inside combined section) ---------------- */
.value-band {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--green-deep); color: #EFF3E7;
  border-radius: var(--r-xl); padding: clamp(1.8rem, 3.5vw, 2.8rem) clamp(1.8rem, 4vw, 3rem);
  display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: center;
  position: relative; overflow: hidden;
}
.value-band::after { content:""; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(110% 90% at 0% 0%, rgba(147,182,68,.18), transparent 55%); }
.value-band .vb-intro { position: relative; z-index: 1; }
.value-band .eyebrow { color: var(--lime); }
.value-band h3 { color: #FBF4EA; font-size: var(--fs-h3); margin: .6rem 0 .7rem; }
.value-band p { color: #CDDABF; font-size: var(--fs-sm); max-width: 38ch; }
.vb-stats { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem;
  border-left: 1px solid rgba(255,255,255,.16); padding-left: clamp(1.5rem,3vw,2.5rem); }
.vb-stats .num { font-family: var(--display); font-weight: 800; font-size: clamp(2.1rem,1.4rem+1.8vw,3rem); color: var(--lime); line-height: 1; }
.vb-stats .lbl { color: #CDDABF; font-size: var(--fs-xs); margin-top: .5rem; line-height: 1.35; }

/* ---------------- FOOTER ---------------- */
.footer { background: var(--plum-deep); color: var(--on-plum-soft); padding-block: clamp(3rem,6vw,5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.12); }
.footer .brandcol .logo-chip { background: var(--cream); border-radius: var(--r); padding: .8rem 1rem; display: inline-block; }
.footer .brandcol .logo-chip .pruny-svg { height: 52px; width: auto; display: block; }
.footer .brandcol p { margin-top: 1.2rem; max-width: 30ch; font-size: var(--fs-sm); color: var(--on-plum-soft); }
.footer h4 { font-family: var(--body); font-weight: 800; color: #FBF4EA; font-size: .82rem; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 1.1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.footer a { color: var(--on-plum-soft); text-decoration: none; font-size: var(--fs-sm); transition: color .2s; }
.footer a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  padding-top: 2rem; font-size: var(--fs-sm); }
.footer-bottom .motto { font-family: var(--display); font-weight: 600; color: var(--lime); }
.footer-social { display: flex; gap: .6rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.08); }
.footer-social svg { width: 18px; height: 18px; fill: #FBF4EA; }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1000px) {
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .exp-grid { grid-template-columns: repeat(2,1fr); }
  .b2b .wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; }
  .value-band { grid-template-columns: 1fr; }
  .vb-stats { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,.16); padding-top: 1.6rem; }
}
@media (max-width: 760px) {
  .nav-row { display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: .6rem var(--gutter) 1.4rem; background: rgba(247,238,229,.98); backdrop-filter: blur(14px); }
  .menu-open .nav-row { display: flex; }
  .nav.menu-open { box-shadow: var(--shadow); }
  .nav-row > a:not(.nav-logo) { padding: .9rem .2rem; border-bottom: 1px solid rgba(66,40,94,.1); font-size: .9rem; }
  .nav-row .nav-logo { display: none; }
  .nav-logo-m { display: flex; }
  .burger { display: inline-flex; }
  .story-grid, .stickers-inner { grid-template-columns: 1fr; }
  .story-media { order: -1; }
  .values-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .b2b-spec { grid-template-columns: 1fr 1fr; }
  .vb-stats { grid-template-columns: 1fr; gap: 1.2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { justify-content: flex-start; }
  .hero h1 { max-width: 13ch; }
}

/* ============================================================
   B2B REPOSITIONING ADDITIONS (2026-07)
   ============================================================ */

/* ---- Real photography dropped into media slots ---- */
.media-img { display: block; width: 100%; height: auto; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.story-media .media-img { aspect-ratio: 4/5; }
.product-card .media-img { aspect-ratio: 4/3; border-radius: 0; box-shadow: none; }
.stay-media .media-img { aspect-ratio: 5/4; }
.fest-media .media-img { aspect-ratio: 4/3; }
.exp-card .media-img { aspect-ratio: 16/10; margin: -1.6rem -1.6rem 1.2rem; width: calc(100% + 3.2rem);
  max-width: none; border-radius: var(--r-lg) var(--r-lg) 0 0; box-shadow: none; }
.b2b .media-img { aspect-ratio: 4/5; max-height: 540px; margin-inline: auto; }
.contact-media .media-img { aspect-ratio: 3/2; }

/* ---- WhatsApp contact ---- */
.wa { display: inline-flex; align-items: center; gap: .55rem; width: max-content; max-width: 100%;
  background: rgba(37,211,102,.12); color: #0F7A3D; border: 1px solid rgba(37,211,102,.4);
  border-radius: var(--pill); padding: .5rem .95rem; font-weight: 800; font-size: var(--fs-sm);
  text-decoration: none; transition: background .2s; }
.wa:hover { background: rgba(37,211,102,.22); }
.wa svg { width: 1.2rem; height: 1.2rem; color: #25D366; flex: none; }
.wa-alt { background: rgba(37,211,102,.06); border-color: rgba(37,211,102,.28); font-weight: 700; }
.wa-alt:hover { background: rgba(37,211,102,.14); }
.wa-note { font-size: var(--fs-xs); color: var(--ink-faint); margin: -.15rem 0 0; line-height: 1.4; }
.footer .wa-link { display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap; }
.footer .wa-link svg { width: 1rem; height: 1rem; color: #25D366; flex: none; }

/* ---- Email link with icon ---- */
.mail-link { display: inline-flex; align-items: center; gap: .45rem; }
.mail-link .ico { width: 1.05rem; height: 1.05rem; color: var(--green); flex: none; }
.footer .mail-link .ico { width: 1rem; height: 1rem; }

/* ---- Footer legal / company identification ---- */
.footer-legal { margin-top: 1.4rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.09);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem 1.5rem; flex-wrap: wrap;
  font-size: var(--fs-xs); color: rgba(255,255,255,.5); }
.footer-legal a { color: rgba(255,255,255,.6); text-decoration: underline; }
.footer-legal a:hover { color: var(--lime); }

/* ---- Credential / trust strip (homepage) ---- */
.creds { background: var(--cream-warm); border-block: 1px solid rgba(66,40,94,.08); }
.creds .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 3vw, 2.4rem);
  padding-block: clamp(1.8rem, 3.5vw, 2.6rem); }
.cred { display: flex; gap: .9rem; align-items: flex-start; }
.cred .ico { color: var(--green); width: 1.7rem; height: 1.7rem; flex: none; margin-top: .15rem; }
.cred b { display: block; font-family: var(--display); font-weight: 800; color: var(--plum);
  font-size: 1.05rem; line-height: 1.15; }
.cred span { display: block; font-size: var(--fs-sm); color: var(--ink-soft); margin-top: .25rem; }

/* ---- Document / proof links (B2B) ---- */
.docs { display: grid; gap: .9rem; margin-top: 1.8rem; }
.doc-link { display: flex; align-items: center; gap: .9rem; text-decoration: none;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r); padding: .9rem 1.1rem; transition: background .2s, border-color .2s; }
.doc-link:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.28); }
.doc-link .ico { color: var(--lime); width: 1.6rem; height: 1.6rem; flex: none; }
.doc-link b { color: #FBF4EA; font-weight: 800; font-size: var(--fs-sm); display: block; }
.doc-link span { color: var(--on-plum-soft); font-size: var(--fs-xs); display: block; margin-top: .15rem; }
.doc-link .arrow { margin-left: auto; color: var(--on-plum-soft); font-size: 1.1rem; }

/* ---- Contact people (B2B + general) ---- */
.people { display: grid; gap: 1.1rem; margin-top: .4rem; }
.person { background: var(--cream-card); border: 1px solid rgba(66,40,94,.1);
  border-radius: var(--r-lg); padding: 1.3rem 1.4rem; box-shadow: var(--shadow-sm); }
.person.lead-role { border-color: rgba(147,182,68,.5); box-shadow: 0 0 0 1px rgba(147,182,68,.2), var(--shadow-sm); }
.person .role { font-size: var(--fs-xs); font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--green); }
.person h4 { font-family: var(--display); font-weight: 800; color: var(--plum); font-size: 1.2rem; margin: .3rem 0 .2rem; }
.person .scope { font-size: var(--fs-sm); color: var(--ink-soft); margin-bottom: .8rem; }
.person .lines { display: grid; gap: .35rem; }
.person .lines a, .person .lines span { font-size: var(--fs-sm); color: var(--ink); text-decoration: none; }
.person .lines a:hover { color: var(--green); }
.person .tbd { color: var(--ink-faint); font-style: italic; }

@media (max-width: 1000px) {
  .creds .wrap { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
}
@media (max-width: 560px) {
  .creds .wrap { grid-template-columns: 1fr; }
}
