:root {
  --primary-50: #fef2f2;
  --primary-100: #fee2e2;
  --primary-400: #f87171;
  --primary-500: #ef4444;
  --primary-600: #dc2626;
  --primary-700: #b91c1c;
  --neutral-300: #d4d4d4;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-900: #171717;
  --neutral-950: #0a0a0a;
  --gray-50: #f9fafb;
  --gray-200: #e5e7eb;
  --gray-700: #374151;
  --gray-900: #111827;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --yellow-400: #facc15;
  --radius: 0.5rem;
  --header-h: 96px;
  --container: 80rem;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--gray-900);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.hn-container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.hn-center { text-align: center; }

/* Buttons — match .btn / .btn-primary */
.hn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hn-btn--primary {
  background: var(--primary-500);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}

.hn-btn--primary:hover {
  background: rgba(239, 68, 68, 0.9);
  transform: translateY(-0.125rem);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
}

.hn-btn--hero {
  margin-top: 2.5rem;
  padding: 1rem 2rem;
  font-size: 1.25rem;
}

.hn-btn--hero span {
  display: inline-block;
  margin-inline: 3rem;
  font-weight: 700;
}

.hn-btn--header {
  white-space: nowrap;
  font-weight: 600;
}

.hn-btn--google {
  background: var(--blue-600);
  color: #fff;
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  width: 100%;
}

.hn-btn--google:hover { background: var(--blue-700); }

.hn-btn--gallery {
  background: var(--primary-600);
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
}

.hn-btn--gallery:hover { background: var(--primary-700); transform: none; }
.hn-btn--gallery svg { width: 1.25rem; height: 1.25rem; transition: transform 0.3s; }
.hn-btn--gallery:hover svg { transform: translateX(0.25rem); }

/* Header — fixed white h-24 */
.hn-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  height: var(--header-h);
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
  transition: box-shadow 0.3s;
}

.hn-header.is-scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.hn-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.hn-logo {
  width: 120px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  transition: transform 0.2s;
}

.hn-logo:hover { transform: scale(1.05); }

.hn-logo__badge {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(185, 28, 28, 0.35);
  position: absolute;
  left: 0;
  top: -20px;
}

.hn-logo__text {
  margin-left: 72px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.hn-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hn-nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hn-nav__list a {
  position: relative;
  font-weight: 500;
  color: #1f2937;
  transition: color 0.2s;
}

.hn-nav__list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--primary-500);
  transition: width 0.2s;
}

.hn-nav__list a:hover,
.hn-nav__list .current-menu-item > a { color: var(--primary-500); }

.hn-nav__list a:hover::after,
.hn-nav__list .current-menu-item > a::after { width: 100%; }

.hn-nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  background: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.hn-nav-toggle span {
  width: 18px; height: 2px;
  background: #111;
  border-radius: 2px;
}

/* Hero — full viewport video-like */
.hn-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-h);
  color: #fff;
  overflow: hidden;
  text-align: center;
  background: #525252;
}

.hn-hero__media,
.hn-hero__poster,
.hn-hero__shade {
  position: absolute;
  inset: 0;
}

