:root {
  --hh2-bg: #f4fcff;
  --hh2-surface: #dff7fd;
  --hh2-surface-soft: #edf9fc;
  --hh2-surface-strong: #cff1f8;
  --hh2-card: rgba(255, 255, 255, 0.92);
  --hh2-card-strong: #ffffff;
  --hh2-primary: #00343e;
  --hh2-primary-soft: #7fdbe9;
  --hh2-primary-soft-2: #a7ecf6;
  --hh2-secondary: #ff7bb6;
  --hh2-secondary-soft: #ffd2e7;
  --hh2-text: #00343e;
  --hh2-text-soft: #53757d;
  --hh2-outline: rgba(0, 52, 62, 0.08);
  --hh2-shadow: 0 18px 44px rgba(0, 52, 62, 0.08);
  --hh2-shadow-lg: 0 32px 64px rgba(0, 52, 62, 0.12);
  --hh2-radius-md: 1.5rem;
  --hh2-radius-lg: 2rem;
  --hh2-radius-xl: 2.75rem;
  --hh2-radius-hero: 3rem;
  --hh2-radius-pill: 999px;
}

html {
  scroll-behavior: smooth;
}

body.hh2-page {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(167, 236, 246, 0.72), transparent 26%),
    radial-gradient(circle at 92% 12%, rgba(255, 210, 231, 0.78), transparent 18%),
    linear-gradient(180deg, #fcfeff 0%, var(--hh2-bg) 40%, #ffffff 100%);
  color: var(--hh2-text);
  font-family: "Be Vietnam Pro", sans-serif;
}

body.hh2-page.modal-open {
  padding-right: 0 !important;
}

.hh2-site {
  overflow-x: clip;
}

.hh2-site a {
  color: inherit;
  text-decoration: none;
}

.hh2-frame {
  position: relative;
  z-index: 1;
}

.hh2-section,
.hh2-hero-shell,
#story,
#packages,
#reviews,
#contact {
  scroll-margin-top: 112px;
}

.hh2-topbar-shell {
  position: fixed;
  inset: 20px 0 auto;
  z-index: 30;
}

.hh2-topbar {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--hh2-radius-pill);
  box-shadow: 0 12px 32px rgba(0, 52, 62, 0.08);
}

.hh2-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.hh2-brand-mark {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.hh2-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.hh2-brand-copy strong {
  font-size: 1.08rem;
  font-weight: 800;
}

.hh2-brand-copy span {
  margin-top: 4px;
  color: var(--hh2-text-soft);
  font-size: 0.92rem;
}

.hh2-menu-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 0;
}

.hh2-nav,
.hh2-toolbar,
.hh2-language-switch,
.hh2-proof-row,
.hh2-contact-list,
.hh2-footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hh2-nav {
  flex-wrap: wrap;
  justify-content: center;
}

.hh2-nav a,
.hh2-language-switch a {
  color: var(--hh2-text-soft);
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.hh2-nav a:hover,
.hh2-language-switch a:hover,
.hh2-footer-block a:hover {
  color: var(--hh2-primary);
  transform: translateY(-1px);
}

.hh2-language-switch {
  padding: 4px;
  background: rgba(167, 236, 246, 0.42);
  border-radius: var(--hh2-radius-pill);
}

.hh2-language-switch a {
  padding: 8px 12px;
  border-radius: var(--hh2-radius-pill);
}

.hh2-language-switch a.is-active {
  color: var(--hh2-primary);
  background: #fff;
}

.hh2-phone-chip,
.hh2-btn,
.hh2-control-pill,
.hh2-gallery-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--hh2-radius-pill);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.hh2-phone-chip {
  padding: 12px 18px;
  background: #fff;
  box-shadow: var(--hh2-shadow);
  font-weight: 800;
  white-space: nowrap;
}

.hh2-btn {
  padding: 15px 24px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  cursor: pointer;
}

.hh2-btn:hover,
.hh2-phone-chip:hover,
.hh2-control-pill:hover,
.hh2-footer-social a:hover,
.hh2-gallery-tile:hover {
  transform: translateY(-2px);
}

.hh2-btn-primary {
  color: #f3feff;
  background: var(--hh2-primary);
  box-shadow: 0 16px 36px rgba(0, 52, 62, 0.18);
}

