/* ============================================================
   Home Bliss Hubs — style.css
   Palette: Forest #1F3D34 · Cream #FAF5EC · Amber #E8A159
   ============================================================ */

:root {
  --hb-forest: #1f3d34;
  --hb-forest-2: #2a4f43;
  --hb-forest-deep: #163028;
  --hb-amber: #e8a159;
  --hb-amber-dark: #d18a3f;
  --hb-cream: #faf5ec;
  --hb-cream-2: #f3ecdd;
  --hb-ink: #26302c;
  --hb-muted: #66716b;
  --hb-line: #e7decd;
  --hb-shadow: 0 14px 40px rgba(31, 61, 52, .10);
  --hb-shadow-lg: 0 24px 60px rgba(31, 61, 52, .16);
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--hb-ink);
  background: #fffdf9;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .hb-display {
  font-weight: 800;
  color: var(--hb-forest);
  letter-spacing: -.015em;
}

p { color: var(--hb-muted); line-height: 1.75; }

a { color: var(--hb-amber-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--hb-forest); }

::selection { background: var(--hb-amber); color: #fff; }

img { max-width: 100%; }

/* ---------- Helper classes ---------- */
.hb-display { font-size: clamp(2.1rem, 4.4vw, 3.4rem); line-height: 1.12; }
.hb-ink { color: var(--hb-ink) !important; }
.hb-forest-text { color: var(--hb-forest) !important; }
.hb-amber-text { color: var(--hb-amber-dark) !important; }
.hb-cream-text { color: var(--hb-cream) !important; }
.hb-muted-text { color: var(--hb-muted) !important; }
.hb-lead-lg { font-size: 1.15rem; }

.hb-cursive {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
}

.hb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--hb-amber-dark);
  margin-bottom: 1rem;
}
.hb-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--hb-amber);
}

.hb-underline-mark {
  position: relative;
  white-space: nowrap;
  z-index: 1;
}
.hb-underline-mark::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; bottom: .08em;
  height: .34em;
  border-radius: 4px;
  background: rgba(232, 161, 89, .38);
  z-index: -1;
}

.hb-section { padding: clamp(3.8rem, 8vw, 6.5rem) 0; }
.hb-section-cream { background: var(--hb-cream); }
.hb-section-deep { background: var(--hb-forest-deep); }