.hn-hero__poster {
  background:
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.35)),
    radial-gradient(circle at 30% 40%, #7f1d1d 0%, transparent 45%),
    radial-gradient(circle at 70% 60%, #991b1b 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.15'/%3E%3C/svg%3E"),
    linear-gradient(160deg, #292524 0%, #450a0a 50%, #171717 100%);
  background-size: cover;
  background-position: center;
}

.hn-hero__poster[style*="background-image"] {
  background-size: cover;
  background-position: center;
}

.hn-hero__shade {
  background: rgba(0,0,0,.4);
}

.hn-hero__content {
  position: relative;
  z-index: 1;
  padding: 2rem 1rem 4rem;
  max-width: 56rem;
}

.hn-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
}

.hn-hero__subtitle {
  margin: 0 auto 0;
  max-width: 42rem;
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 500;
  color: rgba(255,255,255,.95);
}

/* Section headings — text-primary-600 large */
.hn-block { padding: 2.5rem 0 1.5rem; }

.hn-heading {
  margin: 0 0 1.5rem;
  color: var(--primary-600);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
}

.hn-lead {
  margin: 0 auto;
  max-width: 56rem;
  color: var(--neutral-600);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.625;
}

.hn-lead p + p { margin-top: 0.75rem; }

.hn-note {
  color: var(--neutral-500);
  font-size: 0.95rem;
}

.hn-note__label {
  font-weight: 600;
  color: var(--neutral-600);
}

/* Packages — dark red rounded-3xl cards */
.hn-packages { padding: 2rem 0 1rem; }

.hn-package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.hn-package {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 24rem;
  padding: 1.75rem 1rem;
  border-radius: 1.5rem;
  background: var(--primary-700);
  color: #fff;
}

.hn-package__watermark {
  position: absolute;
  right: 0.75rem;
  bottom: 0.25rem;
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,.045);
  pointer-events: none;
  user-select: none;
  font-variant-numeric: tabular-nums;
}

.hn-package__inner {
  position: relative;
  z-index: 1;
  width: 83.333%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hn-package__head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hn-package__rule {
  width: 2rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,.3);
  margin-bottom: 1.25rem;
}

.hn-package__icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
  margin-bottom: 0.25rem;
}

.hn-package__icon svg { width: 1.75rem; height: 1.75rem; }

.hn-package__head h3 {
  margin: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.hn-package__body { flex: 1; margin: 0.5rem 0; }
.hn-package__body--center { text-align: center; line-height: 1.625; }

.hn-package__body p { margin: 0; }
.hn-package__body p + p { margin-top: 0.125rem; }

.hn-price {
  display: inline;
  font-size: 1.25rem;
  font-weight: 900;
  margin-right: 0.25rem;
}

.hn-package__body span { font-size: 0.875rem; font-weight: 400; }

.hn-min { margin-top: 0.5rem !important; font-size: 0.875rem; font-weight: 600; }
.hn-min span { font-weight: 400; }

.hn-fine {
  margin-top: 0.75rem !important;
  font-size: 0.75rem;
  color: rgba(255,255,255,.9);
}

.hn-choose { font-weight: 600; margin-bottom: 0.75rem !important; }

.hn-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.375rem;
}

.hn-pills span {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 400;
}

.hn-pills span.is-upgrade,
.hn-pills span:has(em) {
  background: rgba(255,255,255,.2);
}

.hn-pills em {
  font-style: normal;
  margin-left: 0.25rem;
}

.hn-included {
  margin-top: 0.75rem !important;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,.2);
  font-size: 0.75rem;
}

.hn-addon-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.9;
  margin-bottom: 0.375rem !important;
}

.hn-divider {
  border: 0;
  border-top: 1px solid rgba(255,255,255,.15);
  margin: 0.75rem 0;
}

.hn-state-box {
  margin-top: 1rem;
  background: rgba(0,0,0,.2);
  border-radius: 1rem;
  padding: 0.75rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
}

.hn-state-box summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,.8);
  margin-bottom: 0.625rem;
}

.hn-state-box summary::-webkit-details-marker { display: none; }

.hn-state-box ul {
  display: grid;
  gap: 0.375rem;
}

.hn-state-box li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  color: rgba(255,255,255,.7);
}

.hn-state {
  flex-shrink: 0;
  font-weight: 600;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  padding: 0.125rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.6875rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.hn-more-states {
  margin-top: 0.625rem;
  width: 100%;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.4);
  font-size: 0.5625rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: underline dashed;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,.2);
}

.hn-more-states:hover { color: rgba(255,255,255,.65); }

/* Map */
.hn-map {
  margin-top: 2rem;
  margin-bottom: 2rem;
  min-height: 360px;
  border-radius: 0.75rem;
  background:
    linear-gradient(135deg, rgba(239,68,68,.08), transparent 40%),
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(0,0,0,.03) 29px),
    repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(0,0,0,.03) 29px),
    var(--gray-50);
  border: 1px solid var(--gray-200);
}