.hh2-btn-primary:link,
.hh2-btn-primary:visited,
.hh2-btn-primary:hover,
.hh2-btn-primary:focus-visible,
.hh2-btn-primary:active {
  color: #f3feff;
}

.hh2-btn-secondary,
.hh2-control-pill {
  color: var(--hh2-primary);
  background: #fff;
  box-shadow: var(--hh2-shadow);
}

.hh2-btn-package {
  width: 100%;
  margin-top: auto;
  color: var(--hh2-primary);
  background: rgba(167, 236, 246, 0.4);
  box-shadow: none;
}

.hh2-btn-package:hover {
  background: rgba(167, 236, 246, 0.56);
}

.hh2-menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--hh2-shadow);
}

.hh2-menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--hh2-text);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.hh2-hero-shell {
  position: relative;
  padding: 164px 0 80px;
}

.hh2-hero-copy h1,
.hh2-heading h2,
.hh2-contact-copy h2,
.hh2-modal-title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--hh2-text);
}

.hh2-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 5vw, 5.75rem);
  line-height: 0.94;
}

.hh2-premium-pill,
.hh2-section-label,
.hh2-floating-pill,
.hh2-package-badge,
.hh2-gallery-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  border-radius: var(--hh2-radius-pill);
}

.hh2-premium-pill {
  margin-bottom: 20px;
  padding: 12px 18px;
  color: var(--hh2-primary);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--hh2-shadow);
}

.hh2-section {
  padding: 60px 0;
}

.hh2-section-surface {
  padding-top: 10px;
}

.hh2-about-shell {
  padding: 88px 32px 32px;
  background: var(--hh2-surface-soft);
  border-radius: 4rem 4rem 2.5rem 2.5rem;
}

.hh2-heading {
  margin-bottom: 32px;
}

.hh2-heading-centered {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.hh2-heading-compact {
  margin-bottom: 0;
}

.hh2-heading h2,
.hh2-contact-copy h2 {
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  line-height: 1.02;
}

.hh2-section-label {
  margin-bottom: 18px;
  color: var(--hh2-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.hh2-section-label::before {
  width: 22px;
  height: 2px;
  border-radius: var(--hh2-radius-pill);
  background: currentColor;
  content: "";
}

.hh2-lead,
.hh2-copy,
.hh2-stage-caption span,
.hh2-proof-copy span,
.hh2-package-body p,
.hh2-review-card p,
.hh2-review-author span,
.hh2-contact-item span,
.hh2-footer-copy {
  color: var(--hh2-text-soft);
  line-height: 1.8;
}

.hh2-lead {
  max-width: 54ch;
  margin: 24px 0 0;
  font-size: 1.06rem;
}

.hh2-copy {
  margin: 18px 0 0;
  font-size: 1.02rem;
}

.hh2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hh2-proof-row {
  margin-top: 28px;
  justify-content: flex-start;
}

.hh2-proof-avatars {
  display: flex;
  padding-left: 10px;
}

.hh2-proof-avatars img {
  width: 54px;
  height: 54px;
  margin-left: -10px;
  border: 4px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--hh2-shadow);
}

.hh2-proof-copy strong,
.hh2-stage-caption strong,
.hh2-package-topline h3,
.hh2-review-author strong,
.hh2-footer-block a,
.hh2-contact-item span {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.hh2-proof-copy strong {
  font-size: 1.06rem;
  font-weight: 800;
}

.hh2-hero-stage {
  position: relative;
  min-height: 620px;
}

.hh2-stage-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
}

.hh2-stage-glow-cyan {
  top: 42px;
  left: 48px;
  width: 380px;
  height: 380px;
  background: rgba(127, 219, 233, 0.68);
}

.hh2-stage-glow-pink {
  right: 16px;
  bottom: 84px;
  width: 220px;
  height: 220px;
  background: rgba(255, 123, 182, 0.32);
}

.hh2-stage-card {
  position: absolute;
  top: 30px;
  left: 84px;
  right: 56px;
  overflow: hidden;
  background: var(--hh2-card-strong);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--hh2-radius-hero);
  box-shadow: var(--hh2-shadow-lg);
  transform: rotate(10deg);
}

.hh2-stage-media {
  position: relative;
}

.hh2-stage-image {
  display: block;
  width: 100%;
  aspect-ratio: 0.92 / 1;
  object-fit: cover;
}

.hh2-video-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84px;
  height: 84px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--hh2-primary);
  font-size: 1.1rem;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 36px rgba(0, 52, 62, 0.16);
}

