/* =========================================================
   BTC HUNTER TEA — COMPONENTS
   ========================================================= */

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 15px 30px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  white-space: nowrap;
  isolation: isolate;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 60%);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  z-index: -1;
}
.btn:active::after { opacity: 1; transform: scale(1.6); transition: 0s; }

.btn--primary { background: var(--tea-900); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--tea-800); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn--gold { background: var(--gold-500); color: var(--tea-950); box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: var(--gold-400); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn--outline { background: transparent; color: var(--tea-900); border: 1.5px solid var(--tea-900); }
.btn--outline:hover { background: var(--tea-900); color: var(--white); transform: translateY(-3px); }

.btn--outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.55); }
.btn--outline-light:hover { background: var(--white); color: var(--tea-900); transform: translateY(-3px); }

.btn--ghost { background: rgba(255,255,255,.12); color: var(--white); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-3px); }

.btn--sm { padding: 11px 22px; font-size: 0.88rem; }
.btn--wa { background: #2FAE55; color: var(--white); }
.btn--wa:hover { background: #279a49; transform: translateY(-3px); }
.btn--block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------------- Navbar ---------------- */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  padding: 20px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.navbar.is-scrolled {
  background: rgba(253, 251, 246, 0.92);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 8px 26px rgba(22,60,44,.08);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { height: 42px; width: auto; transition: height .4s var(--ease); }
.navbar.is-scrolled .nav-brand img { height: 36px; }
.nav-links { display: none; align-items: center; gap: 34px; }
.nav-links a {
  font-weight: 600; font-size: 0.95rem; color: var(--tea-900);
  position: relative; padding: 6px 0;
}
.navbar:not(.is-scrolled) .nav-links a { color: var(--white); text-shadow: 0 1px 12px rgba(0,0,0,.25); }
.navbar:not(.is-scrolled) .nav-brand .logo-word { color: var(--white); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--gold-500); transition: width .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; }
.nav-links a.is-active { color: var(--gold-600); }
.navbar:not(.is-scrolled) .nav-links a.is-active { color: var(--gold-300, var(--gold-200)); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(22,60,44,.08); color: var(--tea-900); transition: transform .3s var(--ease), background .3s var(--ease);
}
.navbar:not(.is-scrolled) .icon-btn { background: rgba(255,255,255,.18); color: var(--white); }
.icon-btn:hover { transform: translateY(-3px) rotate(-6deg); background: var(--gold-500); color: var(--tea-950); }
.icon-btn svg { width: 19px; height: 19px; }

.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; border-radius: 50%; background: rgba(22,60,44,.08);
}
.navbar:not(.is-scrolled) .nav-toggle { background: rgba(255,255,255,.18); }
.nav-toggle span { width: 18px; height: 2px; background: var(--tea-900); margin: 0 auto; transition: transform .35s var(--ease), opacity .35s var(--ease); }
.navbar:not(.is-scrolled) .nav-toggle span { background: var(--white); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle.is-open { background: var(--tea-900); }
.nav-toggle.is-open span { background: var(--white); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 190; background: var(--tea-950);
  display: flex; flex-direction: column; justify-content: center; padding: 128px 40px 44px;
  transform: translateY(-100%); transition: transform .55s var(--ease);
  overflow-y: auto;
}
.mobile-menu::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1;
  background: radial-gradient(ellipse at 15% 0%, rgba(203,155,62,.14), transparent 55%),
              radial-gradient(ellipse at 100% 100%, rgba(95,162,103,.14), transparent 55%);
}
.mobile-menu.is-open { transform: translateY(0); }

.mobile-menu .mm-links { display: flex; flex-direction: column; }
.mobile-menu a {
  font-family: var(--font-display); font-weight: 500; font-size: 1.55rem; letter-spacing: -0.01em;
  color: var(--cream-100); padding: 17px 2px; border-bottom: 1px solid rgba(255,255,255,.09);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: color .3s var(--ease), padding-left .35s var(--ease);
  opacity: 0; transform: translateY(12px);
}
.mobile-menu .mm-links a:last-child { border-bottom: none; }
.mobile-menu.is-open .mm-links a {
  opacity: 1; transform: translateY(0);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s var(--ease), padding-left .35s var(--ease);
}
.mobile-menu.is-open .mm-links a:nth-child(1) { transition-delay: .06s; }
.mobile-menu.is-open .mm-links a:nth-child(2) { transition-delay: .11s; }
.mobile-menu.is-open .mm-links a:nth-child(3) { transition-delay: .16s; }
.mobile-menu.is-open .mm-links a:nth-child(4) { transition-delay: .21s; }
.mobile-menu.is-open .mm-links a:nth-child(5) { transition-delay: .26s; }
.mobile-menu.is-open .mm-links a:nth-child(6) { transition-delay: .31s; }
.mobile-menu.is-open .mm-links a:nth-child(7) { transition-delay: .36s; }
.mobile-menu a:hover, .mobile-menu a:active { color: var(--gold-300, var(--gold-200)); padding-left: 10px; }
.mobile-menu a::after {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500);
  opacity: 0; transform: scale(.4); transition: opacity .3s var(--ease), transform .3s var(--ease); flex-shrink: 0;
}
.mobile-menu a.is-active { color: var(--gold-300, var(--gold-200)); }
.mobile-menu a.is-active::after { opacity: 1; transform: scale(1); }