.hn-map__inner {
  min-height: 360px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.75rem;
  text-align: center;
  color: var(--neutral-600);
}

/* Reviews */
.hn-reviews-panel {
  background: var(--gray-50);
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
  overflow: hidden;
}

@media (min-width: 640px) {
  .hn-reviews-panel { padding: 1.5rem; }
  .hn-btn--google { width: auto; }
}

.hn-reviews-panel__top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hn-reviews-panel__top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.hn-google-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hn-google-logo { width: 2rem; height: 2rem; }
.hn-google-brand strong { font-size: 1.25rem; font-weight: 500; color: var(--gray-900); }

.hn-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  color: var(--yellow-400);
  line-height: 1;
}

.hn-stars span { font-size: 1.05rem; }
.hn-stars--lg { margin-bottom: 1rem; gap: 0.15rem; }
.hn-stars--lg span { font-size: 1.25rem; }
.hn-stars--lg em {
  margin-left: 0.5rem;
  font-style: normal;
  font-weight: 700;
  color: var(--gray-900);
}

.hn-reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(85vw, 85vw);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.hn-reviews-track::-webkit-scrollbar { display: none; }

@media (min-width: 640px) {
  .hn-reviews-track {
    grid-auto-columns: minmax(280px, 320px);
  }
}

.hn-review-card {
  scroll-snap-align: center;
  background: #fff;
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--gray-200);
}

.hn-review-card__top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hn-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fca5a5, #dc2626);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.hn-review-card p {
  color: var(--gray-700);
  font-size: 0.875rem;
  line-height: 1.625;
}

/* Gallery */
.hn-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
}

