:root {
  --navy: #1a2b3c;
  --forest: #2c4a3e;
  --gold: #c9a84c;
  --gold-lt: #e8c97a;
  --cream: #f5f0e8;
  --white: #ffffff;
  --text: #2a2a2a;
  --muted: #6b7280;
  --border: rgba(201, 168, 76, 0.25);
}

.nbk-section,
.nbk-section * {
  box-sizing: border-box;
}

.nbk-section {
  position: relative;
  padding: 100px 80px;
  font-family: 'Jost', sans-serif;
}

.nbk-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.nbk-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.nbk-section-eyebrow,
.nbk-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.nbk-title-lg,
.nbk-title-xl {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.12;
  margin: 0;
}

.nbk-title-lg {
  font-size: clamp(38px, 4vw, 58px);
  color: var(--navy);
}

.nbk-title-lg em {
  font-style: italic;
  color: var(--forest);
}

.nbk-title-xl {
  font-size: clamp(52px, 6vw, 82px);
  color: var(--white);
}

.nbk-title-xl em {
  font-style: italic;
  color: var(--gold-lt);
}

.nbk-body,
.nbk-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}

.nbk-divider {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}

.nbk-btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.nbk-btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 16px 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nbk-btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

.nbk-btn-outline {
  background: transparent;
  color: var(--white);
  padding: 15px 36px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.nbk-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.nbk-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nbk-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  padding-top: 0;
  padding-bottom: 0;
}

.nbk-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.45;
}

.nbk-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26, 43, 60, 0.95) 0%, rgba(26, 43, 60, 0.6) 50%, rgba(44, 74, 62, 0.3) 100%);
}

.nbk-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 80px 140px;
}

.nbk-sub {
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.nbk-price {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold-lt);
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 2px;
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}

.nbk-price span {
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  opacity: 0.7;
}

.nbk-hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: rgba(44, 74, 62, 0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  z-index: 2;
}

.nbk-stat {
  flex: 1;
  padding: 22px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.nbk-stat:last-child {
  border-right: none;
}

.nbk-stat span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.nbk-stat small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nbk-intro {
  background: var(--cream);
}

.nbk-intro-media {
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.nbk-intro-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.nbk-intro-media span {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--navy);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 18px;
  font-weight: 600;
}

.nbk-collections {
  background: var(--navy);
}

.nbk-collections .nbk-title-lg {
  color: var(--white);
}

.nbk-collections .nbk-title-lg em {
  color: var(--gold-lt);
}

.nbk-collections .nbk-body {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
}

.nbk-collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.nbk-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}

.nbk-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.75);
}

.nbk-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.6);
}

.nbk-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 43, 60, 0.95) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}

.nbk-card-overlay small {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
  order: -1;
}

.nbk-card-overlay strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}

.nbk-lifestyle {
  background: var(--white);
}

.nbk-lifestyle-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
}

.nbk-lifestyle-images img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 2px;
}

.nbk-lifestyle-images img:first-child {
  grid-column: 1 / -1;
  height: 320px;
}

.nbk-list {
  list-style: none;
  margin-top: 28px;
  padding: 0;
}

.nbk-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(26, 43, 60, 0.08);
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
}

.nbk-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 8px;
  margin-top: 7px;
  flex-shrink: 0;
}

.nbk-amenities {
  background: var(--cream);
}

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

.nbk-amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 64px auto 0;
}

.nbk-amenity {
  background: var(--white);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(26, 43, 60, 0.08);
  transition: box-shadow 0.25s, transform 0.25s;
}

.nbk-amenity:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(26, 43, 60, 0.12);
}

.nbk-amenity img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.nbk-amenity-body {
  padding: 20px 22px 22px;
}

.nbk-amenity h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 8px;
}

.nbk-amenity p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.nbk-newcastle {
  background: var(--forest);
  color: var(--white);
  overflow: hidden;
}

.nbk-newcastle::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://mycondopro.ca/wp-content/uploads/2026/05/nescastle-marina.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.nbk-newcastle .nbk-wrap {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}