.hb-divider-fade {
  height: 90px;
  background: linear-gradient(180deg, var(--hb-cream) 0%, #fffdf9 100%);
}

/* ---------- Buttons ---------- */
.btn { border-radius: 999px; font-weight: 700; letter-spacing: .01em; }

.btn-hb-amber {
  background: linear-gradient(135deg, var(--hb-amber) 0%, var(--hb-amber-dark) 100%);
  color: #fff !important;
  border: none;
  padding: .8rem 1.7rem;
  box-shadow: 0 10px 24px rgba(232, 161, 89, .38);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn-hb-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(232, 161, 89, .48);
  filter: brightness(1.04);
  color: #fff !important;
}

.btn-hb-forest {
  background: var(--hb-forest);
  color: var(--hb-cream) !important;
  border: none;
  padding: .8rem 1.7rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-hb-forest:hover {
  background: var(--hb-forest-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(31, 61, 52, .3);
  color: #fff !important;
}

.btn-hb-ghost {
  background: rgba(255, 255, 255, .08);
  color: var(--hb-cream) !important;
  border: 1.5px solid rgba(250, 245, 236, .45);
  padding: .78rem 1.65rem;
  backdrop-filter: blur(4px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.btn-hb-ghost:hover {
  background: rgba(250, 245, 236, .16);
  border-color: var(--hb-cream);
  transform: translateY(-2px);
}

.btn-hb-outline {
  background: transparent;
  color: var(--hb-forest) !important;
  border: 1.5px solid var(--hb-forest);
  padding: .74rem 1.6rem;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.btn-hb-outline:hover {
  background: var(--hb-forest);
  color: var(--hb-cream) !important;
  transform: translateY(-2px);
}

/* ---------- Header / Nav ---------- */
.hb-topbar {
  background: var(--hb-forest-deep);
  color: rgba(250, 245, 236, .85);
  font-size: .82rem;
  padding: .42rem 0;
}
.hb-topbar a { color: rgba(250, 245, 236, .85); font-weight: 600; }
.hb-topbar a:hover { color: var(--hb-amber); }
.hb-topbar .hb-top-item { display: inline-flex; align-items: center; gap: .45rem; }
.hb-topbar svg { color: var(--hb-amber); flex: 0 0 auto; }

.hb-header {
  background: rgba(255, 253, 249, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hb-line);
  transition: box-shadow .25s ease;
}
.hb-header.hb-scrolled { box-shadow: 0 8px 30px rgba(31, 61, 52, .08); }

.hb-brand { display: flex; align-items: center; gap: .65rem; padding: .35rem 0; }
.hb-brand-badge {
  width: 44px; height: 44px; flex: 0 0 auto;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--hb-forest) 0%, var(--hb-forest-2) 100%);
  border-radius: 13px;
  box-shadow: 0 8px 18px rgba(31, 61, 52, .25);
}
.hb-brand-title {
  font-weight: 800;
  font-size: 1.22rem;
  color: var(--hb-forest);
  line-height: 1.05;
  letter-spacing: -.02em;
}
.hb-brand-sub {
  display: block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--hb-amber-dark);
}

.hb-navbar .nav-link {
  font-weight: 650;
  color: var(--hb-ink);
  padding: .55rem .85rem !important;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.hb-navbar .nav-link:hover { color: var(--hb-amber-dark); background: rgba(232, 161, 89, .1); }
.hb-navbar .nav-link.active { color: var(--hb-forest); background: rgba(31, 61, 52, .08); }
.hb-navbar .nav-link:hover { color: var(--hb-amber-dark); }

.hb-navbar .btn { margin-left: .5rem; }

.hb-cta-top {
  background: linear-gradient(135deg, var(--hb-amber), var(--hb-amber-dark));
  color: #fff !important;
  font-weight: 700;
  padding: .55rem 1.25rem !important;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(232, 161, 89, .35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.hb-cta-top:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(232, 161, 89, .45); color: #fff !important; }

/* ---------- Hero ---------- */
.hb-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(100deg, rgba(22, 48, 40, .88) 0%, rgba(22, 48, 40, .62) 46%, rgba(22, 48, 40, .18) 78%, rgba(22, 48, 40, .05) 100%),
    url("../images/hero-home.jpg") center / cover no-repeat;
  overflow: hidden;
}
.hb-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 110px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 110' preserveAspectRatio='none'><path d='M0,70 C240,110 480,30 720,55 C960,80 1200,95 1440,50 L1440,110 L0,110 Z' fill='%23fffdf9'/></svg>") bottom / cover no-repeat;
  pointer-events: none;
}
.hb-hero-inner { position: relative; z-index: 2; padding: 7.5rem 0 9rem; }

.hb-hero .hb-eyebrow { color: var(--hb-amber); }
.hb-hero h1 { color: var(--hb-cream); }
.hb-hero p { color: rgba(250, 245, 236, .82); }

.hb-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(250, 245, 236, .12);
  border: 1px solid rgba(250, 245, 236, .28);
  color: var(--hb-cream);
  border-radius: 999px;
  padding: .42rem 1rem;
  font-size: .85rem;
  font-weight: 650;
  backdrop-filter: blur(4px);
}
.hb-hero-pill svg { color: var(--hb-amber); }

.hb-hero-checks { list-style: none; padding: 0; margin: 0; }
.hb-hero-checks li {
  display: flex; align-items: center; gap: .6rem;
  color: rgba(250, 245, 236, .92);
  font-weight: 600;
  font-size: .95rem;
}
.hb-hero-checks svg { color: var(--hb-amber); flex: 0 0 auto; }

.hb-hero-card {
  position: absolute;
  z-index: 2;
  right: 6%;
  bottom: 15%;
  background: rgba(255, 253, 249, .96);
  border-radius: 20px;
  padding: 1.15rem 1.35rem;
  max-width: 330px;
  box-shadow: var(--hb-shadow-lg);
  border: 1px solid rgba(231, 222, 205, .8);
}
.hb-hero-card h3 { font-size: 1.02rem; margin-bottom: .15rem; }
.hb-hero-card p { font-size: .86rem; margin-bottom: .9rem; }
@media (max-width: 991.98px) { .hb-hero-card { display: none; } }

.hb-hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 86px;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(250, 245, 236, .75);
  animation: hb-bounce 2.2s infinite;
}
@keyframes hb-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 9px); }
}

