/* ============================================================
   HORNITOS — Component styles (header, footer, progress, faq)
   ============================================================ */

/* ---------- Header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  transition: box-shadow .25s ease;
  border-bottom: 1px solid var(--line-soft);
}
.site-head.is-scrolled {
  background: #fff;
  box-shadow: 0 2px 14px -6px rgba(37,36,29,.18);
}
.head-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 78px; position: relative; }
.head-nav { display: flex; gap: 34px; position: absolute; left: 50%; transform: translateX(-50%); }
.head-actions { display: flex; align-items: center; gap: 14px; }
.nav-burger { display: none; background: none; border: none; color: var(--ink); padding: 6px; align-items: center; justify-content: center; }
.nav-link {
  background: none; border: none; padding: 4px 0;
  font-family: var(--btn); font-weight: 700; font-size: 17px;
  letter-spacing: .05em; text-transform: uppercase; color: var(--ink);
  position: relative; white-space: nowrap;
}
.nav-link::after { content: ""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0; background: var(--green); transition: width .22s ease; }
.nav-link:hover::after { width: 100%; }
.head-cta { padding: 12px 22px; min-height: 46px; font-size: 16px; white-space: nowrap; }
@media (max-width: 860px) {
  .head-nav { display: none; }
  .head-row { height: 66px; }
  .nav-burger { display: inline-flex; }
  .head-cta { padding: 11px 18px; font-size: 14px; min-height: 42px; }
}
.mobile-menu { display: none; }
@media (max-width: 860px) {
  .mobile-menu { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; background: #fff; }
  .mobile-menu.open { grid-template-rows: 1fr; box-shadow: 0 14px 24px -14px rgba(37,36,29,.2); border-top: 1px solid var(--line-soft); }
  .mobile-menu-inner { overflow: hidden; min-height: 0; }
  .mobile-menu-link { display: block; width: 100%; text-align: left; background: none; border: none; border-bottom: 1px solid var(--line-soft); padding: 18px var(--gut); font-family: var(--btn); font-weight: 700; font-size: 18px; letter-spacing: .05em; text-transform: uppercase; color: var(--ink); }
  .mobile-menu-link:last-child { border-bottom: none; }
}

/* ---------- Progress ---------- */
.progress { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.prog-item { display: flex; align-items: center; gap: 12px; position: relative; }
.prog-dot {
  width: 34px; height: 34px; flex: none; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; font-size: 15px;
  font-family: var(--display);
  background: #fff; color: var(--ink-faint); border: 1.5px solid var(--stone-300);
}
.prog-label { font-size: 13px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--ink-faint); white-space: nowrap; }
.prog-line { width: clamp(28px, 6vw, 72px); height: 1.5px; background: var(--stone-300); margin: 0 18px; }
.prog-item.now .prog-dot { background: var(--green); color: #fff; border-color: var(--green); box-shadow: 0 0 0 5px rgba(0,147,90,.14); }
.prog-item.now .prog-label { color: var(--ink); }
.prog-item.done .prog-dot { background: var(--green-tint); color: var(--green-700); border-color: transparent; }
.prog-item.done .prog-label { color: var(--ink-soft); }
.prog-item.done .prog-line { background: var(--green); }
@media (max-width: 560px) { .prog-label { display: none; } .prog-line { margin: 0 8px; } }

/* ---------- Offer tiers ---------- */
.tiers { display: inline-flex; align-items: stretch; gap: 0; background: #fff; border-radius: 16px; box-shadow: var(--shadow-card); overflow: hidden; }
.tier { display: flex; flex-direction: column; gap: 2px; padding: 16px 26px; text-align: center; }
.tier-size { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: .02em; color: var(--ink); }
.tier-save { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.tier-save b { color: var(--green-700); font-size: 18px; font-family: var(--display); }
.tier-div { width: 1px; background: var(--line); }
.tiers.compact .tier { padding: 11px 20px; }
.tiers.compact .tier-size { font-size: 17px; }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px; font-family: var(--display); text-transform: uppercase;
  font-weight: 700; font-size: clamp(19px, 2vw, 24px); letter-spacing: 0; color: var(--ink);
}
.faq-q .arrow, .faq-q svg { color: var(--green); flex: none; }
.faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a { overflow: hidden; }
.faq-item.open .faq-a { padding: 0 4px 28px; }
.faq-a { font-size: 16px; color: var(--ink-soft); max-width: 64ch; line-height: 1.6; }

/* ---------- Footer ---------- */
.site-foot { background: var(--green-900); color: rgba(255,255,255,.8); padding-block: clamp(56px, 7vw, 90px) 36px; }
.foot-top { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.14); }
.foot-social { display: flex; gap: 10px; margin-top: 24px; }
.foot-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); display: grid; place-items: center; text-decoration: none; color: #fff; transition: background .2s, color .2s; }
.foot-social a:hover { background: #fff; color: var(--green-900); }
.foot-cols { display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px; }
.foot-cols-legalonly { grid-template-columns: 1fr; }
.foot-col h4 { font-family: var(--btn); font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); font-weight: 700; margin-bottom: 16px; }
.foot-col a, .foot-col button { display: block; background: none; border: none; padding: 7px 0; text-align: left; color: rgba(255,255,255,.82); text-decoration: none; font-size: 16px; font-family: var(--body); transition: color .18s; cursor: pointer; white-space: nowrap; }
.foot-col a:hover, .foot-col button:hover { color: #fff; }
.foot-col-legal { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
.foot-col-legal h4 { grid-column: 1 / -1; }
.foot-legal { color: rgba(255,255,255,.5) !important; max-width: none; margin: 28px 0 0; }
.foot-legal + .foot-legal { margin-top: 14px; }
.foot-legal b { color: rgba(255,255,255,.72); }
.foot-base { display: flex; justify-content: flex-start; gap: 16px; color: rgba(255,255,255,.5) !important; letter-spacing: .04em; font-size: 12.5px; margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }
@media (max-width: 820px) {
  .foot-top { grid-template-columns: 1fr; gap: 36px; }
  .foot-cols { grid-template-columns: 1fr; gap: 24px; }
  .foot-base { flex-direction: column; gap: 6px; }
}