.nbk-newcastle .nbk-title-lg {
  color: var(--white);
}

.nbk-newcastle .nbk-title-lg em {
  color: var(--gold-lt);
}

.nbk-newcastle .nbk-body {
  color: rgba(255, 255, 255, 0.7);
  max-width: 100%;
}

.nbk-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.nbk-feature {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 2px;
  padding: 18px 20px;
}

.nbk-feature strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}

.nbk-feature span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.nbk-map {
  border-radius: 3px;
  overflow: hidden;
}

.nbk-map img {
  width: 100%;
  display: block;
  border-radius: 3px;
}

.nbk-builder {
  background: var(--navy);
  overflow: hidden;
}

.nbk-builder::before {
  content: '';
  position: absolute;
  bottom: -180px;
  left: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 74, 62, 0.35) 0%, transparent 70%);
}

.nbk-builder::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
}

.nbk-builder .nbk-wrap {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}

.nbk-builder-top {
  align-items: flex-start;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.nbk-builder-logo {
  max-width: 280px;
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
}

.nbk-builder .nbk-title-lg {
  color: var(--white);
}

.nbk-builder .nbk-title-lg em {
  color: var(--gold-lt);
}

.nbk-builder .nbk-body {
  color: rgba(255, 255, 255, 0.65);
}

.nbk-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.nbk-stat-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  padding: 24px 22px;
}

.nbk-stat-box strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.nbk-stat-box span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.nbk-awards-title {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.nbk-awards-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201, 168, 76, 0.25);
}

.nbk-awards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.nbk-award-item {
  text-align: center;
  padding: 24px 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.25s, background 0.25s;
}

.nbk-award-item:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.05);
}

.nbk-award-item img {
  height: 56px;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.nbk-award-name {
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  line-height: 1.5;
}

.nbk-register {
  background: var(--navy);
  overflow: hidden;
}

.nbk-register::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}

.nbk-register .nbk-wrap {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}

.nbk-register .nbk-title-lg {
  color: var(--white);
}

.nbk-register .nbk-title-lg em {
  color: var(--gold-lt);
}

.nbk-register-sub {
  color: rgba(255, 255, 255, 0.6);
  max-width: 620px;
  margin: 20px auto 48px;
}

.nbk-form-wrap {
  text-align: left;
}

.nbk-form-wrap .wpforms-container {
  margin: 0;
}

.nbk-form-wrap .wpforms-field-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.nbk-form-wrap input,
.nbk-form-wrap select,
.nbk-form-wrap textarea {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: var(--white) !important;
  font-family: 'Jost', sans-serif !important;
  border-radius: 2px !important;
}

.nbk-form-wrap button,
.nbk-form-wrap input[type='submit'] {
  width: 100%;
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase;
  border-radius: 2px !important;
  border: 0 !important;
}

.nbk-contact {
  background: var(--forest);
  padding: 48px 80px;
}

.nbk-contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nbk-address {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.nbk-address strong {
  display: block;
  color: var(--white);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.nbk-contact-links {
  display: flex;
  gap: 32px;
}

.nbk-contact-links a {
  color: var(--gold);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
}

.nbk-contact-links a:hover {
  color: var(--gold-lt);
}

@media (max-width: 1024px) {
  .nbk-section {
    padding: 72px 40px;
  }

  .nbk-grid-2,
  .nbk-builder-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .nbk-collections-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nbk-amenities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nbk-awards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nbk-contact {
    padding: 40px;
  }

  .nbk-contact-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .nbk-section {
    padding: 56px 24px;
  }

  .nbk-hero-content {
    padding: 100px 28px 120px;
  }

  .nbk-hero-stats {
    flex-direction: column;
  }

  .nbk-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .nbk-collections-grid,
  .nbk-amenities-grid,
  .nbk-features-grid {
    grid-template-columns: 1fr;
  }

  .nbk-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nbk-awards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nbk-contact {
    padding: 40px 24px;
  }

  .nbk-contact-links {
    flex-direction: column;
    gap: 10px;
  }
}