.hh2-stage-caption {
  padding: 24px 26px 28px;
  background: #fff;
}

.hh2-stage-caption strong {
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.35;
}

.hh2-floating-pill {
  position: absolute;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--hh2-shadow);
}

.hh2-floating-pill-top {
  top: 24px;
  right: 40px;
}

.hh2-floating-pill-bottom {
  left: 24px;
  bottom: 84px;
}

.hh2-floating-pill i {
  color: var(--hh2-primary);
}

.hh2-feature-card,
.hh2-package-card,
.hh2-review-card,
.hh2-social-card,
.hh2-contact-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--hh2-outline);
  border-radius: var(--hh2-radius-lg);
  box-shadow: var(--hh2-shadow);
}

.hh2-feature-card {
  padding: 28px 24px;
  text-align: left;
}

.hh2-feature-icon,
.hh2-contact-item i,
.hh2-review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hh2-feature-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #ffffff, rgba(167, 236, 246, 0.7));
  border-radius: 1.4rem;
  color: var(--hh2-primary);
  font-size: 1.2rem;
  box-shadow: var(--hh2-shadow);
}

.hh2-feature-card h3 {
  margin: 0 0 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
}

.hh2-feature-card p {
  margin: 0;
  color: var(--hh2-text-soft);
  line-height: 1.75;
}

.hh2-packages-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.hh2-package-controls {
  display: flex;
  gap: 12px;
}

.hh2-control-pill {
  width: 52px;
  height: 52px;
  color: var(--hh2-primary);
}

.hh2-package-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hh2-package-card.is-featured {
  transform: translateY(-12px);
  box-shadow: 0 28px 56px rgba(0, 52, 62, 0.16);
}

.hh2-package-media {
  position: relative;
}

.hh2-package-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.96;
  object-fit: cover;
}

.hh2-package-badge,
.hh2-gallery-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 10px 14px;
  color: #8b2b58;
  background: rgba(255, 255, 255, 0.92);
}

.hh2-package-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
}

.hh2-package-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.hh2-package-topline h3 {
  flex: 1 1 180px;
  min-width: 0;
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.hh2-price-pill {
  flex-shrink: 0;
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px;
  background: rgba(167, 236, 246, 0.45);
  border-radius: var(--hh2-radius-pill);
  font-weight: 800;
  color: var(--hh2-primary);
  white-space: normal;
}

.hh2-package-body p {
  margin: 0;
}

.hh2-package-features {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hh2-package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--hh2-text-soft);
}

.hh2-package-features i {
  margin-top: 3px;
  color: var(--hh2-secondary);
  font-size: 0.84rem;
}

.hh2-review-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.96);
}

.hh2-review-stars {
  display: flex;
  gap: 6px;
  color: var(--hh2-secondary);
  font-size: 0.9rem;
}

.hh2-review-card p {
  margin: 0;
  font-size: 1rem;
}

.hh2-review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.hh2-review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 210, 231, 0.72);
  color: #8b2b58;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.hh2-review-author strong {
  font-size: 0.98rem;
  font-weight: 800;
}

.hh2-social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
}

.hh2-social-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.hh2-social-card strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
}

.hh2-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.hh2-gallery-tile {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 0;
  border-radius: 2rem;
  box-shadow: var(--hh2-shadow);
}

.hh2-gallery-tile.is-featured {
  grid-column: span 2;
}

.hh2-gallery-tile img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hh2-section-contact {
  padding-bottom: 80px;
}

.hh2-contact-shell {
  padding: 38px;
  background: rgba(220, 246, 251, 0.8);
  border-radius: var(--hh2-radius-xl);
}

.hh2-contact-copy {
  padding: 18px 6px 18px 4px;
}

.hh2-contact-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.hh2-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hh2-contact-item i {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 1rem;
  background: #fff;
  color: var(--hh2-primary);
  box-shadow: var(--hh2-shadow);
}

.hh2-contact-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
}

.hh2-contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hh2-form-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--hh2-text);
}

.hh2-form-control {
  border: 1px solid rgba(0, 52, 62, 0.1);
  border-radius: 1.1rem;
  padding: 16px 18px;
  color: var(--hh2-text);
  background: #fff;
  box-shadow: none;
}

.hh2-form-control:focus {
  border-color: rgba(127, 219, 233, 0.9);
  box-shadow: 0 0 0 0.2rem rgba(127, 219, 233, 0.18);
}

