/* ── NT Group — Main Stylesheet ─────────────────── */
:root {
  --deep-blue: #0A192F;
  --blue-mid:  #0e253a;
  --blue-dark: #0a1e30;
  --soft-gold: #D4AF37;
  --gold2:     #e8c97a;
  --cream:     #F5F5DC;
  --muted:     rgba(245,245,220,.5);
  --radius:    16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--deep-blue);
  min-height: 100vh;
  font-size: 20px;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Cormorant Garamond', serif; font-weight: 300; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* ── NAVIGATION ─────────────────────────────────── */
.nt-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 40px;
  transition: background .3s, transform .3s;
  height: 72px;
}
.nt-nav.scrolled { background: rgba(10,25,47,.95); backdrop-filter: blur(10px); }
.nt-nav.hidden { transform: translateY(-100%); }

.nt-nav-logo img { height: 40px; width: auto; }
.nt-nav-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300;
  color: var(--cream); letter-spacing: 2px;
}

.nt-nav-links { display: flex; gap: 32px; align-items: center; }
.nt-nav-links a {
  color: rgba(245,245,220,.8);
  font-size: 11px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  transition: color .2s;
}
.nt-nav-links a:hover { color: var(--soft-gold); }

.nt-nav-lang { display: flex; gap: 8px; }
.nt-nav-lang button {
  background: none; border: none;
  color: rgba(245,245,220,.5);
  font-size: 10px; letter-spacing: 1px;
  cursor: pointer; transition: color .2s;
  font-family: 'Jost', sans-serif;
}
.nt-nav-lang button.active,
.nt-nav-lang button:hover { color: var(--soft-gold); }

.nt-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nt-hamburger span { width: 24px; height: 1px; background: var(--cream); display: block; transition: .3s; }

/* ── HERO ────────────────────────────────────────── */
.nt-hero {
  min-height: 85vh;
  display: flex; align-items: flex-end;
  background: center/cover no-repeat;
  position: relative;
}
.nt-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,25,47,.6) 0%, rgba(10,25,47,.2) 50%, transparent 100%);
}
.nt-hero-content {
  position: relative; z-index: 1;
  padding: 0 48px 64px;
  max-width: 900px;
}
.nt-hero-content h1 {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--cream); line-height: 1.1; font-weight: 300;
}
.nt-hero-content h1 em { font-style: italic; color: var(--gold2); }
.nt-hero-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 32px;
  border: 1px solid rgba(245,245,220,.5);
  color: var(--cream); padding: 12px 24px;
  border-radius: 8px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  transition: background .2s;
}
.nt-hero-btn:hover { background: rgba(245,245,220,.1); }

/* ── ABOUT ───────────────────────────────────────── */
.nt-about {
  background: var(--cream);
  padding: 96px 24px;
  text-align: center;
}
.nt-about-inner { max-width: 800px; margin: 0 auto; }
.nt-label {
  font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(10,25,47,.5);
  margin-bottom: 20px;
}
.nt-about h2 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--deep-blue); margin-bottom: 8px;
}
.nt-divider {
  width: 48px; height: 2px;
  background: rgba(212,175,55,.6);
  margin: 16px auto 32px; border-radius: 2px;
}
.nt-about p {
  font-size: 18px; line-height: 1.9;
  color: rgba(10,25,47,.85); margin-bottom: 20px;
}
.nt-motto {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 20px;
  margin-top: 32px; color: var(--deep-blue);
}

/* ── DIVISIONS ───────────────────────────────────── */
.nt-divisions { background: var(--cream); padding: 0 8px 16px; }
.nt-divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.nt-tile {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/5;
  display: block;
}
.nt-tile-bg {
  position: absolute; inset: 0;
  background: center/cover no-repeat;
  transition: transform .6s ease;
}
.nt-tile:hover .nt-tile-bg { transform: scale(1.04); }
.nt-tile-overlay {
  position: absolute; inset: 0;
  background: rgba(10,25,47,.38);
  transition: background .3s;
}
.nt-tile:hover .nt-tile-overlay { background: rgba(10,25,47,.50); }
.nt-tile-brand {
  background: linear-gradient(135deg, #0e2030 0%, #1c3046 100%);
  display: flex; align-items: center; justify-content: center;
}
.nt-tile-brand img { height: 80px; width: auto; opacity: .95; }
.nt-tile-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px;
  color: var(--cream);
}
.nt-tile-content h3 { font-size: 26px; font-weight: 300; }
.nt-tile-content p { font-size: 13px; color: var(--soft-gold); margin-top: 6px; }