/* ---------- Feature chips strip ---------- */
.hb-chip-strip {
  background: #fffdf9;
  border: 1px solid var(--hb-line);
  border-radius: 20px;
  box-shadow: var(--hb-shadow);
  padding: 1.4rem 1rem;
  margin-top: -3.2rem;
  position: relative;
  z-index: 5;
}
.hb-chip {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .55rem .9rem;
  border-radius: 14px;
  transition: background .2s ease, transform .2s ease;
}
.hb-chip:hover { background: var(--hb-cream); transform: translateY(-2px); }
.hb-chip-icon {
  width: 40px; height: 40px; flex: 0 0 auto;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(31, 61, 52, .08);
  color: var(--hb-forest);
}
.hb-chip:hover .hb-chip-icon { background: var(--hb-amber); color: #fff; }
.hb-chip-icon svg { width: 20px; height: 20px; }
.hb-chip-label { font-weight: 700; color: var(--hb-forest); font-size: .93rem; line-height: 1.2; }

/* ---------- Welcome / About preview ---------- */
.hb-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--hb-shadow-lg);
}
.hb-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hb-frame-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: .7rem;
  background: rgba(255, 253, 249, .95);
  border-radius: 16px;
  padding: .7rem 1.05rem;
  box-shadow: var(--hb-shadow);
}
.hb-frame-badge svg { color: var(--hb-amber-dark); }
.hb-frame-badge strong { color: var(--hb-forest); font-size: .95rem; display: block; line-height: 1.2; }
.hb-frame-badge span { color: var(--hb-muted); font-size: .78rem; }

.hb-leaf-list { list-style: none; padding: 0; margin: 0; }
.hb-leaf-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: .55rem 0;
  color: var(--hb-ink);
  font-weight: 600;
  font-size: .98rem;
}
.hb-leaf-list svg { color: var(--hb-amber-dark); flex: 0 0 auto; margin-top: .15rem; }

