/* NearbyTables — layout/visual overhaul (style only; no feature changes) */
:root {
  --nt-primary: #b91c1c;
  --nt-primary-hover: #991b1b;
  --nt-primary-dark: #7f1d1d;
  --nt-primary-light: #fef2f2;
  --nt-accent: #0f766e;
  --nt-accent-hover: #0d9488;
  --nt-accent-light: #f0fdfa;
  --nt-star: #eab308;
  --nt-dark: #0b1220;
  --nt-text: #1e293b;
  --nt-text-light: #475569;
  --nt-text-muted: #64748b;
  --nt-border: #cbd5e1;
  --nt-border-light: #e2e8f0;
  --nt-bg: #f1f5f9;
  --nt-bg-alt: #e8eef5;
  --nt-bg-warm: #dde7f0;
  --nt-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --nt-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  --nt-shadow-md: 0 14px 36px rgba(15, 23, 42, 0.12);
  --nt-shadow-lg: 0 24px 48px rgba(15, 23, 42, 0.14);
  --nt-shadow-primary: 0 10px 28px rgba(185, 28, 28, 0.22);
  --nt-radius-sm: 4px;
  --nt-radius: 6px;
  --nt-radius-lg: 10px;
  --nt-radius-xl: 14px;
  --nt-radius-pill: 9999px;
  --nt-sans: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --nt-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --nt-header-h: 68px;
}