/* ── CONTACT ─────────────────────────────────────── */
.nt-contact {
  background: var(--deep-blue);
  padding: 80px 24px;
}
.nt-contact-inner { max-width: 640px; margin: 0 auto; }
.nt-contact h2 { font-size: 48px; color: var(--cream); margin-bottom: 8px; }
.nt-contact .nt-label { color: var(--soft-gold); }
.nt-contact .nt-divider { background: rgba(212,175,55,.4); }

.nt-form { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.nt-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nt-field { display: flex; flex-direction: column; gap: 6px; }
.nt-field label {
  font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(245,245,220,.4);
}
.nt-field input, .nt-field textarea, .nt-field select {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(245,245,220,.12);
  border-radius: 10px; padding: 12px 16px;
  color: var(--cream); font-family: 'Jost', sans-serif;
  font-size: 14px; transition: border-color .2s;
  outline: none;
}
.nt-field input:focus, .nt-field textarea:focus {
  border-color: rgba(212,175,55,.5);
}
.nt-field textarea { resize: vertical; min-height: 120px; }
.nt-btn {
  background: var(--soft-gold); color: var(--deep-blue);
  border: none; border-radius: 10px;
  padding: 14px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  cursor: pointer; transition: background .2s; align-self: flex-start;
}
.nt-btn:hover { background: var(--gold2); }
.nt-btn:disabled { opacity: .6; cursor: wait; }

/* ── FOOTER ──────────────────────────────────────── */
.nt-footer {
  background: var(--deep-blue);
  border-top: 1px solid rgba(245,245,220,.08);
  padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.nt-footer p { font-size: 11px; color: rgba(245,245,220,.3); letter-spacing: 1px; }
.nt-footer-links { display: flex; gap: 20px; }
.nt-footer-links a { font-size: 10px; color: rgba(245,245,220,.3); letter-spacing: 1px; transition: color .2s; }
.nt-footer-links a:hover { color: var(--soft-gold); }

/* ── TRAVEL PAGE ─────────────────────────────────── */
.nt-travel-hero {
  height: 55vh; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.nt-travel-hero img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.nt-travel-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14,37,58,.3), rgba(14,37,58,.85));
}
.nt-travel-hero-content { position: relative; z-index: 1; text-align: center; color: var(--cream); }
.nt-travel-hero-content h1 { font-size: 56px; }

.nt-travel-body { background: var(--blue-mid); min-height: 60vh; padding: 48px 24px 80px; }
.nt-travel-body-inner { max-width: 1000px; margin: 0 auto; }
.nt-travel-desc { text-align: center; color: rgba(245,245,220,.7); font-size: 16px; line-height: 1.8; margin-bottom: 48px; }

/* ── HOTEL SEARCH ────────────────────────────────── */
.nt-search-section { margin-bottom: 40px; }
.nt-search-label {
  font-size: 9px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--soft-gold); margin-bottom: 16px;
}
.nt-search-title { font-size: 36px; color: var(--cream); margin-bottom: 4px; }
.nt-search-divider { width: 40px; height: 1px; background: rgba(212,175,55,.4); margin: 12px 0 16px; }
.nt-search-sub { font-size: 13px; color: rgba(245,245,220,.4); margin-bottom: 32px; letter-spacing: .5px; }

.nt-search-form {
  background: rgba(10,30,48,.9);
  border: 1px solid rgba(245,245,220,.1);
  border-radius: var(--radius); padding: 28px;
}
.nt-search-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 12px;
}
.nt-search-grid .span2 { grid-column: span 2; }
.nt-search-field { display: flex; flex-direction: column; gap: 6px; }
.nt-search-field label {
  font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(245,245,220,.4);
}
.nt-search-field select, .nt-search-field input {
  background: var(--blue-dark);
  border: 1px solid rgba(245,245,220,.12);
  border-radius: 10px; padding: 10px 14px;
  color: var(--cream); font-family: 'Jost', sans-serif;
  font-size: 13px; outline: none;
  transition: border-color .2s;
  -webkit-appearance: none; appearance: none;
}
.nt-search-field select:focus, .nt-search-field input:focus {
  border-color: rgba(212,175,55,.5);
}
.nt-search-field select:disabled { opacity: .4; }

.nt-search-btn {
  width: 100%; margin-top: 8px;
  background: var(--soft-gold); color: var(--deep-blue);
  border: none; border-radius: 10px; padding: 14px;
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  cursor: pointer; transition: background .2s;
}
.nt-search-btn:hover { background: var(--gold2); }
.nt-search-btn:disabled { opacity: .6; cursor: wait; }