/* ---------- Service cards ---------- */
.hb-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fffdf9;
  border: 1px solid var(--hb-line);
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.hb-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hb-shadow-lg);
  border-color: rgba(232, 161, 89, .55);
}
.hb-service-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.hb-service-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.hb-service-card:hover .hb-service-media img { transform: scale(1.07); }
.hb-service-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(22, 48, 40, .55) 100%);
  pointer-events: none;
}
.hb-service-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: rgba(255, 253, 249, .94);
  color: var(--hb-forest);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .34rem .75rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(22, 48, 40, .22);
}
.hb-service-icon {
  position: absolute;
  right: 14px; bottom: -24px;
  z-index: 2;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--hb-amber), var(--hb-amber-dark));
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(232, 161, 89, .45);
  border: 3px solid #fffdf9;
}
.hb-service-body {
  padding: 1.7rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hb-service-body h3 { font-size: 1.22rem; margin-bottom: .6rem; padding-right: 2.4rem; }
.hb-service-body p { font-size: .93rem; margin-bottom: 1.2rem; }
.hb-service-btn {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 750;
  font-size: .95rem;
  color: var(--hb-forest);
  transition: gap .2s ease, color .2s ease;
}
.hb-service-btn svg { transition: transform .2s ease; }
.hb-service-card:hover .hb-service-btn { color: var(--hb-amber-dark); gap: .75rem; }
.hb-service-card:hover .hb-service-btn svg { transform: translateX(3px); }

/* ---------- Why choose us ---------- */
.hb-feature-panel {
  background: #fffdf9;
  border: 1px solid var(--hb-line);
  border-radius: 22px;
  padding: 1.9rem 1.6rem;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hb-feature-panel:hover { transform: translateY(-6px); box-shadow: var(--hb-shadow); }
.hb-feature-icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: linear-gradient(140deg, var(--hb-forest), var(--hb-forest-2));
  color: var(--hb-amber);
  margin-bottom: 1.15rem;
  box-shadow: 0 10px 22px rgba(31, 61, 52, .22);
}

/* ---------- Process ---------- */
.hb-step-card {
  position: relative;
  background: rgba(255, 253, 249, .05);
  border: 1px solid rgba(250, 245, 236, .16);
  border-radius: 20px;
  padding: 1.9rem 1.5rem 1.6rem;
  height: 100%;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.hb-step-card:hover {
  background: rgba(255, 253, 249, .09);
  border-color: rgba(232, 161, 89, .5);
  transform: translateY(-6px);
}
.hb-step-num {
  position: absolute;
  top: -22px; left: 26px;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--hb-amber), var(--hb-amber-dark));
  color: #fff;
  font-weight: 800;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(232, 161, 89, .4);
}
.hb-step-card h3 { color: var(--hb-cream); font-size: 1.12rem; margin: .9rem 0 .5rem; }
.hb-step-card p { color: rgba(250, 245, 236, .68); font-size: .92rem; margin: 0; }

/* ---------- Projects ---------- */
.hb-project-card {
  position: relative;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--hb-shadow);
}
.hb-project-card img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  display: block;
  transition: transform .65s ease;
}
.hb-project-card:hover img { transform: scale(1.06); }
.hb-project-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(22, 48, 40, .85) 100%);
  transition: background .3s ease;
}
.hb-project-label {
  position: absolute;
  z-index: 2;
  left: 20px; right: 20px; bottom: 18px;
}
.hb-project-label h3 {
  color: var(--hb-cream);
  font-size: 1.08rem;
  margin: 0 0 .2rem;
}
.hb-project-label span {
  color: var(--hb-amber);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ---------- Testimonials ---------- */
.hb-quote-card {
  background: #fffdf9;
  border: 1px solid var(--hb-line);
  border-radius: 22px;
  padding: 1.9rem 1.7rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(31, 61, 52, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hb-quote-card:hover { transform: translateY(-6px); box-shadow: var(--hb-shadow-lg); }
.hb-quote-mark { color: var(--hb-amber); margin-bottom: .9rem; }
.hb-quote-card blockquote {
  font-size: .97rem;
  color: var(--hb-ink);
  line-height: 1.75;
  margin: 0 0 1.3rem;
  font-style: italic;
}
.hb-quote-who { margin-top: auto; display: flex; align-items: center; gap: .85rem; }
.hb-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  color: #fff;
  font-size: .95rem;
  background: linear-gradient(140deg, var(--hb-forest), var(--hb-forest-2));
  flex: 0 0 auto;
}
.hb-quote-who strong { color: var(--hb-forest); display: block; font-size: .95rem; line-height: 1.25; }
.hb-quote-who span { color: var(--hb-muted); font-size: .8rem; }
.hb-stars { color: var(--hb-amber-dark); letter-spacing: .12em; font-size: .85rem; margin-bottom: .6rem; }

/* ---------- CTA band ---------- */
.hb-cta-band {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(22, 48, 40, .94) 0%, rgba(31, 61, 52, .82) 55%, rgba(232, 161, 89, .45) 130%),
    url("../images/welcome-interior.jpg") center / cover no-repeat;
  padding: clamp(2.6rem, 6vw, 4.5rem);
}
.hb-cta-band h2 { color: var(--hb-cream); }
.hb-cta-band p { color: rgba(250, 245, 236, .8); }
.hb-cta-ring {
  position: absolute;
  border: 1.5px solid rgba(250, 245, 236, .14);
  border-radius: 50%;
  pointer-events: none;
}

/* ---------- Newsletter (home) ---------- */
.hb-news-card {
  background: #fffdf9;
  border: 1px solid var(--hb-line);
  border-radius: 26px;
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--hb-shadow-lg);
  position: relative;
  overflow: hidden;
}
.hb-news-card::before {
  content: "";
  position: absolute;
  top: -70px; right: -70px;
  width: 210px; height: 210px;
  border-radius: 50%;
  background: rgba(232, 161, 89, .14);
}
.hb-news-card::after {
  content: "";
  position: absolute;
  bottom: -90px; left: -60px;
  width: 230px; height: 230px;
  border-radius: 50%;
  background: rgba(31, 61, 52, .07);
}
.hb-news-inner { position: relative; z-index: 2; }
.hb-news-icon {
  width: 62px; height: 62px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: linear-gradient(140deg, var(--hb-amber), var(--hb-amber-dark));
  color: #fff;
  box-shadow: 0 12px 26px rgba(232, 161, 89, .4);
  margin-bottom: 1.1rem;
}