@media (min-width: 768px) {
  .hn-gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.hn-gallery-tile {
  margin: 0;
  aspect-ratio: 1 / 1;
  border-radius: 0.5rem;
  display: grid;
  place-items: end start;
  padding: 0.75rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
}

.hn-gallery-tile--1 { background: linear-gradient(145deg, #7f1d1d, #450a0a); }
.hn-gallery-tile--2 { background: linear-gradient(145deg, #991b1b, #7f1d1d); }
.hn-gallery-tile--3 { background: linear-gradient(145deg, #b91c1c, #7f1d1d); }
.hn-gallery-tile--4 { background: linear-gradient(145deg, #292524, #1c1917); }

.hn-gallery-tile.has-image {
  background-size: cover;
  background-position: center;
  color: transparent;
}

.hn-gallery-cta {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Newsletter — bg-red-600 */
.hn-newsletter {
  padding: 4rem 0;
  background: #dc2626;
  color: #fff;
}

.hn-newsletter__inner {
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
}

.hn-newsletter h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
}

.hn-newsletter p { margin: 0 0 2rem; }

.hn-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .hn-newsletter__form { flex-direction: row; }
  .hn-newsletter__form input { flex: 1; }
}

.hn-newsletter__form input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font: inherit;
  background: #fff;
  color: #111;
}

.hn-newsletter__form input:focus {
  outline: 2px solid rgba(255,255,255,.5);
  border-color: transparent;
}

.hn-newsletter__form button {
  border: 0;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #fff;
  color: #dc2626;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.hn-newsletter__form button:hover { background: rgba(255,255,255,.9); }

/* Footer */
.hn-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom right, var(--neutral-900), var(--neutral-950), var(--neutral-900));
  color: #fff;
}

.hn-footer__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hn-footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}

@media (min-width: 768px) {
  .hn-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .hn-footer__grid { grid-template-columns: repeat(3, 1fr); }
}

.hn-footer__title h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hn-footer__bar {
  display: block;
  width: 3rem;
  height: 0.25rem;
  border-radius: 999px;
  background: linear-gradient(to right, var(--primary-500), var(--primary-600));
  margin-bottom: 1.5rem;
}

.hn-footer__links {
  display: grid;
  gap: 0.75rem;
}

.hn-footer__links a {
  color: var(--neutral-300);
  font-size: 0.875rem;
  font-weight: 500;
  width: fit-content;
  position: relative;
  transition: color 0.3s;
}

.hn-footer__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: linear-gradient(to right, var(--primary-400), var(--primary-500));
  transition: width 0.3s;
}

.hn-footer__links a:hover { color: var(--primary-400); }
.hn-footer__links a:hover::after { width: 100%; }

.hn-footer__links small {
  margin-left: 0.25rem;
  opacity: 0.7;
}

.hn-footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.08);
}

.hn-footer__bottom-inner {
  min-height: 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: rgba(255,255,255,.6);
  font-size: 0.875rem;
}

.hn-footer__bottom-inner a:hover { color: var(--primary-400); }

/* Animations */
@keyframes slideUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.animate-slide-up {
  animation: slideUp 0.5s ease-in-out both;
}

/* Inner page leftovers */
.page-shell { padding: 7rem 0 4rem; min-height: 50vh; }
.page-hero {
  padding: 8rem 0 2rem;
  background: linear-gradient(180deg, var(--primary-50), #fff);
  border-bottom: 1px solid var(--gray-200);
}
.page-hero__title {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary-600);
}
.page-hero__lead { margin: 0; color: var(--neutral-600); font-size: 1.1rem; }
.page-title { margin: 0 0 1.25rem; font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; }
.page-content { max-width: 72ch; color: #374151; }

.menu-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.menu-price-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  padding: 1.4rem;
  text-align: center;
}
.menu-price-card .price {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--primary-600);
}
.faq-list { display: grid; gap: 0.75rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 0.85rem;
  padding: 0.95rem 1.1rem;
}
.faq-item summary { cursor: pointer; font-weight: 700; }
.faq-item p { margin-top: 0.75rem; color: var(--neutral-600); }
.contact-form, .package-card {
  display: grid;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  padding: 1.25rem;
}
.contact-form label { display: grid; gap: 0.35rem; font-weight: 600; font-size: 0.92rem; }
.contact-form input, .contact-form textarea {
  border: 1px solid var(--gray-200);
  border-radius: 0.65rem;
  padding: 0.75rem 0.9rem;
  font: inherit;
}
.chip-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip-list li {
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.88rem;
}
.chip-list .tag { color: var(--primary-600); font-weight: 700; }
.addon-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px dashed var(--gray-200);
}
.section { padding: 3rem 0; }
.section-title { margin: 0 0 0.75rem; font-size: 1.6rem; font-weight: 800; color: var(--primary-600); }
.section-lead { color: var(--neutral-600); }
.fineprint { color: var(--neutral-500); font-size: 0.88rem; }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.area-check { background: var(--neutral-950); color: #fff; }
.area-check .section-lead { color: rgba(255,255,255,.75); }
.area-check__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2rem; align-items: center; }
.map-placeholder {
  min-height: 320px;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.12);
  background: #171412;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.35rem;
  padding: 1.5rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.gallery-item {
  margin: 0;
  aspect-ratio: 1;
  border-radius: 0.75rem;
  display: grid;
  place-items: end start;
  padding: 0.85rem;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(140deg, #7f1d1d, #450a0a);
}
.newsletter-form { display: flex; gap: 0.6rem; }
.newsletter-form input {
  flex: 1;
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  padding: 0.8rem 1rem;
  font: inherit;
}

/* Responsive */
@media (max-width: 1024px) {
  .hn-package-grid,
  .package-grid,
  .menu-price-grid,
  .area-check__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .hn-nav-toggle { display: inline-flex; }

  .hn-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
  }

  .hn-nav.is-open { display: flex; }

  .hn-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .hn-btn--header { width: 100%; }
  .hn-btn--hero span { margin-inline: 1.5rem; }
}

@media (max-width: 560px) {
  .hn-logo__text { display: none; }
  .hn-hero { min-height: 85vh; }
}