.nt-search-error {
  background: rgba(220,38,38,.1); border: 1px solid rgba(220,38,38,.3);
  color: #f87171; border-radius: 10px; padding: 12px 16px;
  font-size: 13px; margin-top: 10px;
}

/* Results */
.nt-results-header {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin: 32px 0 20px;
}
.nt-results-title { font-size: 32px; color: var(--cream); }
.nt-results-title span { color: var(--soft-gold); }
.nt-results-nights { font-size: 11px; color: rgba(245,245,220,.3); letter-spacing: 1px; text-transform: uppercase; }

.nt-filters { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.nt-filter-btn {
  padding: 6px 14px; border-radius: 8px;
  border: 1px solid rgba(245,245,220,.2);
  color: rgba(245,245,220,.5);
  font-size: 10px; letter-spacing: 1px;
  background: none; cursor: pointer; transition: all .2s;
  font-family: 'Jost', sans-serif;
}
.nt-filter-btn.active, .nt-filter-btn:hover {
  background: var(--soft-gold); color: var(--deep-blue); border-color: var(--soft-gold);
}
.nt-sort-select {
  background: var(--blue-dark); border: 1px solid rgba(245,245,220,.2);
  color: rgba(245,245,220,.6); border-radius: 8px; padding: 6px 12px;
  font-size: 11px; font-family: 'Jost', sans-serif; outline: none;
}

.nt-hotels-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px;
}
.nt-hotel-card {
  background: var(--blue-dark);
  border: 1px solid rgba(245,245,220,.08);
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; transition: border-color .3s, transform .3s;
}
.nt-hotel-card:hover {
  border-color: rgba(212,175,55,.3);
  transform: translateY(-4px);
}
.nt-hotel-img {
  height: 150px;
  background: linear-gradient(135deg, #0e253a, #1a3a5c);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.nt-hotel-img-star {
  position: absolute; top: 10px; right: 12px;
  background: rgba(10,25,47,.8); color: var(--soft-gold);
  font-size: 10px; padding: 3px 8px; border-radius: 20px;
}
.nt-hotel-body { padding: 16px; }
.nt-hotel-name { font-size: 16px; color: var(--cream); line-height: 1.3; margin-bottom: 4px; }
.nt-hotel-city { font-size: 10px; color: rgba(245,245,220,.35); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.nt-hotel-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.nt-tag {
  font-size: 9px; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 20px;
  background: rgba(212,175,55,.1); color: var(--soft-gold);
}
.nt-hotel-price-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  border-top: 1px solid rgba(245,245,220,.08); padding-top: 12px;
}
.nt-hotel-price { font-size: 24px; color: var(--cream); line-height: 1; }
.nt-hotel-price small { font-size: 11px; color: rgba(245,245,220,.3); display: block; margin-top: 2px; font-family: 'Jost', sans-serif; }
.nt-view-btn {
  font-size: 10px; color: rgba(212,175,55,.6);
  letter-spacing: 1px; text-transform: uppercase;
  background: none; border: none; cursor: pointer;
  transition: color .2s; font-family: 'Jost', sans-serif;
}
.nt-hotel-card:hover .nt-view-btn { color: var(--soft-gold); }

/* Modal */
.nt-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(10,25,47,.8); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 16px;
}
.nt-modal-overlay.active { display: flex; }
.nt-modal {
  background: var(--blue-mid);
  border: 1px solid rgba(245,245,220,.1);
  border-radius: var(--radius); width: 100%; max-width: 520px;
  max-height: 85vh; overflow-y: auto;
}
.nt-modal-header {
  padding: 24px; border-bottom: 1px solid rgba(245,245,220,.08);
  display: flex; align-items: flex-start; justify-content: space-between;
}
.nt-modal-stars { color: var(--soft-gold); font-size: 11px; margin-bottom: 4px; }
.nt-modal-title { font-size: 24px; color: var(--cream); line-height: 1.2; }
.nt-modal-city { font-size: 10px; color: rgba(245,245,220,.35); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.nt-modal-close {
  background: none; border: none; color: rgba(245,245,220,.3);
  font-size: 24px; cursor: pointer; line-height: 1; transition: color .2s;
}
.nt-modal-close:hover { color: var(--cream); }
.nt-modal-body { padding: 24px; }
.nt-modal-rooms-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(245,245,220,.35); margin-bottom: 16px; }
.nt-room-card {
  background: var(--blue-dark); border: 1px solid rgba(245,245,220,.08);
  border-radius: 12px; padding: 16px; margin-bottom: 10px;
}
.nt-room-name { font-size: 13px; color: var(--cream); font-weight: 500; margin-bottom: 6px; }
.nt-room-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.nt-room-price { font-size: 26px; color: var(--cream); margin-bottom: 10px; }
.nt-room-price small { font-size: 11px; color: rgba(245,245,220,.3); font-family: 'Jost',sans-serif; }
.nt-check-btn {
  width: 100%; background: var(--soft-gold); color: var(--deep-blue);
  border: none; border-radius: 8px; padding: 10px;
  font-family: 'Jost', sans-serif; font-size: 10px;
  font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: background .2s;
}
.nt-check-btn:hover { background: var(--gold2); }
.nt-check-btn:disabled { opacity: .5; }
.nt-prebook-result {
  border-radius: 10px; padding: 14px; margin-top: 12px; font-size: 13px;
}
.nt-prebook-result.ok { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); color: #86efac; }
.nt-prebook-result.fail { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3); color: #fca5a5; }
.nt-prebook-price { font-size: 32px; color: var(--cream); margin: 8px 0 4px; }
.nt-modal-contact {
  border-top: 1px solid rgba(245,245,220,.08);
  padding: 16px 24px; text-align: center;
}
.nt-modal-contact p { font-size: 12px; color: rgba(245,245,220,.3); margin-bottom: 12px; }
.nt-modal-contact a {
  display: inline-block;
  border: 1px solid rgba(212,175,55,.4); color: var(--soft-gold);
  padding: 10px 24px; border-radius: 10px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  transition: background .2s;
}
.nt-modal-contact a:hover { background: rgba(212,175,55,.1); }