.hh2-form-textarea {
  min-height: 150px;
  resize: vertical;
}

.hh2-submit {
  width: 100%;
}

.hh2-form-status {
  min-height: 24px;
  font-size: 0.95rem;
  font-weight: 600;
}

.hh2-form-status.is-error {
  color: #b03763;
}

.hh2-form-status.is-success {
  color: #0d6763;
}

.hh2-footer {
  padding: 0 0 54px;
}

.hh2-brand-footer {
  margin-bottom: 18px;
}

.hh2-footer-copy {
  max-width: 46ch;
  margin: 0;
}

.hh2-footer-block {
  display: grid;
  gap: 12px;
}

.hh2-footer-block a {
  font-weight: 700;
}

.hh2-footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--hh2-shadow);
}

.hh2-video-modal {
  max-height: calc(100vh - 2rem);
  overflow: hidden;
  border: 0;
  border-radius: var(--hh2-radius-lg);
  background: rgba(244, 252, 255, 0.98);
}

#hh2VideoModal .modal-dialog {
  max-width: min(1100px, calc(100vw - 1.5rem));
  margin: 1rem auto;
}

#hh2VideoModal .modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hh2-video-player {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 9rem);
  border-radius: 24px;
  background: #0a2228;
  object-fit: contain;
}

@media (max-width: 1199px) {
  .hh2-stage-card {
    left: 54px;
    right: 28px;
  }

  .hh2-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .hh2-topbar-shell {
    inset: 14px 0 auto;
  }

  .hh2-topbar {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 1.8rem;
  }

  .hh2-menu-toggle {
    display: inline-flex;
  }

  .hh2-menu-panel {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding-top: 8px;
  }

  .hh2-topbar.is-open .hh2-menu-panel {
    display: flex;
  }

  .hh2-topbar.is-open .hh2-menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hh2-topbar.is-open .hh2-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .hh2-topbar.is-open .hh2-menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hh2-nav,
  .hh2-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .hh2-nav a,
  .hh2-phone-chip {
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 1rem;
  }

  .hh2-hero-shell {
    padding-top: 132px;
  }

  .hh2-hero-copy h1 {
    max-width: none;
  }

  .hh2-hero-stage {
    min-height: auto;
    padding: 28px 0 84px;
  }

  .hh2-stage-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
  }

  .hh2-stage-glow-cyan {
    left: 8px;
    top: 12px;
    width: 260px;
    height: 260px;
  }

  .hh2-stage-glow-pink {
    right: -6px;
    bottom: 26px;
    width: 170px;
    height: 170px;
  }

  .hh2-floating-pill-top {
    top: 0;
    right: 0;
  }

  .hh2-floating-pill-bottom {
    left: 0;
    bottom: 0;
  }

  .hh2-about-shell,
  .hh2-contact-shell {
    padding: 72px 22px 22px;
    border-radius: 2.5rem;
  }

  .hh2-packages-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hh2-package-card.is-featured {
    transform: none;
  }

  .hh2-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hh2-gallery-tile.is-featured {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .hh2-brand-mark {
    width: 52px;
    height: 52px;
  }

  .hh2-brand-copy strong {
    font-size: 1rem;
  }

  .hh2-hero-shell {
    padding-bottom: 56px;
  }

  .hh2-section {
    padding: 48px 0;
  }

  .hh2-premium-pill,
  .hh2-floating-pill,
  .hh2-package-badge,
  .hh2-gallery-pill {
    font-size: 0.84rem;
  }

  .hh2-proof-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hh2-stage-caption {
    padding: 20px 20px 24px;
  }

  .hh2-package-topline {
    flex-direction: column;
  }

  .hh2-contact-card {
    padding: 22px;
  }
}

@media (max-width: 575px) {
  .hh2-topbar {
    padding: 10px 12px;
  }

  .hh2-menu-toggle {
    width: 46px;
    height: 46px;
  }

  .hh2-hero-shell {
    padding-top: 124px;
  }

  .hh2-proof-avatars img {
    width: 48px;
    height: 48px;
  }

  .hh2-floating-pill {
    padding: 12px 14px;
  }

  .hh2-gallery-grid {
    grid-template-columns: 1fr;
  }

  .hh2-gallery-tile.is-featured {
    grid-column: auto;
  }
}