.mobile-menu .mm-actions { display: flex; gap: 12px; margin-top: 34px; }
.mobile-menu .mm-actions .btn { flex: 1; padding: 15px 18px; }

.mobile-menu .mm-social {
  display: flex; gap: 12px; margin-top: 30px; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.09); justify-content: center;
}
.mobile-menu .mm-social a {
  border: none; padding: 0; font-size: 0; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center;
  opacity: 1; transform: none; transition: background .3s var(--ease), transform .3s var(--ease);
}
.mobile-menu .mm-social a:hover { background: var(--gold-500); transform: translateY(-3px); }
.mobile-menu .mm-social svg { width: 18px; height: 18px; color: var(--gold-300, var(--gold-200)); transition: color .3s var(--ease); }
.mobile-menu .mm-social a:hover svg { color: var(--tea-950); }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none; }
}

/* ---------------- Page Hero (inner pages) ---------------- */
.page-hero {
  position: relative; padding: 168px 0 90px; background: var(--tea-950); color: var(--white); overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(203,155,62,.28), transparent 55%),
              radial-gradient(ellipse at 85% 100%, rgba(95,162,103,.30), transparent 55%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-top: 14px; }
.page-hero p { color: rgba(247,241,226,.82); max-width: 600px; margin-top: 16px; }

/* ---------------- Breadcrumb ---------------- */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; font-family: var(--font-mono);
  font-size: 0.78rem; letter-spacing: .04em; text-transform: uppercase; color: rgba(247,241,226,.6);
  position: relative; z-index: 2; margin-top: 26px;
}
.breadcrumb a:hover { color: var(--gold-300, var(--gold-200)); }
.breadcrumb span { color: var(--gold-300, var(--gold-200)); }

/* ---------------- Badges (estate-stamp motif) ---------------- */
.stamp {
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px 6px;
  border: 1.5px solid currentColor; border-radius: 3px; transform: rotate(-3deg);
  position: relative;
}
.stamp::before, .stamp::after { content: ''; position: absolute; inset: 3px; border: 1px solid currentColor; border-radius: 2px; opacity: .4; pointer-events: none; }
.stamp--premium { color: var(--gold-700); background: var(--gold-100); }
.stamp--new { color: var(--tea-800); background: var(--tea-tint); }
.stamp--best { color: #A13B2A; background: #FBEAE4; }

/* ---------------- Cards ---------------- */
.card {
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  border: 1px solid var(--border);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.value-card { padding: 34px 28px; }
.value-card .vc-icon {
  width: 56px; height: 56px; border-radius: 16px; background: var(--tea-tint); color: var(--tea-800);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease);
}
.value-card .vc-icon svg { width: 26px; height: 26px; }
.value-card:hover .vc-icon { background: var(--tea-900); color: var(--gold-300, var(--gold-200)); transform: rotate(-8deg) scale(1.08); }
.value-card h4 { margin-bottom: 10px; }
.value-card p { font-size: 0.95rem; }

/* Product card */
.product-card { display: flex; flex-direction: column; overflow: hidden; }
.product-card .pc-media { position: relative; aspect-ratio: 4/5; background: var(--cream-100); overflow: hidden; }
.product-card .pc-media img { width: 100%; height: 100%; object-fit: contain; padding: 22px; transition: transform .6s var(--ease); }
.product-card:hover .pc-media img { transform: scale(1.06); }
.product-card .pc-badges { position: absolute; top: 14px; left: 14px; display: flex; flex-direction: column; gap: 8px; z-index: 2; }
.product-card .pc-body { padding: 26px 24px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.product-card h4 { font-size: clamp(1.25rem, 1.9vw, 1.5rem); }
.product-card .pc-cat { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--leaf-600); font-weight: 700; }
.product-card .pc-desc { font-size: 0.92rem; color: var(--charcoal-500); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.product-card .pc-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.product-card .pc-tag { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .04em; background: var(--cream-100); color: var(--charcoal-700); padding: 5px 10px; border-radius: 5px; }
.product-card .pc-foot { margin-top: auto; padding-top: 14px; display: flex; align-items: center; justify-content: space-between; border-top: 1px dashed var(--border); }
.product-card .pc-weight { font-family: var(--font-display); font-weight: 600; color: var(--tea-900); }

/* Testimonial */
.testimonial-card { padding: 36px 32px; position: relative; }
.testimonial-card .tc-quote-mark { font-family: var(--font-display); font-size: 4rem; color: var(--gold-300, var(--gold-200)); line-height: 0.4; display: block; margin-bottom: 18px; }
.testimonial-card p { font-family: var(--font-display); font-style: italic; font-size: 1.08rem; color: var(--charcoal-900); }
.testimonial-card .tc-person { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.testimonial-card .tc-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--tea-tint); color: var(--tea-800); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; }
.testimonial-card .tc-name { font-weight: 700; font-size: .92rem; color: var(--tea-900); }
.testimonial-card .tc-role { font-size: .8rem; color: var(--charcoal-500); }

/* Icon feature row */
.icon-row { display: flex; align-items: flex-start; gap: 16px; }
.icon-row .ir-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--tea-tint); color: var(--tea-800); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-row .ir-icon svg { width: 22px; height: 22px; }
.icon-row h4 { margin-bottom: 4px; font-size: 1.04rem; }
.icon-row p { font-size: .9rem; }