/* Services grid */
.nt-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 48px 0; }
.nt-service-card {
  background: var(--blue-dark); border: 1px solid rgba(245,245,220,.08);
  border-radius: var(--radius); padding: 24px;
  transition: border-color .2s;
}
.nt-service-card:hover { border-color: rgba(212,175,55,.3); }
.nt-service-icon { font-size: 20px; color: var(--soft-gold); margin-bottom: 14px; }
.nt-service-title { font-size: 20px; color: var(--cream); margin-bottom: 8px; }
.nt-service-desc { font-size: 13px; color: rgba(245,245,220,.45); line-height: 1.7; }

.nt-travel-cta { text-align: center; border-top: 1px solid rgba(245,245,220,.08); padding: 40px 0; }
.nt-travel-cta p { font-size: 13px; color: rgba(245,245,220,.4); margin-bottom: 16px; }
.nt-travel-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(212,175,55,.5); color: var(--soft-gold);
  padding: 12px 28px; border-radius: 10px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  transition: background .2s;
}
.nt-travel-cta a:hover { background: rgba(212,175,55,.1); }

/* Spinner */
@keyframes spin { to { transform: rotate(360deg); } }
.nt-spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(10,25,47,.3);
  border-top-color: var(--deep-blue);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: inline-block; vertical-align: middle; margin-right: 6px;
}

/* Mobile */
@media(max-width: 900px) {
  .nt-search-grid { grid-template-columns: 1fr 1fr; }
  .nt-search-grid .span2 { grid-column: span 2; }
  .nt-hotels-grid { grid-template-columns: 1fr 1fr; }
  .nt-divisions-grid { grid-template-columns: 1fr 1fr; }
  .nt-services-grid { grid-template-columns: 1fr; }
}
@media(max-width: 600px) {
  .nt-nav { padding: 16px 20px; }
  .nt-nav-links { display: none; }
  .nt-hamburger { display: flex; }
  .nt-hero-content { padding: 0 20px 40px; }
  .nt-search-grid { grid-template-columns: 1fr; }
  .nt-search-grid .span2 { grid-column: span 1; }
  .nt-hotels-grid { grid-template-columns: 1fr; }
  .nt-divisions-grid { grid-template-columns: 1fr; }
  .nt-footer { flex-direction: column; align-items: flex-start; }
}

/* ── BOOKING ACTIONS ─────────────────────────────── */
.nt-room-actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px;
}
.nt-btn-reserve, .nt-btn-pay {
  padding: 10px; border-radius: 8px; border: none;
  font-family: 'Jost', sans-serif; font-size: 11px;
  font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: all .2s;
}
.nt-btn-reserve {
  background: transparent;
  border: 1px solid rgba(212,175,55,.5);
  color: var(--soft-gold);
}
.nt-btn-reserve:hover { background: rgba(212,175,55,.1); }
.nt-btn-pay {
  background: var(--soft-gold);
  color: var(--deep-blue);
}
.nt-btn-pay:hover { background: var(--gold2); }

