.home-new-page {
  --hn-surface: #0a0a0a;
  --hn-surface-alt: #080808;
  --hn-surface-deep: #050505;
  --hn-surface-rich: #030303;
  --hn-surface-card: #161616;
  --hn-surface-ink: #050505;
  --hn-silver: #c0c0c0;
  --hn-text-dark: #0a0a0a;

  background-color: var(--hn-surface);
  color: #fff;
  overflow-x: hidden;
}

.home-new-page * {
  box-sizing: border-box;
}

.hn-section-heading {
  margin-bottom: 3rem;
}

/* ── Navigation ── */
.hn-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.25rem 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.hn-nav.is-scrolled {
  background: rgba(26, 26, 26, 0.95);
  padding: 0.75rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}

.hn-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hn-logo img {
  height: 58px;
  width: auto;
  cursor: pointer;
  transition: opacity 0.3s;
}

.hn-logo img:hover {
  opacity: 0.85;
}

.hn-menu-toggle {
  display: none;
  background: none;
  border: 1px solid #c0c0c0;
  color: #c0c0c0;
  font-size: 1.25rem;
  padding: 0.4rem 0.65rem;
  border-radius: 4px;
}

.hn-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hn-links a {
  color: #fff;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.hn-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #c0c0c0;
  transition: width 0.3s ease;
}

.hn-links a:hover::after,
.hn-links a.is-active::after {
  width: 100%;
}

.hn-links a:hover,
.hn-links a.is-active {
  color: #c0c0c0;
}

.hn-book-btn {
  border: 1px solid #c0c0c0;
  color: #c0c0c0 !important;
  padding: 0.55rem 1.25rem !important;
  transition: background 0.3s, color 0.3s !important;
}

.hn-book-btn::after {
  display: none !important;
}

.hn-book-btn:hover {
  background: var(--hn-silver);
  color: var(--hn-text-dark) !important;
}

/* ── Hero ── */
.hn-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hn-hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hn-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hn-hero.has-video .hn-hero-video.is-playing {
  opacity: 1;
}

.hn-hero.has-video .hn-hero-poster {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hn-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(47, 47, 47, 0.35) 45%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.hn-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  max-width: 920px;
}

.hn-hero-eyebrow {
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #c0c0c0;
  margin-bottom: 1.25rem;
}

.hn-hero-title {
  font-family: "Jost-Bold", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #c0c0c0;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hn-hero-sub {
  font-family: "Lato", sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #fff;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hn-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hn-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: condensedhand-webfont, sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: all 0.35s ease;
  border: 1px solid transparent;
}

.hn-btn-primary {
  background: var(--hn-silver);
  color: var(--hn-text-dark);
  border-color: var(--hn-silver);
}

.hn-btn-primary:hover {
  background: transparent;
  color: var(--hn-silver);
}

.hn-btn-outline {
  background: transparent;
  color: var(--hn-silver);
  border-color: var(--hn-silver);
}

.hn-btn-outline:hover {
  background: var(--hn-silver);
  color: var(--hn-text-dark);
}

.hn-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #c0c0c0;
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: hnBounce 2s infinite;
}

.hn-scroll-hint i {
  font-size: 1rem;
}

@keyframes hnBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Section commons ── */
.hn-section {
  padding: 6rem 0;
  position: relative;
  border-top: 1px solid rgba(192, 192, 192, 0.06);
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.hn-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hn-section-label {
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c0c0c0;
  margin-bottom: 0.75rem;
}

.hn-section-title {
  font-family: "Jost-Bold", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #c0c0c0;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hn-divider {
  width: 80px;
  height: 1px;
  background: #c0c0c0;
  margin: 1.5rem auto;
}

.hn-divider-left {
  margin-left: 0;
}

/* ── Intro ── */
.hn-intro {
  background: var(--hn-surface);
  border-top: none;
}

.hn-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.hn-intro .booking_text {
  text-align: left;
  padding-top: 0;
  margin-bottom: 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.35;
}

.hn-intro-text p {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* ── Pillars ── */
.hn-pillars {
  background: var(--hn-surface-alt);
}

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

.hn-pillar {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--hn-surface-card);
  border: 1px solid rgba(192, 192, 192, 0.12);
  transition: border-color 0.4s, transform 0.4s, background 0.4s;
}

.hn-pillar:hover {
  border-color: var(--hn-silver);
  background: var(--hn-surface-deep);
  transform: translateY(-6px);
}

.hn-pillar-icon {
  font-size: 2rem;
  color: #c0c0c0;
  margin-bottom: 1.25rem;
}

.hn-pillar h4 {
  font-family: "Jost-Bold", sans-serif;
  color: #c0c0c0;
  font-size: 1.5rem !important;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.hn-pillar p {
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.7;
}

/* ── Explore cards ── */
.hn-explore {
  background: var(--hn-surface-deep);
}

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

.hn-explore-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.hn-explore-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.hn-explore-card:hover img {
  transform: scale(1.08);
}

.hn-explore-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transition: background 0.4s;
}

.hn-explore-card:hover .hn-explore-card-overlay {
  background: linear-gradient(to top, rgba(26, 26, 26, 0.92) 0%, rgba(0, 0, 0, 0.4) 70%);
}

.hn-explore-card h4 {
  font-family: "Jost-Bold", sans-serif;
  color: #c0c0c0;
  font-size: 1.35rem !important;
  margin: 0;
  text-transform: uppercase;
}

.hn-explore-card span {
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  color: #fff;
  letter-spacing: 0.1em;
  margin-top: 0.35rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}

.hn-explore-card:hover span {
  opacity: 1;
  transform: translateY(0);
}

/* ── Gallery mosaic ── */
.hn-gallery {
  background: var(--hn-surface);
}

.hn-gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1080px;
  margin: 0 auto;
}