/* ---------------- Stats ---------------- */
.stat { text-align: center; }
.stat .stat-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 4.5vw, 3.4rem); color: var(--gold-300, var(--gold-200)); display: flex; align-items: baseline; justify-content: center; gap: 3px; }
.stat .stat-label { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .1em; font-size: .74rem; color: rgba(247,241,226,.72); margin-top: 8px; }

/* ---------------- Timeline (process / hunter's trail) ---------------- */
.trail { position: relative; max-width: 780px; margin: 0 auto; }
.trail::before {
  content: ''; position: absolute; left: 27px; top: 8px; bottom: 8px; width: 2px;
  background-image: linear-gradient(var(--tea-700) 60%, transparent 0%);
  background-size: 2px 14px; background-repeat: repeat-y;
}
@media (min-width: 860px) {
  .trail::before { left: 50%; transform: translateX(-1px); }
}
.trail-step { position: relative; padding-left: 74px; margin-bottom: 46px; }
.trail-step:last-child { margin-bottom: 0; }
.trail-step .ts-marker {
  position: absolute; left: 0; top: 0; width: 56px; height: 56px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--tea-700); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 700; color: var(--tea-800); z-index: 2; box-shadow: var(--shadow-sm);
}
.trail-step .ts-marker svg { width: 24px; height: 24px; }
.trail-step .ts-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px 26px; box-shadow: var(--shadow-sm); }
.trail-step .ts-num { font-family: var(--font-mono); font-size: .72rem; color: var(--gold-600); letter-spacing: .1em; }
@media (min-width: 860px) {
  .trail-step { padding-left: 0; width: 50%; margin-bottom: 58px; }
  .trail-step .ts-marker { left: auto; }
  .trail-step:nth-child(odd) { padding-right: 60px; text-align: right; }
  .trail-step:nth-child(odd) .ts-marker { right: -28px; left: auto; }
  .trail-step:nth-child(even) { margin-left: 50%; padding-left: 60px; }
  .trail-step:nth-child(even) .ts-marker { left: -28px; }
}