/* ---------- Footer ---------- */
.hb-footer {
  background: var(--hb-forest-deep);
  color: rgba(250, 245, 236, .78);
  position: relative;
  overflow: hidden;
}
.hb-footer::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(232, 161, 89, .07);
  pointer-events: none;
}
.hb-footer h6 {
  color: var(--hb-cream);
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}
.hb-footer p { color: rgba(250, 245, 236, .62); font-size: .93rem; }
.hb-footer a { color: rgba(250, 245, 236, .72); font-size: .93rem; transition: color .2s ease, padding-left .2s ease; }
.hb-footer a:hover { color: var(--hb-amber); }

.hb-footer-links { list-style: none; margin: 0; padding: 0; }
.hb-footer-links li { margin-bottom: .55rem; }
.hb-footer-links a { display: inline-flex; align-items: center; gap: .5rem; }
.hb-footer-links a::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--hb-amber);
  opacity: .7;
  flex: 0 0 auto;
}
.hb-footer-links a:hover { padding-left: 4px; }

.hb-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(250, 245, 236, .07);
  border: 1px solid rgba(250, 245, 236, .18);
  border-radius: 14px;
  padding: .7rem 1rem;
  color: var(--hb-cream) !important;
  font-weight: 700;
  transition: border-color .2s ease, background .2s ease;
}
.hb-footer-cta:hover { border-color: var(--hb-amber); background: rgba(232, 161, 89, .12); color: var(--hb-amber) !important; }
.hb-footer-cta svg { color: var(--hb-amber); flex: 0 0 auto; }
.hb-footer-cta small { display: block; color: rgba(250, 245, 236, .55); font-weight: 500; }

.hb-social {
  width: 40px; height: 40px;
  display: inline-grid; place-items: center;
  border-radius: 12px;
  background: rgba(250, 245, 236, .08);
  border: 1px solid rgba(250, 245, 236, .16);
  color: rgba(250, 245, 236, .85) !important;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, color .2s ease !important;
}
.hb-social:hover {
  background: var(--hb-amber);
  border-color: var(--hb-amber);
  color: #fff !important;
  transform: translateY(-3px);
}

.hb-footer-bottom {
  border-top: 1px solid rgba(250, 245, 236, .12);
  font-size: .84rem;
  color: rgba(250, 245, 236, .5);
}
.hb-footer-bottom a { font-size: .84rem; color: rgba(250, 245, 236, .6); }
.hb-footer-bottom a:hover { color: var(--hb-amber); }

