/* ═══════════════════════════════════════════════════════════
   HABIT KRAFT — GLOBAL CSS
   /assets/css/global.css
   Shared across all main website pages.
   Covers: tokens, reset, nav, footer, shared utilities,
           scroll reveal, cursor, progress bar, ticker.
   ═══════════════════════════════════════════════════════════ */

/* ── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  --sage:          #7a9e7e;
  --sage-light:    #a8c5a0;
  --sage-dark:     #4e7a52;
  --sage-deep:     #2d4d30;
  --sage-ultra:    #eef4ee;
  --earth:         #c4a882;
  --earth-light:   #e8d9c4;
  --earth-warm:    #d4b896;
  --earth-ultra:   #faf5ee;
  --cream:         #f7f2ec;
  --parchment:     #ede6d8;
  --bark:          #6b5c47;
  --charcoal:      #3a3530;
  --ink:           #2a2820;
  --ink-soft:      #4a4640;
  --ink-mute:      #7a7670;
  --mist:          #e8ede8;
  --white:         #fdfaf6;
  --gold:          #d4a843;
  --red-soft:      #c0392b;
  --red-pale:      #fdf0ee;

  --font-serif:    'Cormorant Garamond', serif;
  --font-sans:     'DM Sans', sans-serif;
  --font-mono:     'DM Mono', monospace;

  --radius-sm:     10px;
  --radius-md:     18px;
  --radius-lg:     28px;
  --radius-pill:   999px;

  --shadow-sm:     0 2px 12px rgba(58,53,48,.06);
  --shadow-md:     0 8px 32px rgba(58,53,48,.10);
  --shadow-lg:     0 20px 64px rgba(58,53,48,.14);

  --tx:            0.38s cubic-bezier(.25,.8,.25,1);

  --line:          rgba(196,168,130,.2);
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.7;
}
a  { text-decoration: none; color: inherit; }
img, svg { display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── NOISE TEXTURE OVERLAY ────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: .5;
}

/* ── CUSTOM CURSOR ────────────────────────────────────────── */
#hk-cur, #hk-cur-r {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
#hk-cur {
  width: 10px; height: 10px;
  background: var(--sage-dark);
  transition: width .3s, height .3s, background .3s;
  mix-blend-mode: multiply;
}
#hk-cur-r {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(78,122,82,.4);
  transition: width .3s, height .3s;
}
body:has(a:hover, button:hover) #hk-cur  { width: 18px; height: 18px; background: var(--bark); }
body:has(a:hover, button:hover) #hk-cur-r { width: 52px; height: 52px; }

/* ── SCROLL PROGRESS BAR ──────────────────────────────────── */
#hk-pbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  z-index: 9999;
  background: linear-gradient(90deg, var(--sage-dark), var(--earth), var(--sage));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .08s linear;
}

/* ── SKIP NAVIGATION ──────────────────────────────────────── */
.skip-nav {
  position: absolute;
  top: -60px; left: 16px;
  background: var(--sage-dark);
  color: white;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 500;
  z-index: 99999;
  transition: top .2s ease;
}
.skip-nav:focus { top: 12px; outline: 3px solid var(--gold); outline-offset: 2px; }

