/* Hyvsi Hotel landing — v3 (cache-busted filename) */
/* ════════════════ Hyvsi Hotel landing v3 — magazine-style ════════════════ */
.hh { display: flex; flex-direction: column; gap: 40px; padding: 24px 0 60px; }
.hh > section, .hh > article { width: 100%; }

/* ─── Eyebrow ─── */
.hh-eyebrow {
  display: inline-block;
  background: linear-gradient(180deg, var(--hv-orange-top, #ffb74d), var(--hv-orange-bottom, #ff8a3d));
  color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 2px;
  padding: 4px 12px; border-radius: 999px; text-transform: uppercase;
  border: 1.5px solid var(--hv-orange-border, #d96c00);
  margin-bottom: 12px;
}

/* ═══════════════ HERO ═══════════════ */
.hh-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #fff7e6 0%, #ffe0b2 100%);
  border: 1px solid var(--hv-orange-border, #d96c00);
  border-radius: 22px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
  min-height: 280px;
  box-shadow: 0 14px 36px rgba(217,108,0,0.14);
}
.hh-hero__art { position: relative; overflow: hidden; }
.hh-hero__svg { width: 100%; height: 100%; display: block; min-height: 280px; }
.hh-hero__copy {
  padding: 36px 38px;
  display: flex; flex-direction: column; justify-content: center;
}
.hh-hero__copy h1 {
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.05; margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.hh-h1-accent {
  background: linear-gradient(180deg, var(--hv-orange-top), var(--hv-orange-bottom));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hh-lead { font-size: 15px; line-height: 1.55; color: var(--hv-ink-soft); margin: 0 0 22px; }
.hh-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }

/* ─── Hero animations ─── */
.hh-cl { animation: hh-drift 28s linear infinite; }
.hh-cl--2 { animation-duration: 36s; animation-delay: -10s; }
@keyframes hh-drift { from { transform: translateX(-100px); } to { transform: translateX(600px); } }
.hh-flag { animation: hh-flag 2.5s ease-in-out infinite; transform-origin: 270px 22px; }
@keyframes hh-flag { 0%,100% { transform: scaleX(1); } 50% { transform: scaleX(0.9); } }
.hh-smoke circle { animation: hh-smk 3s ease-out infinite; }
.hh-smoke circle:nth-child(2) { animation-delay: -1s; }
.hh-smoke circle:nth-child(3) { animation-delay: -2s; }
@keyframes hh-smk { 0%{opacity:0;transform:translateY(0) scale(.6)} 50%{opacity:.7} 100%{opacity:0;transform:translateY(-30px) scale(1.3)} }
.hh-w--lit { animation: hh-glow 3.5s ease-in-out infinite; }
.hh-w--lit:nth-of-type(2n) { animation-delay: -1.5s; }
@keyframes hh-glow { 0%,100%{filter:brightness(1)} 50%{filter:brightness(1.18) drop-shadow(0 0 4px rgba(255,217,107,0.6))} }
.hh-pix { transform-origin: center bottom; animation: hh-bnc 1.5s ease-in-out infinite; }
.hh-pix--2 { animation-delay: -0.7s; }
@keyframes hh-bnc { 0%,50%,100% { transform: translateY(0); } 25% { transform: translateY(-3px); } }
.hh-heart { transform-origin: 270px 200px; animation: hh-hrt 3.2s ease-out infinite; }
@keyframes hh-hrt { 0%{opacity:0;transform:scale(.5) translateY(0)} 20%{opacity:1;transform:scale(1.1) translateY(-4px)} 60%{opacity:1;transform:scale(1) translateY(-12px)} 100%{opacity:0;transform:scale(.9) translateY(-26px)} }
.hh-bird { transform: translate(-80px, 80px); animation: hh-fly 14s linear infinite; }
@keyframes hh-fly { 0%{transform:translate(-80px,80px)} 50%{transform:translate(260px,30px)} 100%{transform:translate(600px,60px)} }

/* ═══════════════ CTA BUTTON ═══════════════ */
.hh-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px; font-size: 15px; font-weight: 700;
  background: linear-gradient(180deg, var(--hv-orange-top, #ffb74d), var(--hv-orange-bottom, #ff8a3d));
  color: #fff !important;
  border: 1.5px solid var(--hv-orange-border, #d96c00);
  border-radius: 12px;
  text-decoration: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  box-shadow: 0 5px 14px rgba(255,102,0,0.28), inset 0 1px 0 rgba(255,255,255,0.35);
}
.hh-cta:hover { transform: translateY(-2px); box-shadow: 0 9px 22px rgba(255,102,0,0.38); }
.hh-cta:active { transform: translateY(0); }
.hh-cta--lg { padding: 14px 28px; font-size: 16px; align-self: flex-start; }
.hh-cta--xl { padding: 18px 36px; font-size: 17px; }
.hh-cta--ghost { background: #fff; color: var(--hv-orange-border, #d96c00) !important; box-shadow: none; }
.hh-cta--ghost:hover { background: var(--hv-orange-soft, #fff3de); }
.hh-cta__shine {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  transform: translateX(-100%); pointer-events: none;
  transition: transform 0.6s ease;
}
.hh-cta:hover .hh-cta__shine { transform: translateX(100%); }
.hh-cta.is-loading { pointer-events: none; opacity: 0.85; }
.hh-cta.is-loading .hh-cta__icon svg { animation: hh-spin 0.7s linear infinite; }
@keyframes hh-spin { to { transform: rotate(360deg); } }

/* ═══════════════ MAGAZINE GRID ═══════════════ */
.hh-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

/* Featured article */
.hh-feat {
  background: #fff;
  border: 1px solid var(--hv-border-soft, #f0f1f4);
  border-radius: 18px;
  padding: 28px 30px;
  box-shadow: var(--hv-shadow-sm);
}
.hh-feat__ribbon {
  display: inline-block;
  background: var(--hv-orange-soft, #fff3de);
  color: var(--hv-orange-border, #d96c00);
  font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 6px; margin-bottom: 14px;
}
.hh-feat h2 { font-size: clamp(22px, 2.4vw, 28px); margin: 0 0 12px; line-height: 1.2; }
.hh-feat__intro { font-size: 15px; line-height: 1.6; color: var(--hv-ink-soft); margin: 0 0 22px; }

.hh-feat__pics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin: 0 0 22px;
}
.hh-pic {
  aspect-ratio: 4 / 3; border-radius: 12px;
  position: relative; overflow: hidden;
  border: 1px solid var(--hv-border-soft);
}
.hh-pic__tag {
  position: absolute; left: 8px; bottom: 8px;
  background: rgba(0,0,0,0.65); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  padding: 3px 8px; border-radius: 4px; text-transform: uppercase;
}
.hh-pic--lobby {
  background:
    radial-gradient(circle at 50% 60%, rgba(255,217,107,0.5) 0%, transparent 50%),
    linear-gradient(135deg, #ffd699 0%, #ff8a3d 100%);
}
.hh-pic--lobby::before {
  content: ""; position: absolute; left: 30%; right: 30%; bottom: 20%; height: 40%;
  background: linear-gradient(180deg, #fff7e6, #ffe0b2);
  border: 2px solid #d96c00; border-radius: 6px 6px 0 0;
}
.hh-pic--lobby::after {
  content: ""; position: absolute; left: 45%; bottom: 20%; width: 10%; height: 25%;
  background: #a14a00; border-radius: 2px;
}
.hh-pic--lounge {
  background: linear-gradient(180deg, #c8a8e0 0%, #9d76c4 50%, #6a4a8e 100%);
}
.hh-pic--lounge::before {
  content: "♪"; position: absolute; top: 20%; left: 20%; color: #ffd96b; font-size: 32px;
}
.hh-pic--lounge::after {
  content: "♫"; position: absolute; top: 35%; right: 22%; color: #fff; font-size: 28px; opacity: 0.8;
}
.hh-pic--cafe {
  background: linear-gradient(180deg, #b8e0a3 0%, #7ec850 60%, #5aa138 100%);
}
.hh-pic--cafe::before {
  content: ""; position: absolute; left: 35%; right: 35%; top: 35%; height: 30%;
  background: #fff; border: 2px solid #5aa138; border-radius: 50% 50% 6px 6px;
}
.hh-pic--cafe::after {
  content: ""; position: absolute; left: 40%; right: 40%; top: 28%; height: 8%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.6));
  border-radius: 50%;
}

.hh-feat__bullets {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  padding-top: 14px; border-top: 1px solid var(--hv-border-soft);
}
.hh-bullet { display: flex; gap: 12px; align-items: flex-start; }
.hh-bullet__ico {
  flex-shrink: 0; width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--hv-orange-soft), var(--hv-orange-tint));
  color: var(--hv-orange-border);
  border-radius: 10px;
  display: grid; place-items: center;
}
.hh-bullet > div:last-child { display: flex; flex-direction: column; gap: 2px; }
.hh-bullet strong { font-size: 14px; color: var(--hv-ink); font-weight: 700; }
.hh-bullet span { font-size: 13px; color: var(--hv-mute); line-height: 1.4; }

/* ─── Sidebar ─── */
.hh-side { display: flex; flex-direction: column; gap: 14px; }
.hh-card {
  background: #fff;
  border: 1px solid var(--hv-border-soft, #f0f1f4);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--hv-shadow-sm);
}
.hh-card__head {
  padding: 12px 16px;
  background: linear-gradient(180deg, var(--hv-orange-tint, #fffaf0), #fff);
  border-bottom: 1px solid var(--hv-border-soft);
  display: flex; justify-content: space-between; align-items: center;
}
.hh-card__title { font-size: 13px; font-weight: 800; color: var(--hv-orange-border); letter-spacing: 0.5px; text-transform: uppercase; }
.hh-card__body { padding: 14px 16px; }

/* Stats card */
.hh-card--stats .hh-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.hh-stat {
  text-align: center;
  padding: 14px 8px;
  border-right: 1px solid var(--hv-border-soft);
  border-bottom: 1px solid var(--hv-border-soft);
}
.hh-stat:nth-child(even) { border-right: none; }
.hh-stat:nth-child(n+3) { border-bottom: none; }
.hh-stat__num {
  display: block; font-size: 22px; font-weight: 800; line-height: 1;
  background: linear-gradient(180deg, var(--hv-orange-top), var(--hv-orange-bottom));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hh-stat__lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--hv-mute); margin-top: 4px; display: block; font-weight: 700; }

/* Live card */
.hh-card--live .hh-dot {
  width: 10px; height: 10px; background: #16A34A; border-radius: 50%;
  animation: hh-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(22,163,74,0.4);
}
@keyframes hh-pulse { 0%,100%{box-shadow:0 0 0 0 rgba(22,163,74,0.4)} 50%{box-shadow:0 0 0 8px rgba(22,163,74,0)} }
.hh-live-line { margin: 0 0 6px; font-size: 15px; color: var(--hv-ink); }
.hh-live-sub { margin: 0; font-size: 12px; color: var(--hv-mute); line-height: 1.4; }

/* Tips */
.hh-tips {
  padding: 14px 16px 14px 36px; margin: 0;
  list-style: none; counter-reset: tip;
}
.hh-tips li {
  counter-increment: tip;
  font-size: 13px; line-height: 1.5; color: var(--hv-ink-soft);
  position: relative; padding: 4px 0 4px 4px;
}
.hh-tips li::before {
  content: counter(tip);
  position: absolute; left: -28px; top: 5px;
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--hv-orange-top), var(--hv-orange-bottom));
  color: #fff; border-radius: 50%;
  font-size: 11px; font-weight: 800; text-align: center; line-height: 20px;
}
.hh-tips code { background: var(--hv-bg-deep); padding: 1px 5px; border-radius: 3px; font-size: 12px; }

/* FAQ mini */
.hh-card--faq .hh-mini {
  padding: 10px 16px;
  border-bottom: 1px solid var(--hv-border-soft);
}
.hh-card--faq .hh-mini:last-child { border-bottom: none; }
.hh-mini summary {
  cursor: pointer; font-weight: 600; font-size: 13px; list-style: none;
  padding-right: 24px; position: relative; color: var(--hv-ink);
}
.hh-mini summary::-webkit-details-marker { display: none; }
.hh-mini summary::after {
  content: "+"; position: absolute; right: 0; top: -1px;
  color: var(--hv-orange-border); font-size: 18px; font-weight: 800;
  transition: transform 0.2s;
}
.hh-mini[open] summary::after { transform: rotate(45deg); }
.hh-mini p { margin: 8px 0 0; font-size: 12px; line-height: 1.5; color: var(--hv-ink-soft); }

/* ═══════════════ INFOGRAPHIC TILES (6-grid) ═══════════════ */
.hh-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hh-tile {
  background: #fff;
  border: 1px solid var(--hv-border-soft);
  border-radius: 16px;
  padding: 22px 20px;
  position: relative; overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}
.hh-tile::before {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  opacity: 0.12; transition: transform 0.4s ease;
}
.hh-tile:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(217,108,0,0.18); }
.hh-tile:hover::before { transform: scale(1.4); }
.hh-tile--orange::before { background: var(--hv-orange-border, #d96c00); }
.hh-tile--blue::before   { background: var(--hv-accent, #2D7DC6); }
.hh-tile--green::before  { background: #5aa138; }
.hh-tile--purple::before { background: #9d76c4; }
.hh-tile--pink::before   { background: #d946ef; }
.hh-tile--yellow::before { background: #f59e0b; }
.hh-tile__ico {
  position: relative; z-index: 1;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  margin-bottom: 14px;
}
.hh-tile--orange .hh-tile__ico { background: rgba(217,108,0,0.12); color: var(--hv-orange-border); }
.hh-tile--blue   .hh-tile__ico { background: rgba(45,125,198,0.12); color: var(--hv-accent); }
.hh-tile--green  .hh-tile__ico { background: rgba(90,161,56,0.12); color: #5aa138; }
.hh-tile--purple .hh-tile__ico { background: rgba(157,118,196,0.15); color: #9d76c4; }
.hh-tile--pink   .hh-tile__ico { background: rgba(217,70,239,0.12); color: #d946ef; }
.hh-tile--yellow .hh-tile__ico { background: rgba(245,158,11,0.15); color: #f59e0b; }
.hh-tile__num {
  font-size: clamp(28px, 3vw, 38px); font-weight: 900;
  line-height: 1; margin-bottom: 6px;
  background: linear-gradient(180deg, var(--hv-orange-top), var(--hv-orange-bottom));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  position: relative; z-index: 1;
}
.hh-tile--blue   .hh-tile__num { background: linear-gradient(180deg, #5BB8EC, var(--hv-accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hh-tile--green  .hh-tile__num { background: linear-gradient(180deg, #8fd861, #5aa138); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hh-tile--purple .hh-tile__num { background: linear-gradient(180deg, #c8a8e0, #9d76c4); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hh-tile--pink   .hh-tile__num { background: linear-gradient(180deg, #f0abfc, #d946ef); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hh-tile--yellow .hh-tile__num { background: linear-gradient(180deg, #fcd34d, #f59e0b); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hh-tile__lbl {
  font-size: 14px; font-weight: 700; color: var(--hv-ink);
  text-transform: uppercase; letter-spacing: 1px;
  position: relative; z-index: 1;
}
.hh-tile__desc {
  font-size: 13px; line-height: 1.5; color: var(--hv-ink-soft);
  margin: 8px 0 0; position: relative; z-index: 1;
}

/* ═══════════════ VIBE PICKER (interactive) ═══════════════ */
.hh-section--vibe {
  background: linear-gradient(135deg, #fff7e6 0%, #ffe5cc 100%);
  border: 1px solid var(--hv-orange-border);
  border-radius: 22px;
  padding: 56px 56px 64px;
}
.hh-section--vibe .hh-section__head { margin-bottom: 40px; }
.hh-vibes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.hh-vibe {
  all: unset;
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: 16px;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.hh-vibe:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(217,108,0,0.20);
  border-color: var(--hv-orange-border);
}
.hh-vibe.active {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(217,108,0,0.30), 0 0 0 3px var(--hv-orange-border);
  border-color: var(--hv-orange-border);
  background: linear-gradient(180deg, #fff 0%, #fff8e8 100%);
}
.hh-vibe__art {
  height: 160px;
  position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.hh-vibe__art--lobby {
  background: linear-gradient(180deg, #ffd699 0%, #ff9d4f 100%);
}
.hh-vibe__art--lobby::before {
  content: ""; position: absolute; left: 20%; right: 20%; bottom: 14%; height: 50%;
  background: linear-gradient(180deg, #fff7e6, #ffe0b2);
  border: 2px solid #d96c00; border-radius: 6px 6px 0 0;
}
.hh-vibe__art--lobby::after {
  content: ""; position: absolute; left: 45%; bottom: 14%; width: 10%; height: 28%;
  background: #a14a00;
}
.hh-vibe__art--lounge {
  background: linear-gradient(180deg, #c8a8e0 0%, #6a4a8e 100%);
}
.hh-vibe__art--lounge::before {
  content: "♪"; position: absolute; top: 18%; left: 18%; color: #ffd96b; font-size: 36px;
  animation: hh-music 2.5s ease-in-out infinite;
}
.hh-vibe__art--lounge::after {
  content: "♫"; position: absolute; bottom: 22%; right: 18%; color: #fff; font-size: 30px;
  animation: hh-music 2.5s ease-in-out infinite -1.25s;
}
@keyframes hh-music { 0%,100%{transform:translateY(0) rotate(-5deg)} 50%{transform:translateY(-8px) rotate(5deg)} }
.hh-vibe__art--cafe {
  background: linear-gradient(180deg, #b8e0a3 0%, #5aa138 100%);
}
.hh-vibe__art--cafe::before {
  content: ""; position: absolute; left: 32%; right: 32%; top: 30%; height: 36%;
  background: #fff; border: 2px solid #5aa138; border-radius: 50% 50% 6px 6px;
}
.hh-vibe__art--cafe::after {
  content: ""; position: absolute; left: 38%; right: 38%; top: 22%; height: 12%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.7));
  border-radius: 50%; animation: hh-steam 3s ease-in-out infinite;
}
@keyframes hh-steam { 0%,100%{opacity:0.4;transform:translateY(0)} 50%{opacity:0.9;transform:translateY(-6px)} }
.hh-vibe__art--dance {
  background:
    repeating-linear-gradient(45deg, #1a1a2e 0px, #1a1a2e 16px, #16213e 16px, #16213e 32px);
}
.hh-vibe__art--dance::before {
  content: ""; position: absolute; left: 30%; right: 30%; top: 16%; height: 36%;
  background: radial-gradient(circle, #fff 0%, #fcd34d 30%, transparent 70%);
  border-radius: 50%;
  animation: hh-disco 2s linear infinite;
}
@keyframes hh-disco {
  0%   { filter: hue-rotate(0deg); }
  25%  { filter: hue-rotate(90deg); }
  50%  { filter: hue-rotate(180deg); }
  75%  { filter: hue-rotate(270deg); }
  100% { filter: hue-rotate(360deg); }
}
.hh-vibe__bubble {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,0.95);
  color: #2a1a0e; font-weight: 700; font-size: 14px;
  padding: 4px 12px; border-radius: 14px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  z-index: 2;
}
.hh-vibe__body { padding: 16px 18px 18px; text-align: left; }
.hh-vibe__body h3 { font-size: 16px; margin: 0 0 6px; color: var(--hv-ink); }
.hh-vibe__body p { font-size: 13px; line-height: 1.45; color: var(--hv-ink-soft); margin: 0 0 10px; }
.hh-vibe__tags { display: flex; flex-wrap: wrap; gap: 5px; padding: 0; margin: 0; list-style: none; }
.hh-vibe__tags li {
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  background: var(--hv-orange-soft, #fff3de);
  color: var(--hv-orange-border, #d96c00);
  padding: 3px 9px; border-radius: 999px;
  text-transform: uppercase;
}

/* ═══════════════ SECTION (3-col features) ═══════════════ */
.hh-section { padding: 8px 0; }
.hh-section--alt {
  background: var(--hv-orange-soft, #fff3de);
  border: 1px solid var(--hv-orange-border, #d96c00);
  border-radius: 22px; padding: 32px;
}
.hh-section__head { text-align: center; margin-bottom: 24px; }
.hh-section__head h2 { font-size: clamp(22px, 2.4vw, 28px); margin: 0 0 6px; }
.hh-section__head p { font-size: 14px; color: var(--hv-mute); margin: 0; }

.hh-three {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.hh-three__card {
  background: #fff;
  border: 1px solid var(--hv-border-soft, #f0f1f4);
  border-radius: 16px;
  padding: 24px 22px;
  position: relative; overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hh-three__card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(217,108,0,0.14); }
.hh-three__bg {
  position: absolute; top: -30px; right: -30px;
  width: 100px; height: 100px; border-radius: 50%; opacity: 0.18;
}
.hh-three__bg--orange { background: var(--hv-orange-border, #d96c00); }
.hh-three__bg--blue   { background: var(--hv-accent, #2D7DC6); }
.hh-three__bg--green  { background: #5aa138; }
.hh-three__num {
  font-size: 11px; font-weight: 800; color: var(--hv-orange-border);
  letter-spacing: 2px; margin-bottom: 10px; position: relative; z-index: 1;
}
.hh-three__card h3 { font-size: 17px; margin: 0 0 8px; }
.hh-three__card p { font-size: 13px; line-height: 1.55; color: var(--hv-ink-soft); margin: 0; }

/* ═══════════════ FLOW (4-stap horizontaal) ═══════════════ */
.hh-flow {
  display: flex; justify-content: space-between; align-items: stretch; gap: 8px;
}
.hh-flow__step {
  flex: 1; background: #fff;
  border: 1px solid var(--hv-orange-border, #d96c00);
  border-radius: 14px; padding: 18px 16px; text-align: center;
  box-shadow: 0 4px 12px rgba(217,108,0,0.10);
}
.hh-flow__num {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--hv-orange-top), var(--hv-orange-bottom));
  color: #fff; border-radius: 50%; line-height: 36px;
  font-weight: 800; font-size: 16px; margin: 0 auto 10px;
  box-shadow: 0 3px 10px rgba(255,102,0,0.3);
}
.hh-flow__step h4 { font-size: 14px; margin: 0 0 6px; }
.hh-flow__step p { font-size: 12px; line-height: 1.45; color: var(--hv-ink-soft); margin: 0; }
.hh-flow__arrow {
  align-self: center; font-size: 24px; color: var(--hv-orange-border); font-weight: 800;
  flex-shrink: 0;
}

/* ═══════════════ FINAL CTA ═══════════════ */
.hh-final {
  background: linear-gradient(135deg, var(--hv-orange-top, #ffb74d) 0%, var(--hv-orange-bottom, #ff8a3d) 100%);
  border-radius: 22px; padding: 36px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  color: #fff;
  box-shadow: 0 12px 32px rgba(255,102,0,0.22);
}
.hh-final__copy h2 { font-size: clamp(22px, 2.6vw, 30px); margin: 0 0 6px; color: #fff; }
.hh-final__copy p { font-size: 14px; margin: 0; opacity: 0.92; }
.hh-final .hh-cta {
  background: #fff;
  color: var(--hv-orange-border) !important;
  border-color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.hh-final .hh-cta:hover { background: var(--hv-orange-soft); }

/* ═══════════════ Reduced motion ═══════════════ */
@media (prefers-reduced-motion: reduce) {
  .hh-cl, .hh-flag, .hh-smoke circle, .hh-w--lit, .hh-pix, .hh-heart, .hh-bird, .hh-dot {
    animation: none !important;
  }
}

/* ═══════════════ Mobile ═══════════════ */
@media (max-width: 1024px) {
  .hh-tiles { grid-template-columns: repeat(2, 1fr); }
  .hh-vibes { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .hh-hero { grid-template-columns: 1fr; }
  .hh-grid { grid-template-columns: 1fr; }
  .hh-three { grid-template-columns: 1fr; }
  .hh-flow { flex-direction: column; gap: 12px; }
  .hh-flow__arrow { transform: rotate(90deg); }
  .hh-feat__bullets { grid-template-columns: 1fr; }
  .hh-final { flex-direction: column; text-align: center; }
  .hh-tiles { grid-template-columns: 1fr; }
  .hh-vibes { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .hh-feat__pics { grid-template-columns: 1fr 1fr; }
  .hh-feat__pics .hh-pic:nth-child(3) { display: none; }
  .hh-hero__copy { padding: 24px 22px; }
}