/* ---------- Page hero (inner pages) ---------- */
.hb-page-hero {
  position: relative;
  background:
    linear-gradient(100deg, rgba(22, 48, 40, .93) 0%, rgba(22, 48, 40, .82) 55%, rgba(31, 61, 52, .6) 100%),
    url("../images/hero-home.jpg") center 35% / cover no-repeat;
  padding: clamp(6.5rem, 12vw, 9rem) 0 clamp(3.4rem, 7vw, 5rem);
  overflow: hidden;
}
.hb-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 70px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'><path d='M0,45 C260,75 520,15 780,35 C1040,55 1240,60 1440,30 L1440,70 L0,70 Z' fill='%23fffdf9'/></svg>") bottom / cover no-repeat;
  pointer-events: none;
}
.hb-page-hero h1 { color: var(--hb-cream); font-size: clamp(2.1rem, 4.5vw, 3.2rem); }
.hb-page-hero p { color: rgba(250, 245, 236, .78); max-width: 640px; }
.hb-page-hero .hb-eyebrow { color: var(--hb-amber); }

.hb-breadcrumb {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .85rem;
  font-weight: 650;
  padding: 0;
  margin: 1.1rem 0 0;
}
.hb-breadcrumb a { color: rgba(250, 245, 236, .75); }
.hb-breadcrumb a:hover { color: var(--hb-amber); }
.hb-breadcrumb .sep { color: var(--hb-amber); }
.hb-breadcrumb .current { color: var(--hb-cream); }

/* ---------- Contact page ---------- */
.hb-contact-card {
  display: flex;
  gap: 1.05rem;
  align-items: flex-start;
  background: #fffdf9;
  border: 1px solid var(--hb-line);
  border-radius: 20px;
  padding: 1.5rem 1.4rem;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hb-contact-card:hover { transform: translateY(-5px); box-shadow: var(--hb-shadow); }
.hb-contact-icon {
  width: 52px; height: 52px;
  flex: 0 0 auto;
  display: grid; place-items: center;
  border-radius: 15px;
  background: linear-gradient(140deg, var(--hb-forest), var(--hb-forest-2));
  color: var(--hb-amber);
}
.hb-contact-card h3 { font-size: 1.02rem; margin-bottom: .3rem; }
.hb-contact-card p { margin: 0; font-size: .93rem; }
.hb-contact-card a.hb-contact-big {
  font-size: 1.05rem;
  font-weight: 750;
  color: var(--hb-forest);
  display: inline-block;
  margin-bottom: .2rem;
}
.hb-contact-card a.hb-contact-big:hover { color: var(--hb-amber-dark); }

.hb-form-card {
  background: #fffdf9;
  border: 1px solid var(--hb-line);
  border-radius: 24px;
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  box-shadow: var(--hb-shadow-lg);
}
.hb-form-label {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--hb-forest);
  margin-bottom: .4rem;
}
.hb-form-card .form-control,
.hb-form-card .form-select {
  border: 1.5px solid var(--hb-line);
  border-radius: 13px;
  padding: .72rem 1rem;
  font-size: .95rem;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.hb-form-card .form-control:focus,
.hb-form-card .form-select:focus {
  border-color: var(--hb-amber);
  box-shadow: 0 0 0 .22rem rgba(232, 161, 89, .18);
}

/* ---------- Newsletter pages ---------- */
.hb-newsletter-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(232, 161, 89, .16), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(31, 61, 52, .12), transparent 55%),
    var(--hb-cream);
}
.hb-newsletter-main { flex: 1; display: flex; align-items: center; padding: 3rem 0; }
.hb-newsletter-card {
  background: #fffdf9;
  border: 1px solid var(--hb-line);
  border-radius: 28px;
  box-shadow: var(--hb-shadow-lg);
  overflow: hidden;
}
.hb-newsletter-side {
  background:
    linear-gradient(160deg, rgba(22, 48, 40, .92), rgba(31, 61, 52, .78)),
    url("../images/welcome-interior.jpg") center / cover no-repeat;
  color: var(--hb-cream);
  padding: 2.8rem 2.2rem;
  display: flex;
  flex-direction: column;
}
.hb-newsletter-side h2, .hb-newsletter-side h3 { color: var(--hb-cream); }
.hb-newsletter-side p { color: rgba(250, 245, 236, .75); }
.hb-newsletter-perk {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  padding: .6rem 0;
  color: rgba(250, 245, 236, .9);
  font-weight: 600;
  font-size: .93rem;
}
.hb-newsletter-perk svg { color: var(--hb-amber); flex: 0 0 auto; margin-top: .1rem; }