/* Focus rings */
*:focus-visible {
  outline: 2px solid var(--sage-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
.hk-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 2rem;
  background: rgba(253,250,246,.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196,168,130,.15);
  transition: all var(--tx);
}
.hk-nav.scrolled {
  padding: .65rem 2rem;
  box-shadow: 0 4px 24px rgba(58,53,48,.07);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-shrink: 0;
}
.nav-sprout { width: 32px; height: 32px; }
.nav-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--charcoal);
}
.nav-name span { color: var(--sage-dark); }

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .02rem;
  flex: 1;
  justify-content: center;
}
.nav-links > li > a {
  font-size: .68rem;
  font-weight: 400;
  color: var(--bark);
  padding: .3rem .4rem;
  border-radius: var(--radius-pill);
  transition: background var(--tx), color var(--tx);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  background: rgba(122,158,126,.12);
  color: var(--sage-dark);
}
.nav-links > li > a.active { font-weight: 500; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-drop-btn {
  font-size: .68rem;
  font-weight: 400;
  color: var(--bark);
  padding: .3rem .4rem;
  border-radius: var(--radius-pill);
  transition: background var(--tx), color var(--tx);
  white-space: nowrap;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  border: none;
  background: none;
  font-family: inherit;
}
.nav-drop-btn:hover,
.nav-dropdown.open .nav-drop-btn {
  background: rgba(122,158,126,.12);
  color: var(--sage-dark);
}
.nav-drop-arrow {
  font-size: .48rem;
  transition: transform .28s ease;
  opacity: .55;
  display: inline-block;
}
.nav-dropdown:hover .nav-drop-arrow,
.nav-dropdown.open .nav-drop-arrow { transform: rotate(180deg); }

.nav-drop-panel {
  position: absolute;
  top: calc(100% + .55rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(253,250,246,.99);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(196,168,130,.22);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: .5rem;
  min-width: 152px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  z-index: 300;
}
.nav-dropdown:hover .nav-drop-panel,
.nav-dropdown.open .nav-drop-panel {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-panel a {
  display: flex;
  align-items: center;
  gap: .38rem;
  padding: .42rem .72rem;
  border-radius: var(--radius-sm);
  font-size: .72rem;
  color: var(--bark);
  transition: background var(--tx);
  white-space: nowrap;
}
.nav-drop-panel a:hover {
  background: rgba(122,158,126,.1);
  color: var(--sage-dark);
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
}
.nav-cta {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--sage-dark);
  padding: .52rem 1.1rem;
  border-radius: var(--radius-pill);
  transition: all var(--tx);
  box-shadow: 0 3px 14px rgba(78,122,82,.28);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--bark); transform: translateY(-1px); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: .4rem;
  cursor: pointer;
  background: none;
  border: none;
}
.burger span {
  display: block;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all .35s ease;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mob-menu {
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: rgba(253,250,246,.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196,168,130,.2);
  padding: 1.2rem 1.5rem 1.5rem;
  z-index: 199;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}
.mob-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mob-menu ul { display: flex; flex-direction: column; gap: .18rem; }
.mob-group-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .62rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--bark);
  font-family: inherit;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--tx), color var(--tx);
  text-align: left;
}
.mob-group-btn:hover,
.mob-group.open .mob-group-btn { background: rgba(122,158,126,.1); color: var(--sage-dark); }
.mob-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(122,158,126,.15);
  border: 1px solid rgba(122,158,126,.25);
  color: var(--sage-dark);
  font-size: .6rem;
  transition: transform .28s ease, background .28s ease;
  flex-shrink: 0;
}
.mob-group.open .mob-arrow { transform: rotate(180deg); background: rgba(122,158,126,.28); }
.mob-group-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), opacity .28s ease;
  opacity: 0;
}
.mob-group.open .mob-group-panel { max-height: 300px; opacity: 1; }
.mob-group-panel a {
  display: block;
  padding: .52rem 1rem .52rem 1.8rem;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  color: var(--bark);
  transition: background var(--tx), color var(--tx);
  opacity: .88;
}
.mob-group-panel a:hover,
.mob-group-panel a.active { background: rgba(122,158,126,.1); color: var(--sage-dark); }
.mob-menu a {
  display: block;
  padding: .62rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--bark);
  transition: background var(--tx);
}
.mob-menu a:hover,
.mob-menu a.active { background: rgba(122,158,126,.1); color: var(--sage-dark); }
.mob-cta {
  display: block;
  text-align: center;
  margin-top: 1rem;
  background: var(--sage-dark);
  color: var(--white) !important;
  padding: .9rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  letter-spacing: .06em;
  font-size: .85rem;
}

/* ══════════════════════════════════════════════════════════
   TICKER
   ══════════════════════════════════════════════════════════ */