body.nt-body {
  font-family: var(--nt-sans);
  background:
    radial-gradient(900px 420px at 90% -10%, rgba(185, 28, 28, 0.08), transparent 55%),
    linear-gradient(180deg, #e8eef5 0%, var(--nt-bg) 32%, #f8fafc 100%);
  color: var(--nt-text);
}

h1, h2, h3, .nt-section-title, .nt-hero-content h1 {
  font-family: var(--nt-serif);
  letter-spacing: -0.02em;
}

/* Venue titles: clean US sans (avoid heavy serif on listing pages) */
.nt-place-info h1,
.nt-venue-section h2,
.nt-venue-heading {
  font-family: var(--nt-sans);
  letter-spacing: -0.02em;
}

.nt-container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Header: solid by default; transparent over home hero */
.nt-header {
  background: rgba(250, 250, 249, 0.96) !important;
  border-bottom: 1px solid var(--nt-border-light);
  backdrop-filter: blur(12px);
}
body.nt-home .nt-header.transparent:not(.scrolled) {
  background: transparent !important;
  border-bottom-color: transparent;
  backdrop-filter: none;
}
body.nt-home .nt-header.transparent:not(.scrolled) .nt-nav > li > a,
body.nt-home .nt-header.transparent:not(.scrolled) .nt-nav-toggle,
body.nt-home .nt-header.transparent:not(.scrolled) .nt-logo-text {
  color: #fff !important;
}
body.nt-home .nt-header.transparent:not(.scrolled) .nt-nav > li > a.active::after,
body.nt-home .nt-header.transparent:not(.scrolled) .nt-nav > li > a:hover::after {
  background: #fff;
}
.nt-header .nt-nav > li > a,
.nt-header .nt-nav-toggle {
  color: var(--nt-dark) !important;
}
.nt-header .nt-logo img {
  max-height: 36px;
  width: auto;
  background: transparent !important;
  border-radius: 0;
  box-shadow: none;
}
.nt-logo img {
  background: transparent !important;
}

.btn-nt-primary {
  border-radius: 10px !important;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.btn-nt-outline {
  border-radius: 10px !important;
  font-weight: 650;
}

/* HOME HERO */
.nt-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nt-header-h) + 2.5rem) 0 4.5rem;
  overflow: hidden;
}
.nt-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.nt-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  animation: nt-hero- ken 18s ease-out forwards;
  filter: saturate(1.05) contrast(1.04);
}
@keyframes nt-hero-ken {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.nt-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(12, 10, 9, 0.88) 0%, rgba(12, 10, 9, 0.62) 42%, rgba(12, 10, 9, 0.22) 72%, rgba(12, 10, 9, 0.35) 100%),
    linear-gradient(0deg, rgba(12, 10, 9, 0.82) 0%, transparent 42%);
}
.nt-hero .nt-container {
  position: relative;
  z-index: 1;
  width: 100%;
}
.nt-hero-content {
  max-width: 40rem;
  color: #fff;
  animation: nt-hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes nt-hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
body.nt-body .nt-hero h1,
.nt-hero-content h1 {
  color: #fff !important;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 650;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.nt-hero-brand {
  margin: 0 0 0.85rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}
.nt-hero-brand::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3px;
  margin-top: 0.75rem;
  border-radius: 2px;
  background: var(--nt-primary, #d35400);
}
.nt-hero-subtitle {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  line-height: 1.65;
  max-width: 32rem;
  margin: 0 0 1.75rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
}
.nt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: nt-hero-rise 1s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.nt-hero .btn-nt-primary {
  min-height: 48px;
  padding: 0.7rem 1.5rem;
  box-shadow: 0 8px 24px rgba(211, 84, 0, 0.35);
}
.btn-nt-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.4rem;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.btn-nt-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  color: #fff !important;
  transform: translateY(-1px);
}
.nt-hero-kicker { display: none; }
.nt-hero-search {
  margin-top: 1.5rem;
  background: #fff;
  border-radius: 10px;
  padding: 0.45rem;
  box-shadow: var(--nt-shadow-lg);
}
.nt-hero-search .form-control {
  border: 0;
  box-shadow: none;
  background: transparent;
  font-size: 0.95rem;
}
.nt-hero-search .btn-search {
  background: var(--nt-primary);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 0.75rem 1.15rem;
  font-weight: 700;
}
.nt-hero-chips {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.nt-hero-chip {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  color: #fff !important;
  border-radius: 999px !important;
  backdrop-filter: blur(4px);
}

/* Stats as slim rail under hero */
.nt-stat-strip {
  background: var(--nt-dark);
  color: #e2e8f0;
  padding: 1.1rem 0;
  border: 0;
  margin: 0;
}
.nt-stat-value {
  color: #fff;
  font-family: var(--nt-serif);
  font-size: 1.55rem;
}
.nt-stat-label {
  color: #94a3b8;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-padding {
  padding: 3.75rem 0;
}
.nt-section-label {
  color: var(--nt-primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.nt-section-title {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  color: var(--nt-dark);
}
.nt-section-subtitle {
  color: var(--nt-text-light);
}

/* Category: text list row instead of icon-card grid vibe */
.nt-cat-card {
  background: #fff;
  border: 1px solid var(--nt-border-light);
  border-radius: 10px;
  padding: 1.1rem 0.85rem;
  text-align: left;
  box-shadow: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.nt-cat-card:hover {
  border-color: var(--nt-primary);
  transform: translateY(-2px);
  box-shadow: var(--nt-shadow-sm);
}
.nt-cat-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  margin-bottom: 0.65rem;
}

/* Place cards — vertical photo tiles */
a.nt-place-card,
.nt-place-card {
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  gap: 0 !important;
  align-items: stretch !important;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: 14px;
  overflow: hidden !important;
  height: 100%;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 2px rgba(28, 25, 23, 0.04);
  transform: none !important;
  transition: border-color 0.2s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.nt-place-card:hover {
  border-color: rgba(211, 84, 0, 0.35);
  box-shadow: 0 12px 28px rgba(28, 25, 23, 0.1);
  transform: translateY(-3px) !important;
}
.nt-place-card-img {
  position: relative !important;
  overflow: hidden !important;
  aspect-ratio: 4 / 3 !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: #e7e5e4;
}
.nt-place-card-img img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transform: scale(1.01) !important;
  transition: transform 0.45s ease;
}
.nt-place-card:hover .nt-place-card-img img {
  transform: scale(1.06) !important;
}
.nt-place-card-badges {
  position: absolute;
  left: 0.55rem;
  top: 0.55rem;
  right: auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}
.nt-place-card-body {
  min-width: 0 !important;
  padding: 0.95rem 1rem 1.1rem !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.25rem;
  flex: 1;
}
.nt-place-card-title {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.25;
  margin: 0;
  color: var(--nt-dark);
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nt-place-card-address {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--nt-text-light);
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 575.98px) {
  a.nt-place-card,
  .nt-place-card {
    grid-template-columns: none !important;
  }
  .nt-place-card-img {
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
  }
  .nt-place-card-img img {
    position: absolute !important;
  }
  .nt-place-card-body {
    padding: 0.8rem 0.85rem 0.95rem !important;
  }
  .nt-place-card-title {
    font-size: 0.98rem;
  }
}

/* Destinations — sharper tile, less rounded overlay clone */
.nt-dest-card {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.nt-dest-card-overlay {
  background: linear-gradient(0deg, rgba(11, 18, 32, 0.85), transparent 55%);
}

/* Trust / feature — flat panels */
.nt-trust-card,
.nt-feature-card,
.nt-story-card,
.nt-guide-card,
.nt-collection-card {
  border-radius: 8px;
  border: 1px solid var(--nt-border-light);
  box-shadow: none;
  background: #fff;
}
.nt-trust-icon,
.nt-feature-icon,
.nt-story-icon {
  border-radius: 8px;
}

.bg-warm { background: var(--nt-bg-warm) !important; }
.bg-alt { background: var(--nt-bg-alt) !important; }

.nt-cta {
  background: linear-gradient(135deg, #0b1220 0%, #1e293b 55%, #7f1d1d 130%) !important;
  color: #fff;
}
.nt-cta .nt-section-title,
.nt-cta .nt-section-label,
.nt-cta p { color: #fff !important; }
.nt-cta .btn-nt-outline {
  color: #fff !important;
  border-color: rgba(255,255,255,0.55) !important;
}
.nt-cta .btn-nt-outline:hover {
  background: #fff !important;
  color: var(--nt-dark) !important;
}

.nt-footer {
  background: #0b1220 !important;
}

/* VENUE — full-bleed hero mosaic (spotsrated pattern) */
.nt-venue-page {
  background: #f8fafc;
}
.nt-place-mosaic {
  margin: 0;
  padding: 0;
}
.nt-photo-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 420px;
  min-height: 0;
  max-height: none;
  border-radius: 0;
  overflow: hidden;
}
.nt-photo-grid-main {
  grid-row: 1 / span 2;
}
.nt-photo-grid-main img,
.nt-photo-grid-side img {
  border-radius: 0 !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nt-photo-grid.nt-photo-grid-single {
  grid-template-columns: 1fr !important;
  grid-template-rows: 1fr !important;
  height: 380px !important;
}
.nt-photo-grid.nt-photo-grid-single .nt-photo-grid-main {
  grid-row: auto !important;
  grid-column: auto !important;
}

.nt-place-info {
  background: #fff;
  border-bottom: 1px solid var(--nt-border-light);
  padding: 1.25rem 0;
}
.nt-place-info h1 {
  font-family: var(--nt-sans) !important;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  margin: 0.25rem 0 0.5rem;
  line-height: 1.2;
}
.nt-venue-section h2,
.nt-venue-heading {
  font-family: var(--nt-sans) !important;
}
.nt-tab-nav {
  background: #fff;
  border-bottom: 1px solid var(--nt-border-light);
  position: sticky;
  top: var(--nt-header-h);
  z-index: 30;
}
.nt-tab-nav-link.active {
  color: var(--nt-primary);
  border-bottom-color: var(--nt-primary);
}
.nt-venue-section h2 {
  border-left: 3px solid var(--nt-primary);
  padding-left: 0.65rem;
  font-size: 1.35rem;
}
.nt-menu-list li {
  border-bottom-style: solid;
  border-color: var(--nt-border-light);
}
.nt-side-card {
  border-radius: 8px;
  border: 1px solid var(--nt-border-light);
  box-shadow: none;
}

@media (max-width: 767.98px) {
  .nt-photo-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 240px 112px !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    gap: 3px;
  }
  .nt-photo-grid-main {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
  }
  .nt-photo-grid-side {
    display: block !important;
  }
}

/* ========== MOBILE POLISH (home + subdomain) ========== */
@media (max-width: 991.98px) {
  :root {
    --nt-header-h: 60px;
  }

  .nt-container {
    width: min(1120px, calc(100% - 1.25rem));
  }

  .nt-header .nt-container {
    padding-block: 0.55rem;
  }

  .nt-header-cta .btn-nt-primary {
    padding: 0.45rem 0.7rem;
    font-size: 0.8rem;
  }

  .section-padding {
    padding: 2.5rem 0;
  }

  .nt-section-header {
    margin-bottom: 1.25rem !important;
  }

  .nt-section-title {
    font-size: 1.55rem;
  }
}

@media (max-width: 767.98px) {
  /* Home hero */
  .nt-hero {
    min-height: 82vh;
    padding: calc(var(--nt-header-h) + 1.5rem) 0 2.5rem;
    align-items: flex-end;
  }

  .nt-hero-bg::after {
    background:
      linear-gradient(180deg, rgba(12, 10, 9, 0.45) 0%, rgba(12, 10, 9, 0.72) 45%, rgba(12, 10, 9, 0.92) 100%);
  }

  body.nt-body .nt-hero h1,
  .nt-hero-content h1 {
    font-size: clamp(2.15rem, 9vw, 2.75rem);
  }

  .nt-hero-brand {
    font-size: 1.25rem;
  }

  .nt-hero-subtitle {
    font-size: 1rem;
    line-height: 1.55;
  }

  .nt-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nt-hero-actions .btn-nt-primary,
  .nt-hero-actions .btn-nt-ghost {
    width: 100%;
    justify-content: center;
  }

  .nt-hero-search {
    margin-top: 1.15rem;
    padding: 0.55rem;
    border-radius: 12px;
  }

  .nt-hero-search form {
    gap: 0.45rem !important;
  }

  .nt-hero-search .form-control {
    min-height: 46px;
    font-size: 16px; /* avoid iOS zoom */
    background: #f8fafc;
    border-radius: 8px;
    padding: 0.65rem 0.8rem;
  }

  .nt-hero-search .input-divider {
    display: none !important;
  }

  .nt-hero-search .btn-search {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    border-radius: 10px;
  }

  .nt-hero-chips {
    gap: 0.4rem;
    margin-top: 0.85rem;
  }

  .nt-hero-chip {
    font-size: 0.8rem;
    padding: 0.4rem 0.7rem;
  }

  /* Stats */
  .nt-stat-strip {
    padding: 0.95rem 0;
  }

  .nt-stat-value {
    font-size: 1.25rem;
  }

  .nt-stat-label {
    font-size: 0.68rem;
  }

  /* Cards / grids */
  .nt-cat-card {
    padding: 0.9rem 0.75rem;
  }

  .nt-place-card-title {
    font-size: 1.02rem;
  }

  .nt-dest-card {
    aspect-ratio: 3/4;
  }

  .nt-cta {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .nt-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }

  .nt-cta-buttons .btn-nt-primary,
  .nt-cta-buttons .btn-nt-outline {
    width: 100%;
    justify-content: center;
  }

  .nt-footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .nt-footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem 0.9rem;
  }

  /* Venue subdomain */
  body.nt-venue-page .nt-venue-main {
    padding-top: var(--nt-header-h);
  }

  .nt-photo-grid-btn {
    font-size: 0.78rem;
    padding: 0.4rem 0.65rem;
    bottom: 0.55rem;
    right: 0.55rem;
  }

  .nt-place-info {
    padding: 1.1rem 0 1rem;
  }

  .nt-place-info h1 {
    font-size: 1.55rem;
    line-height: 1.15;
  }

  .nt-breadcrumb-sm {
    font-size: 0.78rem;
    margin-bottom: 0.35rem;
  }

  .nt-place-info-tags {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.9rem;
  }

  .nt-place-info-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.85rem;
  }

  .nt-place-info-actions .btn-nt-primary,
  .nt-place-info-actions .btn-nt-outline {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    font-size: 0.88rem;
  }

  .nt-tab-nav {
    top: var(--nt-header-h);
  }

  .nt-tab-nav-inner {
    gap: 0.15rem;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nt-tab-nav-link {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0.85rem 0.7rem;
    font-size: 0.82rem;
  }

  .nt-tab-nav-link i {
    display: none;
  }

  .nt-venue-section {
    margin-bottom: 2.25rem;
    padding-bottom: 2rem;
  }

  .nt-venue-section h2 {
    font-size: 1.2rem;
    margin-bottom: 0.95rem;
  }

  .nt-gallery-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.4rem !important;
  }

  .nt-amenity-pills {
    gap: 0.4rem;
  }

  .nt-amenity-pill {
    font-size: 0.78rem;
    padding: 0.35rem 0.6rem;
  }

  .nt-menu-list li {
    flex-wrap: wrap;
    gap: 0.25rem 0.75rem;
    padding: 0.7rem 0;
    font-size: 0.92rem;
  }

  .nt-side-card {
    margin-top: 0.5rem;
  }

  .nt-venue-footer {
    padding: 2rem 0 1.25rem;
    text-align: left;
  }
}

@media (max-width: 575.98px) {
  .nt-hero {
    min-height: 72vh;
  }

  .nt-place-card {
    /* keep vertical photo tiles on mobile */
  }

  .nt-place-card-img {
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
  }

  .nt-photo-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: 250px !important;
    height: auto !important;
  }

  .nt-photo-grid-side {
    display: none !important;
  }

  .nt-photo-grid-main {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .nt-place-info-actions {
    grid-template-columns: 1fr;
  }

  .nt-stat-strip .col-6 {
    margin-bottom: 0.35rem;
  }
}

/* Safe areas (notched phones) */
@supports (padding: max(0px)) {
  .nt-header .nt-container,
  .nt-tab-nav-inner,
  .nt-place-info .nt-container,
  .nt-hero .nt-container {
    padding-left: max(0.75rem, env(safe-area-inset-left));
    padding-right: max(0.75rem, env(safe-area-inset-right));
  }
}

/* NearbyTables extras */
.section-alt { background: var(--nt-bg-alt, #f4f2ee); }
.nt-why-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 12px;
  padding: 1.5rem;
  height: auto;
}
.row > [class*="col-"] > .nt-why-card {
  height: 100%;
}
.nt-note-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  height: auto !important;
}
.nt-why-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 64, 46, 0.12);
  color: var(--nt-primary, #c4402e);
  font-weight: 700;
  margin-bottom: .75rem;
}
.nt-cta-band { max-width: 36rem; margin: 0 auto; }
.nt-plain-list { padding-left: 1.1rem; line-height: 1.7; }
.nt-plain-list li { margin-bottom: .65rem; }
.nt-form .form-control {
  border-radius: 8px;
  padding: .7rem .9rem;
}
.nt-dest-card {
  display: block;
  position: relative;
  min-height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(11,18,32,.75), rgba(196,64,46,.55)),
    url('/images/destination-1.jpg') center/cover;
  color: #fff;
  text-decoration: none;
}
.nt-dest-card:nth-child(5n+2), .col-6:nth-child(2) .nt-dest-card { background-image: linear-gradient(160deg, rgba(11,18,32,.75), rgba(196,64,46,.55)), url('/images/destination-2.jpg'); }
.nt-dest-card:nth-child(5n+3), .col-6:nth-child(3) .nt-dest-card { background-image: linear-gradient(160deg, rgba(11,18,32,.75), rgba(196,64,46,.55)), url('/images/destination-3.jpg'); }
.nt-dest-card:nth-child(5n+4), .col-6:nth-child(4) .nt-dest-card { background-image: linear-gradient(160deg, rgba(11,18,32,.75), rgba(196,64,46,.55)), url('/images/destination-4.jpg'); }
.nt-dest-card:nth-child(5n+5), .col-6:nth-child(5) .nt-dest-card { background-image: linear-gradient(160deg, rgba(11,18,32,.75), rgba(196,64,46,.55)), url('/images/destination-5.jpg'); }
.nt-dest-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}
.nt-dest-card-overlay h3 { color: #fff; font-size: 1.15rem; margin: 0 0 .25rem; }
.nt-dest-card-overlay span { color: rgba(255,255,255,.85); font-size: .9rem; }
.nt-logo-text { font-weight: 700; color: var(--nt-dark, #0b1220); letter-spacing: -.01em; }
.nt-header.transparent .nt-logo-text { color: #fff; }
.nt-header.scrolled .nt-logo-text,
.nt-header:not(.transparent) .nt-logo-text { color: var(--nt-dark, #0b1220); }