.hb-perk-row {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: .55rem 0;
}
.hb-perk-row svg { color: var(--hb-amber-dark); flex: 0 0 auto; margin-top: .18rem; }
.hb-perk-row strong { color: var(--hb-forest); display: block; font-size: .97rem; }
.hb-perk-row span { color: var(--hb-muted); font-size: .86rem; }

.hb-success-panel {
  text-align: center;
  padding: clamp(2.4rem, 5vw, 3.6rem) clamp(1.4rem, 4vw, 3rem);
}
.hb-success-icon {
  width: 92px; height: 92px;
  margin: 0 auto 1.4rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(31, 61, 52, .08);
  color: var(--hb-forest);
  animation: hb-pop .5s ease;
}
.hb-success-icon.amber { background: rgba(232, 161, 89, .16); color: var(--hb-amber-dark); }
@keyframes hb-pop {
  0% { transform: scale(.5); opacity: 0; }
  70% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}

.hb-mini-brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 800;
  color: var(--hb-forest);
  text-decoration: none;
}
.hb-mini-brand-badge {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--hb-forest), var(--hb-forest-2));
  border-radius: 11px;
}

/* ---------- 404 ---------- */
.hb-404-code {
  font-size: clamp(5.5rem, 16vw, 10rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(120deg, var(--hb-forest) 20%, var(--hb-amber) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Legal pages ---------- */
.hb-legal-card {
  background: #fffdf9;
  border: 1px solid var(--hb-line);
  border-radius: 24px;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  box-shadow: var(--hb-shadow);
}
.hb-legal-card h2 {
  font-size: 1.3rem;
  margin: 2.1rem 0 .8rem;
  padding-top: 1.6rem;
  border-top: 1px dashed var(--hb-line);
}
.hb-legal-card h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 1.6rem; }
.hb-legal-card p, .hb-legal-card li { color: var(--hb-muted); font-size: .97rem; line-height: 1.8; }
.hb-legal-card ul, .hb-legal-card ol { padding-left: 1.3rem; }
.hb-legal-card li { margin-bottom: .45rem; }
.hb-legal-card strong { color: var(--hb-ink); }
.hb-legal-updated {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(232, 161, 89, .12);
  color: var(--hb-amber-dark);
  font-weight: 750;
  font-size: .84rem;
  border-radius: 999px;
  padding: .42rem 1rem;
}

/* ---------- Blog (home preview + blog page + posts) ---------- */
.hb-blog-card {
  display: flex;
  flex-direction: column;
  background: #fffdf9;
  border: 1px solid var(--hb-line);
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.hb-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hb-shadow-lg);
  border-color: rgba(232, 161, 89, .5);
}
.hb-blog-media { display: block; overflow: hidden; position: relative; aspect-ratio: 16 / 9.4; }
.hb-blog-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.hb-blog-card:hover .hb-blog-media img { transform: scale(1.07); }
.hb-blog-chip {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255, 253, 249, .95);
  color: var(--hb-forest);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .32rem .7rem;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(22, 48, 40, .18);
}
.hb-blog-body { padding: 1.5rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.hb-blog-meta {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  font-weight: 650;
  color: var(--hb-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .55rem;
}
.hb-blog-meta .dot { color: var(--hb-amber-dark); }
.hb-blog-body h3 { font-size: 1.16rem; line-height: 1.4; margin-bottom: .55rem; }
.hb-blog-body h3 a { color: var(--hb-forest); transition: color .2s ease; }
.hb-blog-body h3 a:hover { color: var(--hb-amber-dark); }
.hb-blog-body p { font-size: .92rem; margin-bottom: 1.1rem; }
.hb-blog-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 750;
  font-size: .93rem;
  color: var(--hb-amber-dark);
}
.hb-blog-link svg { transition: transform .2s ease; }
.hb-blog-card:hover .hb-blog-link svg { transform: translateX(4px); }

/* Blog post */
.hb-post-cover {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--hb-shadow-lg);
  margin-top: -3.4rem;
  position: relative;
  z-index: 5;
  border: 6px solid #fffdf9;
}
.hb-post-cover img { width: 100%; aspect-ratio: 16 / 7.4; object-fit: cover; display: block; }