/* ---------------- FAQ Accordion ---------------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 4px; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; color: var(--tea-900); }
.faq-q .faq-plus { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--cream-100); position: relative; transition: transform .4s var(--ease), background .4s var(--ease); }
.faq-q .faq-plus::before, .faq-q .faq-plus::after { content: ''; position: absolute; background: var(--tea-800); top: 50%; left: 50%; }
.faq-q .faq-plus::before { width: 12px; height: 2px; transform: translate(-50%,-50%); }
.faq-q .faq-plus::after { width: 2px; height: 12px; transform: translate(-50%,-50%); transition: opacity .3s; }
.faq-item.is-open .faq-plus { background: var(--tea-900); transform: rotate(180deg); }
.faq-item.is-open .faq-plus::before, .faq-item.is-open .faq-plus::after { background: var(--white); }
.faq-item.is-open .faq-plus::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a p { padding: 0 4px 24px; max-width: 640px; font-size: .95rem; }

/* ---------------- Forms ---------------- */
.form-grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; color: var(--tea-800); font-weight: 700; }
.field label .opt { color: var(--charcoal-300); text-transform: none; letter-spacing: 0; font-weight: 400; }
.field input, .field select, .field textarea {
  padding: 14px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: var(--cream-50);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  font-size: .96rem; width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--tea-700); background: var(--white); box-shadow: 0 0 0 4px var(--tea-tint);
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #B4483A; background: #FDF3F1; }
.field-error { font-size: .78rem; color: #B4483A; display: none; }
.field.has-error .field-error { display: block; }
.field-hint { font-size: .78rem; color: var(--charcoal-300); }
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.form-submit-row { display: flex; align-items: center; gap: 18px; margin-top: 8px; flex-wrap: wrap; }
.form-note { font-size: .82rem; color: var(--charcoal-500); }

.spinner { width: 18px; height: 18px; border-radius: 50%; border: 2.5px solid rgba(255,255,255,.4); border-top-color: currentColor; animation: spinSlow .7s linear infinite; display: none; }
.btn.is-loading .spinner { display: inline-block; }
.btn.is-loading .btn-label { opacity: .7; }

/* ---------------- Success Modal ---------------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(14,36,25,.55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 24px; z-index: 500;
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease);
}
.modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--white); border-radius: var(--radius-lg); padding: 44px 36px; max-width: 420px; width: 100%;
  text-align: center; transform: translateY(24px) scale(.96); transition: transform .45s var(--ease); box-shadow: var(--shadow-lg);
  position: relative;
}
.modal-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; background: var(--cream-100); display: flex; align-items: center; justify-content: center; color: var(--charcoal-700); transition: all .3s var(--ease); }
.modal-close:hover { background: var(--tea-900); color: var(--white); transform: rotate(90deg); }
.modal-close svg { width: 16px; height: 16px; }
.modal-overlay.is-open .modal-box { transform: translateY(0) scale(1); }
.modal-icon { width: 74px; height: 74px; border-radius: 50%; background: var(--leaf-100); color: var(--leaf-600); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.modal-icon svg { width: 34px; height: 34px; }
.modal-box h3 { margin-bottom: 10px; }
.modal-box p { font-size: .94rem; margin-bottom: 24px; }

/* ---------------- CTA banner ---------------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(40px,6vw,72px); background: var(--tea-900); color: var(--white); }
.cta-band::before { content:''; position:absolute; inset:0; background: radial-gradient(circle at 85% 20%, rgba(203,155,62,.35), transparent 55%); }
.cta-band__inner { position: relative; z-index: 2; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.cta-band h3 { color: var(--white); max-width: 480px; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--tea-950); color: rgba(247,241,226,.75); padding-top: 80px; position: relative; overflow: hidden; }
.footer-top { display: grid; gap: 44px; grid-template-columns: 1fr; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08); }
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.3fr 1fr 1fr 1.1fr; } }
.footer-brand img { height: 44px; margin-bottom: 18px; }
.footer-brand p { color: rgba(247,241,226,.6); font-size: .92rem; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; transition: background .3s var(--ease), transform .3s var(--ease); }
.footer-social a:hover { background: var(--gold-500); color: var(--tea-950); transform: translateY(-4px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h5 { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .1em; font-size: .76rem; color: var(--gold-300, var(--gold-200)); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: .92rem; color: rgba(247,241,226,.72); transition: color .25s, padding-left .25s; }
.footer-col a:hover { color: var(--white); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; font-size: .9rem; margin-bottom: 14px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; color: var(--gold-300, var(--gold-200)); }
.newsletter-row { display: flex; gap: 0; margin-top: 16px; max-width: 320px; border-radius: 999px; overflow: hidden; background: rgba(255,255,255,.08); padding: 4px; }
.newsletter-row input { flex: 1; background: transparent; border: none; padding: 10px 14px; color: var(--white); font-size: .88rem; }
.newsletter-row input::placeholder { color: rgba(247,241,226,.5); }
.newsletter-row button { background: var(--gold-500); color: var(--tea-950); border-radius: 999px; padding: 10px 18px; font-weight: 700; font-size: .84rem; flex-shrink: 0; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; padding: 26px 0; font-size: .82rem; color: rgba(247,241,226,.5); }
.footer-bottom .legal-links { display: flex; gap: 18px; flex-wrap: wrap; }

.back-to-top {
  position: fixed; right: 22px; bottom: 22px; width: 50px; height: 50px; border-radius: 50%;
  background: var(--tea-900); color: var(--white); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); z-index: 150; opacity: 0; pointer-events: none; transform: translateY(14px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .3s;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-500); color: var(--tea-950); }
.back-to-top svg { width: 20px; height: 20px; }

/* ---------------- Sticky quick-contact rail (mobile) ---------------- */
.quick-rail { position: fixed; left: 0; right: 0; bottom: 0; z-index: 150; display: flex; background: var(--white); border-top: 1px solid var(--border); box-shadow: 0 -8px 24px rgba(0,0,0,.06); }
.quick-rail a { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 10px 0 8px; font-size: .68rem; font-weight: 700; color: var(--tea-800); }
.quick-rail a svg { width: 19px; height: 19px; }
.quick-rail a.is-wa { color: #2FAE55; }
@media (min-width: 760px) { .quick-rail { display: none; } }

/* ---------------- Misc decorative ---------------- */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; pointer-events: none; }
.leaf-deco { position: absolute; opacity: .5; animation: leafDrift 14s ease-in-out infinite alternate; pointer-events: none; }