.hn-gallery-item {
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  aspect-ratio: 500 / 490;
  background: var(--hn-surface-deep);
  border: 1px solid rgba(192, 192, 192, 0.1);
}

.hn-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.hn-gallery-item:hover img {
  transform: scale(1.04);
}

.hn-gallery-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── Dual experience ── */
.hn-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  content-visibility: auto;
  contain-intrinsic-size: auto 480px;
}

.hn-dual-panel {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
}

.hn-dual-panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.hn-dual-panel:hover .hn-dual-panel-bg {
  transform: scale(1.06);
}

.hn-dual-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
  transition: background 0.4s;
}

.hn-dual-panel:hover::before {
  background: rgba(0, 0, 0, 0.68);
}

.hn-dual-content {
  position: relative;
  z-index: 2;
  padding: 3rem;
  width: 100%;
}

.hn-dual-content h3 {
  font-family: "Jost-Bold", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  color: #c0c0c0;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hn-dual-content p {
  font-family: "Lato", sans-serif;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
  max-width: 320px;
}

.hn-dual-link {
  font-family: "Lato", sans-serif;
  color: #c0c0c0;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hn-dual-rooms .hn-dual-panel-bg {
  background-image: url("../2025/DSC01530 (2) (1).jpg");
}

.hn-dual-pub .hn-dual-panel-bg {
  background-image: url("../2025/DSC01323.jpg");
}

/* ── Testimonials ── */
.hn-testimonials {
  background: var(--hn-surface-alt);
}

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

.hn-testimonial {
  padding: 2rem;
  background: var(--hn-surface-card);
  border: 1px solid rgba(192, 192, 192, 0.12);
  text-align: center;
}

.hn-testimonial img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid #c0c0c0;
}

.hn-testimonial p {
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1rem;
}

.hn-testimonial h5 {
  font-family: "Jost-Bold", sans-serif;
  color: #c0c0c0;
  font-size: 1.1rem !important;
}

/* ── Hours strip ── */
.hn-hours {
  background: var(--hn-surface-rich);
  padding: 4.5rem 0;
  border-top: 1px solid rgba(192, 192, 192, 0.08);
}

.hn-hours-title {
  text-align: center;
  padding-top: 0;
  margin-bottom: 0.5rem;
  font-size: clamp(2rem, 4vw, 2.75rem) !important;
}

.hn-hours .hn-divider {
  margin-bottom: 2.5rem;
}

.hn-hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.hn-hours-block h4 {
  font-family: "Jost-Bold", sans-serif;
  color: #c0c0c0;
  font-size: 1.25rem !important;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.hn-hours-block p {
  font-family: "Lato", sans-serif;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* ── Final CTA ── */
.hn-cta {
  background:
    linear-gradient(rgba(5, 5, 5, 0.92), rgba(10, 10, 10, 0.95)),
    url("../new_image/492753928.jpg") center/cover no-repeat;
  text-align: center;
  padding: 7rem 1.5rem;
  border-top: none;
}

.hn-cta h2 {
  font-family: "Jost-Bold", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #c0c0c0;
  margin-bottom: 1rem;
}

.hn-cta p {
  font-family: "Lato", sans-serif;
  color: #fff;
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ── Text-only slide reveal ── */
.hn-text-slide {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: calc(var(--hn-delay, 0s));
}

.hn-text-slide[data-hn-slide="left"] {
  transform: translateX(-28px);
}

.hn-text-slide[data-hn-slide="right"] {
  transform: translateX(28px);
}

.hn-text-slide.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.hn-text-slide[data-hn-delay="0.08"] { --hn-delay: 0.08s; }
.hn-text-slide[data-hn-delay="0.1"] { --hn-delay: 0.1s; }
.hn-text-slide[data-hn-delay="0.12"] { --hn-delay: 0.12s; }
.hn-text-slide[data-hn-delay="0.2"] { --hn-delay: 0.2s; }
.hn-text-slide[data-hn-delay="0.24"] { --hn-delay: 0.24s; }
.hn-text-slide[data-hn-delay="0.28"] { --hn-delay: 0.28s; }
.hn-text-slide[data-hn-delay="0.36"] { --hn-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .hn-text-slide {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── Reveal animation ── */
.hn-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hn-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile offcanvas override ── */
.hn-offcanvas .offcanvas-header {
  background: var(--hn-surface-rich);
}

.hn-offcanvas .offcanvas-body {
  background: var(--hn-surface-rich);
}

.hn-offcanvas .menu_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hn-offcanvas .menu_item {
  display: block;
  color: #fff;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(192, 192, 192, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hn-offcanvas .menu_item.active,
.hn-offcanvas .menu_item:hover {
  color: #c0c0c0;
}

/* Hide duplicate opening times in global footer on home-new */
body:has(.home-new-page) .section8-booking {
  display: none !important;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .hn-menu-toggle { display: block; }
  .hn-links { display: none; }

  .hn-intro-grid,
  .hn-pillars-grid,
  .hn-explore-grid,
  .hn-hours-grid,
  .hn-dual {
    grid-template-columns: 1fr;
  }

  .hn-explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hn-gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
  }

  .hn-dual { min-height: auto; }
  .hn-dual-panel { min-height: 360px; }
}

@media (max-width: 575px) {
  .hn-explore-grid { grid-template-columns: 1fr; }
  .hn-gallery-mosaic {
    grid-template-columns: 1fr;
    max-width: 490px;
  }
  .hn-hero-actions { flex-direction: column; align-items: center; }
  .hn-btn { width: 100%; max-width: 280px; justify-content: center; }
}