.hk-ticker {
  background: var(--sage-dark);
  overflow: hidden;
  padding: .65rem 0;
  position: relative;
  z-index: 5;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker 38s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.tick-item {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  font-weight: 400;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.tick-item::before { content: '✦'; font-size: .55rem; color: rgba(196,168,130,.8); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════
   SHARED SECTION UTILITIES
   ══════════════════════════════════════════════════════════ */
.hk-section        { padding: 6rem 3.5rem; position: relative; }
.hk-section-sm     { padding: 4rem 3.5rem; position: relative; }
.bg-parchment      { background: var(--parchment); }
.bg-mist           { background: var(--mist); }
.bg-earth          { background: var(--earth-ultra); }
.bg-sage           { background: var(--sage-ultra); }
.bg-dark           { background: linear-gradient(145deg,#1e3620,#2d4d30,#3d6641); }

.sec-hd            { text-align: center; margin-bottom: 4rem; }
.sec-label {
  display: inline-block;
  font-size: .67rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 500;
  margin-bottom: .8rem;
  opacity: .85;
}
.sec-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem,3.5vw,3.1rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -.01em;
}
.sec-title em { font-style: italic; color: var(--sage-dark); }
.sec-sub {
  font-size: .88rem;
  color: #7a6e65;
  margin-top: .9rem;
  font-weight: 300;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

/* Shared divider */
.hk-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .5rem 3.5rem;
  opacity: .45;
}
.hk-divider::before,
.hk-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(196,168,130,.5),transparent);
}
.hk-divider-icon { font-size: 1rem; color: var(--earth); }

/* Shared buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .86rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--white);
  background: linear-gradient(135deg, var(--sage-dark), #3a6040);
  padding: .9rem 2rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 5px 22px rgba(78,122,82,.38);
  transition: all var(--tx);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(78,122,82,.45); }
.btn-primary svg  { transition: transform var(--tx); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--bark);
  border: 1px solid rgba(107,92,71,.25);
  padding: .72rem 1.4rem;
  border-radius: var(--radius-pill);
  transition: all var(--tx);
}
.btn-outline:hover { background: var(--parchment); border-color: rgba(107,92,71,.4); }
.btn-outline svg { transition: transform var(--tx); }
.btn-outline:hover svg { transform: translateX(3px); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.25,.8,.25,1), transform .75s cubic-bezier(.25,.8,.25,1);
}
.reveal.lft { transform: translateX(-28px); }
.reveal.rgt { transform: translateX(28px); }
.reveal.sc  { transform: scale(.94); }
.reveal.vis { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════
   IMPACT BAR
   ══════════════════════════════════════════════════════════ */
.hk-impact-bar {
  background: var(--parchment);
  border-bottom: 1px solid rgba(196,168,130,.25);
  padding: 2.2rem 3.5rem;
}
.impact-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}
.imp-item { flex: 1; text-align: center; padding: 0 1rem; }
.imp-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--sage-dark);
  line-height: 1;
}
.imp-label {
  font-size: .68rem;
  color: var(--bark);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .25rem;
}
.imp-div { width: 1px; height: 38px; background: rgba(196,168,130,.4); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.hk-footer { background: #16120e; }

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 2.8rem;
  padding: 4rem 3.5rem 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.055);
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .75rem;
}
.ft-sprout { width: 32px; height: 32px; opacity: .65; }
.ft-brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: rgba(255,255,255,.65);
  font-weight: 400;
}
.ft-brand-name span { color: var(--sage-light); }
.footer-tagline {
  font-family: var(--font-serif);
  font-size: .95rem;
  color: rgba(196,168,130,.45);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: .75rem;
}
.footer-about {
  font-size: .73rem;
  color: rgba(255,255,255,.25);
  line-height: 1.72;
  font-weight: 300;
  max-width: 235px;
}
.footer-social {
  display: flex;
  gap: .48rem;
  margin-top: 1.1rem;
  flex-wrap: wrap;
}
.footer-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  transition: all var(--tx);
  font-family: var(--font-sans);
}
.footer-social a:hover {
  background: rgba(122,158,126,.22);
  border-color: rgba(122,158,126,.42);
  color: rgba(255,255,255,.82);
  transform: translateY(-2px);
}
.footer-impact { display: flex; gap: 1.1rem; margin-top: 1.2rem; flex-wrap: wrap; }
.fi-stat { text-align: center; }
.fi-num { font-family: var(--font-serif); font-size: 1.5rem; color: var(--sage-light); line-height: 1; }
.fi-lbl {
  font-size: .55rem;
  color: rgba(255,255,255,.25);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .12rem;
}
.footer-col-title {
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
  font-weight: 500;
  margin-bottom: 1.1rem;
}
.footer-nav-links { display: flex; flex-direction: column; gap: .4rem; }
.footer-nav-links a {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  font-weight: 300;
  transition: color var(--tx);
  display: flex;
  align-items: center;
  gap: .38rem;
}
.footer-nav-links a:hover { color: rgba(255,255,255,.68); }
.footer-contact-items { display: flex; flex-direction: column; gap: .62rem; }
.fc-item { display: flex; align-items: flex-start; gap: .55rem; }
.fc-icon { font-size: .82rem; flex-shrink: 0; margin-top: .05rem; }
.fc-text {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  font-weight: 300;
  line-height: 1.48;
}
.fc-text a { color: rgba(255,255,255,.35); transition: color var(--tx); }
.fc-text a:hover { color: rgba(255,255,255,.68); }
.footer-subscribe-label {
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  margin-bottom: .42rem;
}
.footer-subscribe { display: flex; gap: .45rem; }
.footer-subscribe input {
  flex: 1; min-width: 0;
  padding: .5rem .82rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.65);
  font-size: .7rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--tx);
}
.footer-subscribe input::placeholder { color: rgba(255,255,255,.2); }
.footer-subscribe input:focus { border-color: rgba(122,158,126,.35); }
.footer-subscribe button {
  padding: .5rem .95rem;
  border-radius: var(--radius-pill);
  background: var(--sage-dark);
  color: var(--white);
  font-size: .68rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--tx);
  white-space: nowrap;
  font-family: inherit;
}
.footer-subscribe button:hover { background: #3a6040; }
.footer-krafter-card {
  background: rgba(78,122,82,.07);
  border: 1px solid rgba(78,122,82,.17);
  border-radius: var(--radius-md);
  padding: 1.3rem;
}
.fk-label {
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(168,197,160,.45);
  margin-bottom: .45rem;
}
.fk-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  margin-bottom: .45rem;
  font-weight: 400;
}
.fk-desc {
  font-size: .72rem;
  color: rgba(255,255,255,.28);
  line-height: 1.58;
  margin-bottom: .85rem;
  font-weight: 300;
}
.fk-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .38rem;
  font-size: .73rem;
  color: rgba(168,197,160,.65);
  padding: .55rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(78,122,82,.22);
  transition: all var(--tx);
  margin-bottom: .5rem;
}
.fk-btn:hover { background: rgba(78,122,82,.2); color: rgba(168,197,160,1); }
.fk-parent-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-size: .72rem;
  color: rgba(168,197,160,.5);
  padding: .52rem;
  border-radius: var(--radius-pill);
  background: rgba(122,158,126,.08);
  border: 1px solid rgba(122,158,126,.14);
  transition: all var(--tx);
}
.fk-parent-login:hover { color: rgba(168,197,160,.9); background: rgba(122,158,126,.16); }