/* ── BOOKING FORM ────────────────────────────────── */
.nt-booking-form {
  background: rgba(10,25,47,.6);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 12px; padding: 20px; margin-top: 10px;
}
.nt-form-title {
  font-size: 14px; font-weight: 500;
  color: var(--cream); margin-bottom: 4px;
}
.nt-form-sub { font-size: 12px; color: rgba(245,245,220,.4); margin-bottom: 16px; }
.nt-form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.nt-fi { display: flex; flex-direction: column; gap: 5px; margin-bottom: 10px; }
.nt-fi label {
  font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(245,245,220,.4);
}
.nt-fi input, .nt-fi textarea {
  background: var(--blue-dark);
  border: 1px solid rgba(245,245,220,.12);
  border-radius: 8px; padding: 10px 12px;
  color: var(--cream); font-family: 'Jost', sans-serif;
  font-size: 13px; outline: none; transition: border-color .2s;
}
.nt-fi input:focus, .nt-fi textarea:focus { border-color: rgba(212,175,55,.5); }
.nt-fi textarea { resize: vertical; min-height: 70px; }

.nt-stripe-input {
  background: var(--blue-dark);
  border: 1px solid rgba(245,245,220,.12);
  border-radius: 8px; padding: 12px;
  transition: border-color .2s;
}
.nt-stripe-input.StripeElement--focus { border-color: rgba(212,175,55,.5); }

.nt-form-btns { display: flex; gap: 8px; margin-top: 14px; }
.nt-btn-submit {
  flex: 1; background: var(--soft-gold); color: var(--deep-blue);
  border: none; border-radius: 8px; padding: 12px;
  font-family: 'Jost', sans-serif; font-size: 11px;
  font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: background .2s;
}
.nt-btn-submit:hover { background: var(--gold2); }
.nt-btn-submit:disabled { opacity: .6; cursor: wait; }
.nt-btn-cancel {
  background: transparent; border: 1px solid rgba(245,245,220,.15);
  color: rgba(245,245,220,.4); border-radius: 8px; padding: 12px 16px;
  font-family: 'Jost', sans-serif; font-size: 11px; cursor: pointer;
  transition: all .2s;
}
.nt-btn-cancel:hover { border-color: rgba(245,245,220,.4); color: var(--cream); }
.nt-form-msg { font-size: 12px; margin-top: 8px; min-height: 18px; }

.nt-success-box {
  background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3);
  color: #86efac; border-radius: 10px; padding: 16px;
  font-size: 13px; line-height: 1.7; text-align: center;
}
.nt-success-box strong { color: var(--cream); font-size: 15px; display: block; margin: 6px 0; }
.nt-success-box small { color: rgba(134,239,172,.7); font-size: 11px; }

/* ── FOOTER FULL ─────────────────────────────────── */
.nt-footer-full {
  background: var(--deep-blue);
  border-top: 1px solid rgba(245,245,220,.08);
  padding: 48px 40px 32px;
  text-align: center;
}
.nt-footer-members { margin-bottom: 28px; }
.nt-footer-members-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245,245,220,.4);
  margin-bottom: 16px;
}
.nt-footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.nt-footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  opacity: .85;
  transition: opacity .2s;
}
.nt-footer-logo:hover { opacity: 1; }
.nt-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  margin-bottom: 20px;
}
.nt-footer-nav a {
  font-size: 11px;
  color: rgba(245,245,220,.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color .2s;
}
.nt-footer-nav a:hover { color: var(--soft-gold); }
.nt-footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.nt-footer-social a {
  color: rgba(245,245,220,.4);
  transition: color .2s;
}
.nt-footer-social a:hover { color: var(--soft-gold); }
.nt-footer-copy {
  font-size: 12px;
  color: rgba(245,245,220,.3);
  letter-spacing: .5px;
}

/* ── LEGAL PAGES ─────────────────────────────────── */
.nt-legal {
  background: var(--cream);
  min-height: 100vh;
  padding: 120px 24px 80px;
}
.nt-legal-inner {
  max-width: 800px;
  margin: 0 auto;
}
.nt-legal h1 {
  font-size: 48px;
  color: var(--deep-blue);
  margin-bottom: 8px;
  text-align: center;
}
.nt-legal .nt-divider { margin: 16px auto 40px; }
.nt-legal h2 {
  font-size: 24px;
  color: var(--deep-blue);
  margin: 32px 0 12px;
}
.nt-legal p, .nt-legal li {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(10,25,47,.75);
  margin-bottom: 12px;
}
.nt-legal ul { padding-left: 24px; margin-bottom: 16px; }
.nt-legal a { color: var(--deep-blue); text-decoration: underline; }
.nt-legal .nt-updated {
  font-size: 12px;
  color: rgba(10,25,47,.4);
  margin-bottom: 32px;
  text-align: center;
}