.hb-post-body { font-size: 1.02rem; }
.hb-post-body h2 {
  font-size: 1.45rem;
  margin: 2.2rem 0 .8rem;
}
.hb-post-body h3 { font-size: 1.15rem; margin: 1.7rem 0 .6rem; }
.hb-post-body p { color: var(--hb-ink); opacity: .88; margin-bottom: 1.1rem; }
.hb-post-body ul, .hb-post-body ol { padding-left: 1.35rem; margin-bottom: 1.2rem; }
.hb-post-body li { color: var(--hb-ink); opacity: .88; margin-bottom: .5rem; line-height: 1.7; }
.hb-post-body strong { color: var(--hb-forest); }

.hb-post-toc {
  background: var(--hb-cream);
  border: 1px solid var(--hb-line);
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  margin: 1.8rem 0;
}
.hb-post-toc h2 { font-size: .82rem !important; letter-spacing: .2em; text-transform: uppercase; color: var(--hb-amber-dark) !important; margin: 0 0 .7rem !important; }
.hb-post-toc ol { margin: 0; padding-left: 1.2rem; }
.hb-post-toc li { margin-bottom: .3rem; }
.hb-post-toc a { font-weight: 650; font-size: .93rem; }

.hb-tip-box {
  background: rgba(232, 161, 89, .1);
  border-left: 4px solid var(--hb-amber);
  border-radius: 0 14px 14px 0;
  padding: 1.1rem 1.3rem;
  margin: 1.6rem 0;
}
.hb-tip-box p { margin: 0; font-size: .96rem; }
.hb-tip-box strong { color: var(--hb-amber-dark); }

.hb-post-author {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--hb-cream);
  border: 1px solid var(--hb-line);
  border-radius: 20px;
  padding: 1.3rem 1.5rem;
  margin-top: 2.4rem;
}
.hb-post-author strong { color: var(--hb-forest); display: block; }
.hb-post-author span { color: var(--hb-muted); font-size: .88rem; }

.hb-share-label {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--hb-muted);
}

.hb-post-nav {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 750;
  color: var(--hb-forest);
  font-size: .95rem;
}
.hb-post-nav:hover { color: var(--hb-amber-dark); }
.hb-post-nav svg { transition: transform .2s ease; }
.hb-post-nav:hover svg { transform: translateX(-4px); }
.hb-post-nav.next:hover svg { transform: translateX(4px); }

/* ---------- Reveal animation ---------- */
.hb-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--hb-delay, 0ms);
  will-change: opacity, transform;
}
.hb-reveal.hb-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .hb-reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Small screens ---------- */
@media (max-width: 767.98px) {
  .hb-topbar .hb-top-right { display: none !important; }
  .hb-hero-inner { padding: 5.5rem 0 7.5rem; }
  .hb-hero { min-height: 86vh; }
  .hb-hero-scroll { display: none; }
  .hb-chip-strip { margin-top: -2rem; }
  .hb-post-cover { margin-top: -2.2rem; }
}