.footer-bottom {
  padding: 1.2rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-copy { font-size: .68rem; color: rgba(255,255,255,.16); font-weight: 300; }
.footer-links-bottom { display: flex; gap: 1.3rem; flex-wrap: wrap; }
.footer-links-bottom a {
  font-size: .68rem;
  color: rgba(255,255,255,.16);
  transition: color var(--tx);
}
.footer-links-bottom a:hover { color: rgba(255,255,255,.42); }
.footer-powered {
  font-family: var(--font-serif);
  font-size: .75rem;
  color: rgba(196,168,130,.28);
  font-style: italic;
}

/* ══════════════════════════════════════════════════════════
   BLOB DRIFT (shared animation)
   ══════════════════════════════════════════════════════════ */
@keyframes blob-drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(40px,30px) scale(1.08); }
}

/* Pulse green dot */
@keyframes pulse-g {
  0%, 100% { box-shadow: 0 0 0 0 rgba(122,158,126,.5); }
  50%       { box-shadow: 0 0 0 5px rgba(122,158,126,0); }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hk-nav { padding: .9rem 1.5rem; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .hk-section, .hk-section-sm { padding: 4rem 1.5rem; }
  .hk-divider { padding: .5rem 1.5rem; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.2rem; padding: 2.5rem 1.5rem; }
  .footer-bottom { padding: 1.2rem 1.5rem; justify-content: center; text-align: center; }
  .footer-links-bottom { justify-content: center; }
  .hk-impact-bar { padding: 1.8rem 1.5rem; }
  .impact-wrap { flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-subscribe { flex-direction: column; }
  .imp-item { min-width: 50%; padding: .75rem .5rem; }
  .imp-div { display: none; }
  /* WhatsApp float — mobile */
  .hk-wa-float  { bottom: 20px; right: 18px; width: 50px; height: 50px; }
  .hk-wa-btn    { width: 50px; height: 50px; }
  .hk-wa-btn svg { width: 26px; height: 26px; }
  .hk-wa-label  { display: none; }
}

/* ══════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ══════════════════════════════════════════════════════════ */

/* Outer anchor — fixed to viewport bottom-right.
   position:relative so .hk-wa-label is anchored to it. */
.hk-wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  width: 56px;
  height: 56px;
  display: block;
  text-decoration: none;
  animation: wa-enter .6s cubic-bezier(.34,1.56,.64,1) .8s both;
}
@keyframes wa-enter {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* Green circle */
.hk-wa-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.40);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1),
              box-shadow .3s ease;
  position: relative;        /* for ::before pulse ring */
  overflow: visible;
}

/* Pulse ring */
.hk-wa-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.45);
  animation: wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: 1; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
.hk-wa-float:hover .hk-wa-btn {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}

/* SVG icon — explicit size, no overflow */
.hk-wa-btn svg {
  display: block;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  overflow: visible;
}

/* Tooltip — absolutely positioned relative to .hk-wa-float */
.hk-wa-label {
  position: absolute;
  top: 50%;
  right: 64px;
  transform: translateY(-50%) translateX(8px);
  background: #fff;
  color: #1a3a20;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 18px rgba(58,53,48,.13);
  border: 1px solid rgba(37,211,102,.25);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
/* Arrow pointing right toward the button */
.hk-wa-label::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px 0 5px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
}
.hk-wa-float:hover .hk-wa-label,
.hk-wa-float:focus-visible .hk-wa-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

