@charset "UTF-8";

:root {
  --nc-ink: #10344a;
  --nc-navy: #0c2c44;
  --nc-navy-deep: #071e30;
  --nc-ocean: #0798ad;
  --nc-ocean-deep: #036d7e;
  --nc-turquoise: #23c3ce;
  --nc-brand-blue: #17b3f4;
  --nc-coral: #ff6a47;
  --nc-sunset: #ff8a3d;
  --nc-sun: #ffc94d;
  --nc-leaf: #2fb47c;
  --nc-sand: #fff3da;
  --nc-paper: #fffdf9;
  --nc-mist: #f4fbfc;
  --nc-muted: #46687e;
  --nc-line: #cfe2e8;
  --nc-white: #ffffff;
  --nc-shadow: 0 18px 48px rgba(7, 30, 48, 0.12);
  --nc-shadow-soft: 0 12px 32px rgba(7, 30, 48, 0.08);
  --nc-max: 1180px;
  --nc-radius-sm: 8px;
  --nc-radius: 12px;
  --nc-header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nc-header-h) + 20px);
}

body.nc-prototype {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--nc-ink);
  background: var(--nc-paper);
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nc-prototype.nc-menu-open {
  overflow: hidden;
}

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

.nc-prototype a {
  color: inherit;
  text-decoration: none;
}

.nc-prototype button,
.nc-prototype input {
  font: inherit;
}

.nc-prototype button {
  color: inherit;
}

.nc-prototype :focus-visible {
  outline: 3px solid var(--nc-sun);
  outline-offset: 4px;
}

.nc-svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.nc-skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: var(--nc-radius-sm);
  color: var(--nc-white);
  background: var(--nc-navy-deep);
  transition: transform 160ms ease;
}

.nc-skip-link:focus {
  transform: translateY(0);
}

.nc-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.nc-container {
  width: min(var(--nc-max), calc(100% - 64px));
  margin-inline: auto;
}

.nc-mobile-only {
  display: none;
}

.nc-eyebrow {
  margin: 0 0 12px;
  color: var(--nc-ocean-deep);
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
}

.nc-eyebrow-light {
  color: #7eeaf0;
}

.nc-section {
  padding-block: 96px;
}

.nc-section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.nc-section-heading h2 {
  margin: 0;
  color: var(--nc-navy-deep);
  font-size: clamp(34px, 4.3vw, 56px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.22;
}

.nc-section-heading > p:last-child {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--nc-muted);
  font-size: 17px;
  line-height: 1.9;
}

.nc-section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: 72px;
  max-width: none;
}

.nc-section-heading-split > p:last-child {
  margin: 0 0 6px;
}

.nc-section-heading-light h2,
.nc-section-heading-light > p:last-child {
  color: var(--nc-white);
}

.nc-site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--nc-header-h);
  border-bottom: 1px solid rgba(16, 52, 74, 0.09);
  background: rgba(255, 255, 255, 0.97);
  transition: height 180ms ease, box-shadow 180ms ease;
}

.nc-site-header.is-scrolled {
  height: 68px;
  box-shadow: 0 8px 28px rgba(7, 30, 48, 0.09);
}

.nc-header-inner {
  display: flex;
  align-items: stretch;
  width: min(1440px, 100%);
  height: 100%;
  margin-inline: auto;
  padding-inline: clamp(20px, 3vw, 44px);
}

.nc-brand {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 148px;
  margin-right: clamp(24px, 3.2vw, 52px);
}

.nc-brand img {
  width: 138px;
  height: auto;
}

.nc-brand span {
  margin: 2px 0 0 2px;
  color: var(--nc-muted);
  font-family: "Outfit", sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
}

.nc-primary-nav {
  min-width: 0;
  margin-right: auto;
}

.nc-primary-nav ul {
  display: flex;
  align-items: stretch;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nc-primary-nav a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding-inline: clamp(9px, 1.15vw, 18px);
  color: var(--nc-ink);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nc-primary-nav a::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 3px;
  background: var(--nc-brand-blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nc-primary-nav a:hover::after,
.nc-primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nc-header-actions {
  display: flex;
  align-items: stretch;
  margin-left: 16px;
}

.nc-icon-link {
  display: flex;
  min-width: 58px;
  padding: 8px 10px 6px;
  border: 0;
  border-left: 1px solid rgba(16, 52, 74, 0.1);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  color: var(--nc-ink);
  background: transparent;
  cursor: pointer;
}

.nc-icon-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nc-icon-link span {
  font-size: 10px;
  font-weight: 700;
}

.nc-icon-link:hover {
  color: var(--nc-ocean-deep);
  background: var(--nc-mist);
}

.nc-guide-link {
  display: flex;
  min-width: 126px;
  padding: 8px 18px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  color: var(--nc-white);
  background: var(--nc-navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.nc-guide-link span {
  color: #7eeaf0;
  font-family: "Outfit", sans-serif;
  font-size: 8px;
  letter-spacing: 0.14em;
}

.nc-guide-link:hover {
  background: var(--nc-ocean-deep);
}

.nc-menu-button {
  display: none;
}

.nc-mobile-menu,
.nc-mobile-backdrop {
  display: none;
}

.nc-hero {
  position: relative;
  min-height: 780px;
  padding-top: var(--nc-header-h);
  color: var(--nc-white);
  background: var(--nc-navy-deep);
}

.nc-hero-media,
.nc-hero-shade {
  position: absolute;
  inset: var(--nc-header-h) 0 0;
}

.nc-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.nc-hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 30, 48, 0.95) 0%, rgba(7, 30, 48, 0.83) 34%, rgba(7, 30, 48, 0.32) 67%, rgba(7, 30, 48, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 30, 48, 0.76) 0%, transparent 38%);
}

.nc-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 610px;
  padding: 72px 0 150px;
  justify-content: space-between;
}

.nc-hero-copy {
  width: min(650px, 58%);
}

.nc-hero-copy h1 {
  max-width: 660px;
  margin: 0;
  color: var(--nc-white);
  font-size: clamp(48px, 5.3vw, 72px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.14;
  text-wrap: balance;
}

.nc-hero-description {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.9;
}

.nc-hero-search {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  width: min(620px, 100%);
  min-height: 62px;
  margin-top: 28px;
  padding: 5px 6px 5px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--nc-radius-sm);
  color: var(--nc-ink);
  background: var(--nc-white);
  box-shadow: 0 14px 40px rgba(7, 30, 48, 0.28);
}

.nc-hero-search > svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--nc-ocean-deep);
  stroke-linecap: round;
  stroke-width: 2;
}

.nc-hero-search input {
  min-width: 0;
  min-height: 50px;
  padding: 8px 12px;
  border: 0;
  outline: 0;
  color: var(--nc-ink);
  background: transparent;
  font-size: 15px;
  font-weight: 600;
}

.nc-hero-search input::placeholder {
  color: #6d8798;
  opacity: 1;
}

.nc-hero-search button {
  min-width: 88px;
  min-height: 50px;
  padding-inline: 20px;
  border: 0;
  border-radius: 6px;
  color: var(--nc-white);
  background: linear-gradient(135deg, var(--nc-coral), var(--nc-sunset));
  font-weight: 800;
  cursor: pointer;
}

.nc-hero-search button:hover {
  filter: brightness(0.96);
}

.nc-search-results {
  position: absolute;
  z-index: 10;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  overflow: hidden;
  border: 1px solid var(--nc-line);
  border-radius: var(--nc-radius-sm);
  color: var(--nc-ink);
  background: var(--nc-white);
  box-shadow: var(--nc-shadow);
}

.nc-search-results p {
  padding: 18px;
  margin: 0;
  color: var(--nc-muted);
}

.nc-search-results a {
  display: grid;
  grid-template-columns: 78px 1fr 20px;
  min-height: 58px;
  padding: 12px 16px;
  border-bottom: 1px solid #e3eef1;
  align-items: center;
  gap: 12px;
}

.nc-search-results a:last-child {
  border-bottom: 0;
}

.nc-search-results a:hover {
  background: var(--nc-mist);
}

.nc-search-results a span {
  color: var(--nc-ocean-deep);
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.nc-search-results a strong {
  font-size: 14px;
  line-height: 1.5;
}

.nc-search-results a svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.nc-hero-tools {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 18px;
}

.nc-hero-tools a,
.nc-hero-tools button {
  display: inline-flex;
  min-height: 44px;
  padding: 0;
  border: 0;
  align-items: center;
  gap: 8px;
  color: var(--nc-white);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.nc-hero-tools a:hover,
.nc-hero-tools button:hover {
  color: #7eeaf0;
}

.nc-hero-tools svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nc-photo-note {
  align-self: flex-end;
  margin: 0 0 30px auto;
  font-family: "Outfit", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.nc-photo-note span {
  color: rgba(255, 255, 255, 0.56);
}

.nc-route-wrap {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: -66px;
  left: 0;
}

.nc-route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(12, 44, 68, 0.13);
  border-radius: var(--nc-radius);
  background: var(--nc-white);
  box-shadow: var(--nc-shadow);
}

.nc-route-card {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 22px;
  min-height: 132px;
  padding: 28px 24px;
  align-items: center;
  gap: 14px;
  color: var(--nc-ink);
  background: var(--nc-white);
}

.nc-route-card + .nc-route-card {
  border-left: 1px solid var(--nc-line);
}

.nc-route-card::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--nc-brand-blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nc-route-card:hover,
.nc-route-card:focus-visible {
  background: var(--nc-mist);
}

.nc-route-card:hover::before,
.nc-route-card:focus-visible::before {
  transform: scaleX(1);
}

.nc-route-card > svg:not(.nc-route-arrow) {
  grid-column: 1;
  grid-row: 1;
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--nc-ocean-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.nc-route-index {
  position: absolute;
  top: 12px;
  left: 14px;
  color: #8ca7b5;
  font-family: "Outfit", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.nc-route-copy {
  display: flex;
  grid-column: 2;
  flex-direction: column;
  gap: 4px;
}

.nc-route-copy strong {
  color: var(--nc-navy-deep);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
}

.nc-route-copy small {
  color: var(--nc-muted);
  font-family: "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.45;
}

.nc-route-arrow {
  grid-column: 3;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--nc-ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 160ms ease;
}

.nc-route-card:hover .nc-route-arrow {
  transform: translateX(3px);
}

.nc-first-section {
  padding-top: 174px;
  background: var(--nc-paper);
}

.nc-first-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--nc-line);
  border-bottom: 1px solid var(--nc-line);
}

.nc-primer-card {
  position: relative;
  padding: 34px 28px 30px;
}

.nc-primer-card + .nc-primer-card {
  border-left: 1px solid var(--nc-line);
}

.nc-primer-card > svg {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  fill: none;
  stroke: var(--nc-ocean-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.nc-primer-number {
  position: absolute;
  top: 30px;
  right: 24px;
  color: #a0b6c1;
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.nc-primer-card h3 {
  margin: 0;
  color: var(--nc-navy-deep);
  font-size: 20px;
  font-weight: 900;
}

.nc-primer-card p {
  min-height: 78px;
  margin: 12px 0 18px;
  color: var(--nc-muted);
  font-size: 14px;
}

.nc-primer-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--nc-ocean-deep);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(3, 109, 126, 0.3);
  text-underline-offset: 4px;
}

.nc-status-ribbon {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 72px;
  margin-top: 32px;
  padding: 16px 22px;
  border-radius: var(--nc-radius-sm);
  align-items: center;
  gap: 24px;
  color: var(--nc-white);
  background: var(--nc-navy);
}

.nc-status-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.nc-status-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nc-sun);
  box-shadow: 0 0 0 4px rgba(255, 201, 77, 0.16);
}

.nc-status-ribbon p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.65;
}

.nc-status-ribbon p strong {
  color: var(--nc-white);
}

.nc-status-ribbon a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #7eeaf0;
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.nc-area-section {
  background: var(--nc-mist);
}

.nc-area-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.nc-area-feature {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--nc-radius);
  color: var(--nc-white);
  background: var(--nc-navy);
}

.nc-area-feature img,
.nc-area-feature-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nc-area-feature img {
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.3, 1);
}

.nc-area-feature-city img {
  object-position: 50% 46%;
}

.nc-area-feature-mactan img {
  object-position: 50% 48%;
}

.nc-area-feature-shade {
  background: linear-gradient(0deg, rgba(7, 30, 48, 0.92) 0%, rgba(7, 30, 48, 0.25) 70%, rgba(7, 30, 48, 0.08) 100%);
}

.nc-area-feature:hover img {
  transform: scale(1.025);
}

.nc-area-feature-content {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 32px;
  left: 34px;
}

.nc-area-feature-content > p {
  display: flex;
  margin: 0 0 6px;
  align-items: center;
  gap: 12px;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.nc-area-feature-content > p span {
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  color: #b8f5f7;
  font-size: 9px;
}

.nc-area-feature-content h3 {
  margin: 0;
  color: var(--nc-white);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.nc-area-feature-content ul {
  display: flex;
  padding: 0;
  margin: 12px 0 20px;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.nc-area-feature-content li {
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.nc-area-feature-content a {
  display: inline-flex;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 6px;
  align-items: center;
  gap: 18px;
  color: var(--nc-navy-deep);
  background: var(--nc-white);
  font-size: 13px;
  font-weight: 900;
}

.nc-area-feature-content a svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.nc-area-directory {
  margin-top: 28px;
  padding: 26px 28px 10px;
  border: 1px solid var(--nc-line);
  border-radius: var(--nc-radius);
  background: rgba(255, 255, 255, 0.8);
}

.nc-area-directory-head {
  display: flex;
  margin-bottom: 16px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nc-area-directory-head h3 {
  margin: 0;
  color: var(--nc-navy-deep);
  font-size: 18px;
  font-weight: 900;
}

.nc-area-directory-head a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--nc-ocean-deep);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nc-area-directory ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
}

.nc-area-directory li {
  border-top: 1px solid var(--nc-line);
}

.nc-area-directory li:not(:nth-child(3n + 1)) {
  border-left: 1px solid var(--nc-line);
}

.nc-area-directory a {
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr;
  min-height: 86px;
  padding: 18px 20px;
  align-content: center;
}

.nc-area-directory a:hover {
  background: var(--nc-white);
}

.nc-area-directory a > span {
  grid-row: 1 / span 2;
  color: var(--nc-brand-blue);
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.nc-area-directory a {
  color: var(--nc-navy-deep);
  font-family: "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.nc-area-directory a small {
  color: var(--nc-muted);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 11px;
  font-weight: 500;
}

.nc-explore-section {
  color: var(--nc-white);
  background:
    radial-gradient(circle at 90% 10%, rgba(35, 195, 206, 0.13), transparent 30%),
    var(--nc-navy-deep);
}

.nc-explore-shell {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--nc-radius);
  background: rgba(255, 255, 255, 0.045);
}

.nc-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.nc-tabs button {
  position: relative;
  min-height: 62px;
  padding: 10px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.nc-tabs button:last-child {
  border-right: 0;
}

.nc-tabs button::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 3px;
  background: var(--nc-turquoise);
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.nc-tabs button:hover {
  color: var(--nc-white);
}

.nc-tabs button[aria-selected="true"] {
  color: var(--nc-white);
  background: rgba(255, 255, 255, 0.07);
}

.nc-tabs button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.nc-explore-panel {
  padding: 36px;
}

.nc-explore-panel-head {
  display: flex;
  margin-bottom: 28px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.nc-explore-panel-head p {
  margin: 0 0 4px;
  color: #7eeaf0;
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.nc-explore-panel-head h3 {
  margin: 0;
  color: var(--nc-white);
  font-size: 27px;
  font-weight: 900;
}

.nc-explore-panel-head a {
  display: inline-flex;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  align-items: center;
  gap: 12px;
  color: var(--nc-white);
  font-size: 12px;
  font-weight: 800;
}

.nc-explore-panel-head a:hover {
  border-color: var(--nc-turquoise);
  background: rgba(35, 195, 206, 0.1);
}

.nc-explore-panel-head svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.nc-story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.nc-story-card {
  overflow: hidden;
  border-radius: var(--nc-radius-sm);
  color: var(--nc-ink);
  background: var(--nc-white);
  transition: transform 180ms ease;
}

.nc-story-card:hover {
  transform: translateY(-4px);
}

.nc-story-card a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.nc-story-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d5e9ec;
}

.nc-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.nc-story-card:hover img {
  transform: scale(1.04);
}

.nc-story-label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--nc-white);
  background: rgba(7, 30, 48, 0.88);
  font-family: "Outfit", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.nc-story-body {
  display: flex;
  padding: 18px;
  flex: 1;
  flex-direction: column;
}

.nc-story-meta {
  display: flex;
  margin-bottom: 8px;
  align-items: center;
  gap: 8px;
  color: var(--nc-ocean-deep);
  font-size: 10px;
  font-weight: 800;
}

.nc-story-meta i {
  width: 12px;
  height: 1px;
  background: var(--nc-ocean);
}

.nc-story-body h4 {
  margin: 0;
  color: var(--nc-navy-deep);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.55;
}

.nc-story-body p {
  margin: 10px 0 0;
  color: var(--nc-muted);
  font-size: 12px;
  line-height: 1.7;
}

.nc-story-body > span {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 16px;
  align-items: center;
  gap: 8px;
  color: var(--nc-ocean-deep);
  font-size: 11px;
  font-weight: 800;
}

.nc-story-body > span svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nc-content-disclaimer {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  text-align: right;
}

.nc-map-section {
  overflow: hidden;
  background: var(--nc-paper);
}

.nc-map-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: stretch;
  gap: 40px;
}

.nc-map-copy {
  padding: 28px 0;
}

.nc-map-copy > h2 {
  margin: 0;
  color: var(--nc-navy-deep);
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.nc-map-copy > p {
  margin: 20px 0 0;
  color: var(--nc-muted);
  line-height: 1.9;
}

.nc-map-filter-group {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 8px;
}

.nc-map-filter-group button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--nc-line);
  border-radius: 6px;
  color: var(--nc-muted);
  background: var(--nc-white);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.nc-map-filter-group button:hover,
.nc-map-filter-group button.is-active {
  border-color: var(--nc-ocean-deep);
  color: var(--nc-white);
  background: var(--nc-ocean-deep);
}

.nc-map-detail {
  margin-top: 30px;
  padding: 22px;
  border-top: 3px solid var(--nc-brand-blue);
  border-radius: 0 0 var(--nc-radius-sm) var(--nc-radius-sm);
  background: var(--nc-mist);
}

.nc-map-detail > span {
  color: var(--nc-ocean-deep);
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.nc-map-detail h3 {
  margin: 4px 0 0;
  color: var(--nc-navy-deep);
  font-family: "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.nc-map-detail p {
  margin: 8px 0 14px;
  color: var(--nc-muted);
  font-size: 13px;
}

.nc-map-detail a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--nc-ocean-deep);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nc-map-stage {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border: 1px solid var(--nc-line);
  border-radius: var(--nc-radius);
  color: rgba(12, 44, 68, 0.08);
  background: #eaf8f9;
}

.nc-map-stage:not(.is-ready) .nc-map-marker {
  visibility: hidden;
}

.nc-map-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nc-map-waterway {
  fill: none;
  stroke: #9edee4;
  stroke-width: 50;
}

.nc-map-land {
  stroke: #88bec7;
  stroke-width: 2;
}

.nc-map-land-city {
  fill: #d7eeee;
}

.nc-map-land-mactan {
  fill: #f1e4c6;
}

.nc-map-road {
  fill: none;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 9;
}

.nc-map-art text {
  fill: #7299a5;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.nc-map-art .nc-map-label {
  font-size: 10px;
}

.nc-map-consent {
  position: absolute;
  z-index: 8;
  inset: 0;
  display: flex;
  padding: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--nc-white);
  background:
    linear-gradient(135deg, rgba(7, 30, 48, 0.96), rgba(12, 44, 68, 0.91)),
    #0c2c44;
  text-align: center;
}

.nc-map-consent > svg {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  fill: none;
  stroke: #7eeaf0;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.nc-map-consent p {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
}

.nc-map-consent span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.nc-map-consent button {
  min-height: 52px;
  margin-top: 24px;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  color: var(--nc-white);
  background: linear-gradient(135deg, var(--nc-coral), var(--nc-sunset));
  font-weight: 900;
  cursor: pointer;
}

.nc-map-marker {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 4px solid var(--nc-white);
  border-radius: 50% 50% 50% 8px;
  place-items: center;
  color: var(--nc-white);
  background: var(--nc-ocean-deep);
  box-shadow: 0 8px 18px rgba(7, 30, 48, 0.22);
  cursor: pointer;
  transform: rotate(-45deg);
  transition: opacity 140ms ease, transform 140ms ease;
}

.nc-map-marker span {
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-weight: 800;
  transform: rotate(45deg);
}

.nc-map-marker:hover,
.nc-map-marker.is-active {
  background: var(--nc-coral);
  transform: rotate(-45deg) scale(1.1);
}

.nc-map-marker.is-filtered {
  opacity: 0;
  pointer-events: none;
  transform: rotate(-45deg) scale(0.7);
}

.nc-map-marker-it {
  top: 27%;
  left: 31%;
}

.nc-map-marker-ayala {
  top: 39%;
  left: 28%;
}

.nc-map-marker-srp {
  top: 70%;
  left: 36%;
}

.nc-map-marker-airport {
  top: 48%;
  left: 70%;
}

.nc-map-marker-newtown {
  top: 29%;
  left: 80%;
}

.nc-map-caption {
  position: absolute;
  right: 14px;
  bottom: 10px;
  margin: 0;
  color: #799ca7;
  font-family: "Outfit", sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.nc-map-equivalent {
  display: grid;
  grid-template-columns: 250px 1fr;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--nc-line);
  align-items: start;
  gap: 38px;
}

.nc-map-equivalent h3 {
  margin: 0;
  color: var(--nc-navy-deep);
  font-size: 20px;
  line-height: 1.45;
}

.nc-map-equivalent ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
}

.nc-map-equivalent li {
  min-width: 0;
  border-left: 1px solid var(--nc-line);
}

.nc-map-equivalent li.is-filtered {
  display: none;
}

.nc-map-equivalent button {
  display: flex;
  width: 100%;
  min-height: 116px;
  padding: 12px 16px;
  border: 0;
  align-items: flex-start;
  flex-direction: column;
  color: var(--nc-ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.nc-map-equivalent button:hover {
  background: var(--nc-mist);
}

.nc-map-equivalent button span {
  color: var(--nc-brand-blue);
  font-family: "Outfit", sans-serif;
  font-size: 9px;
  font-weight: 800;
}

.nc-map-equivalent button strong {
  overflow: hidden;
  width: 100%;
  margin-top: 6px;
  color: var(--nc-navy-deep);
  font-family: "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nc-map-equivalent button small {
  margin-top: 4px;
  color: var(--nc-muted);
  font-size: 10px;
  line-height: 1.45;
}

.nc-events-section {
  background: var(--nc-sand);
}

.nc-event-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 16px;
}

.nc-event-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(16, 52, 74, 0.15);
  border-radius: var(--nc-radius);
  align-items: start;
  gap: 22px;
  background: rgba(255, 255, 255, 0.74);
}

.nc-event-card-feature {
  color: var(--nc-white);
  background: var(--nc-navy);
}

.nc-event-date {
  display: flex;
  width: 82px;
  min-height: 98px;
  padding: 12px 8px;
  border: 1px solid rgba(16, 52, 74, 0.2);
  border-radius: var(--nc-radius-sm);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--nc-ocean-deep);
  background: var(--nc-white);
}

.nc-event-date span {
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.nc-event-date strong {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.nc-event-status {
  display: inline-flex;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 4px;
  align-items: center;
  font-size: 9px;
  font-weight: 800;
}

.nc-event-status-sample {
  color: #5c4a00;
  background: var(--nc-sun);
}

.nc-event-kicker {
  margin: 16px 0 4px;
  color: var(--nc-ocean-deep);
  font-family: "Outfit", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.nc-event-card-feature .nc-event-kicker {
  color: #7eeaf0;
}

.nc-event-card h3 {
  margin: 0;
  color: var(--nc-navy-deep);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.5;
}

.nc-event-card-feature h3 {
  color: var(--nc-white);
}

.nc-event-card p:last-child {
  margin: 10px 0 0;
  color: var(--nc-muted);
  font-size: 12px;
}

.nc-event-card-feature p:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.nc-event-footer {
  display: flex;
  margin-top: 24px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(16, 52, 74, 0.17);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nc-event-footer p {
  margin: 0;
  color: var(--nc-muted);
  font-size: 11px;
}

.nc-event-footer p span {
  margin-right: 12px;
  color: var(--nc-ocean-deep);
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.nc-event-footer a {
  display: inline-flex;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 6px;
  align-items: center;
  gap: 14px;
  color: var(--nc-white);
  background: var(--nc-navy);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.nc-event-footer svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nc-audience-section {
  background: var(--nc-white);
}

.nc-audience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--nc-line);
  border-bottom: 1px solid var(--nc-line);
}

.nc-audience-grid a {
  position: relative;
  display: flex;
  min-height: 220px;
  padding: 28px 22px;
  flex-direction: column;
}

.nc-audience-grid a + a {
  border-left: 1px solid var(--nc-line);
}

.nc-audience-grid a:hover {
  background: var(--nc-mist);
}

.nc-audience-grid a > span {
  position: absolute;
  top: 20px;
  right: 18px;
  color: #9cb1bb;
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.nc-audience-grid svg {
  width: 36px;
  height: 36px;
  margin-bottom: auto;
  fill: none;
  stroke: var(--nc-ocean-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.nc-audience-grid strong {
  color: var(--nc-navy-deep);
  font-size: 16px;
  font-weight: 900;
}

.nc-audience-grid small {
  margin-top: 5px;
  color: var(--nc-muted);
  font-size: 11px;
}

.nc-study-section {
  position: relative;
  overflow: hidden;
  color: var(--nc-white);
  background:
    radial-gradient(circle at 15% 20%, rgba(35, 195, 206, 0.16), transparent 32%),
    var(--nc-navy-deep);
}

.nc-study-route {
  position: absolute;
  top: -170px;
  left: -120px;
  width: 520px;
  height: 520px;
  border: 1px dashed rgba(126, 234, 240, 0.24);
  border-radius: 50%;
}

.nc-study-route::before,
.nc-study-route::after {
  position: absolute;
  border: 1px dashed rgba(126, 234, 240, 0.13);
  border-radius: 50%;
  content: "";
}

.nc-study-route::before {
  inset: 54px;
}

.nc-study-route::after {
  inset: 110px;
}

.nc-study-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 56px;
}

.nc-study-brand {
  display: flex;
  margin-bottom: 34px;
  align-items: center;
  gap: 12px;
}

.nc-compass-mark {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(126, 234, 240, 0.45);
  border-radius: 50%;
  place-items: center;
  color: #7eeaf0;
}

.nc-compass-mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.nc-study-brand p {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.nc-study-brand p span {
  display: block;
  color: #7eeaf0;
  font-family: "Outfit", sans-serif;
  font-size: 9px;
  letter-spacing: 0.15em;
}

.nc-study-copy h2 {
  margin: 0;
  color: var(--nc-white);
  font-size: clamp(40px, 4.5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.nc-study-lead {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.73);
  line-height: 1.9;
}

.nc-study-main-cta {
  display: inline-flex;
  min-height: 56px;
  margin-top: 28px;
  padding: 0 22px;
  border-radius: 6px;
  align-items: center;
  gap: 18px;
  color: var(--nc-white);
  background: linear-gradient(135deg, var(--nc-coral), var(--nc-sunset));
  font-size: 14px;
  font-weight: 900;
}

.nc-study-main-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nc-study-preview-note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
}

.nc-study-preview-note code {
  color: #7eeaf0;
  font-family: "Outfit", monospace;
}

.nc-study-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--nc-radius);
  background: var(--nc-navy);
}

.nc-study-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 30, 48, 0.6), transparent 44%);
  content: "";
}

.nc-study-mosaic {
  display: grid;
  width: 100%;
  height: 500px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(12, minmax(0, 1fr));
  gap: 5px;
  background: var(--nc-white);
}

.nc-study-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
  transition: transform 600ms ease;
}

.nc-study-visual:hover .nc-study-mosaic img {
  transform: scale(1.025);
}

.nc-study-mosaic-main {
  grid-column: 1 / 8;
  grid-row: 1 / 13;
  object-position: center;
}

.nc-study-mosaic-beach {
  grid-column: 8 / 13;
  grid-row: 1 / 7;
  object-position: 58% center;
}

.nc-study-mosaic-life {
  grid-column: 8 / 11;
  grid-row: 7 / 13;
  object-position: 62% center;
}

.nc-study-mosaic-sea {
  grid-column: 11 / 13;
  grid-row: 7 / 13;
  object-position: center;
}

.nc-study-ticket {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  min-height: 56px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--nc-radius-sm);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(7, 30, 48, 0.8);
}

.nc-study-ticket p,
.nc-study-ticket span {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.nc-study-ticket span {
  color: #7eeaf0;
}

.nc-study-paths {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--nc-radius);
}

.nc-study-paths a {
  position: relative;
  display: flex;
  min-height: 164px;
  padding: 24px;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
}

.nc-study-paths a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.nc-study-paths a:hover {
  background: rgba(35, 195, 206, 0.09);
}

.nc-study-paths a > span {
  color: #7eeaf0;
  font-family: "Outfit", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.nc-study-paths strong {
  margin-top: auto;
  font-size: 15px;
  font-weight: 900;
}

.nc-study-paths small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.nc-study-paths svg {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.48);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.nc-updates-section {
  background: var(--nc-paper);
}

.nc-update-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.nc-update-column {
  border-top: 3px solid var(--nc-navy);
}

.nc-update-column:last-child {
  border-top-color: var(--nc-ocean);
}

.nc-update-column-head {
  display: flex;
  min-height: 70px;
  border-bottom: 1px solid var(--nc-line);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nc-update-column-head h3 {
  margin: 0;
  color: var(--nc-navy-deep);
  font-size: 20px;
  font-weight: 900;
}

.nc-update-column-head span {
  color: var(--nc-ocean-deep);
  font-family: "Outfit", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.nc-update-item {
  position: relative;
  display: grid;
  grid-template-columns: 86px 1fr 44px;
  min-height: 170px;
  padding: 26px 0;
  border-bottom: 1px solid var(--nc-line);
  gap: 22px;
}

.nc-update-item time {
  color: var(--nc-muted);
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.nc-update-item div > span {
  color: var(--nc-ocean-deep);
  font-size: 10px;
  font-weight: 800;
}

.nc-update-item h4 {
  margin: 4px 0 0;
  color: var(--nc-navy-deep);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.55;
}

.nc-update-item p {
  margin: 8px 0 0;
  color: var(--nc-muted);
  font-size: 11px;
  line-height: 1.6;
}

.nc-update-item > a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
}

.nc-update-item > a svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--nc-ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.nc-trust-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  margin-top: 52px;
  padding: 38px 40px;
  border-radius: var(--nc-radius);
  align-items: center;
  gap: 54px;
  color: var(--nc-white);
  background: var(--nc-navy);
}

.nc-trust-panel h3 {
  margin: 0;
  color: var(--nc-white);
  font-size: 25px;
  font-weight: 900;
}

.nc-trust-panel > div > p:last-child {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.nc-trust-panel nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.nc-trust-panel nav a {
  display: flex;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  align-items: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 800;
}

.nc-trust-panel nav a:hover {
  border-color: #7eeaf0;
  color: var(--nc-white);
}

.nc-faq-section {
  background: var(--nc-mist);
}

.nc-faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: start;
  gap: 70px;
}

.nc-faq-layout .nc-section-heading {
  position: sticky;
  top: 110px;
  margin-bottom: 0;
}

.nc-faq-list {
  border-top: 1px solid var(--nc-line);
}

.nc-faq-list details {
  border-bottom: 1px solid var(--nc-line);
  background: transparent;
}

.nc-faq-list summary {
  display: grid;
  grid-template-columns: 38px 1fr 32px;
  min-height: 78px;
  padding: 18px 8px 18px 0;
  align-items: center;
  gap: 12px;
  color: var(--nc-navy-deep);
  font-size: 15px;
  font-weight: 900;
  list-style: none;
  cursor: pointer;
}

.nc-faq-list summary::-webkit-details-marker {
  display: none;
}

.nc-faq-list summary > span {
  color: var(--nc-brand-blue);
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.nc-faq-list summary::after {
  display: grid;
  width: 28px;
  height: 28px;
  border: 1px solid var(--nc-line);
  border-radius: 50%;
  place-items: center;
  color: var(--nc-ocean-deep);
  content: "+";
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  line-height: 1;
}

.nc-faq-list details[open] summary::after {
  content: "−";
}

.nc-faq-list details > div {
  padding: 0 46px 24px 50px;
}

.nc-faq-list details p {
  margin: 0;
  color: var(--nc-muted);
  font-size: 13px;
}

.nc-site-footer {
  padding: 70px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--nc-navy-deep);
}

.nc-footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  align-items: end;
  gap: 56px;
}

.nc-footer-brand {
  display: block;
  width: fit-content;
}

.nc-footer-brand img {
  width: 174px;
  height: auto;
  padding: 8px;
  border-radius: 4px;
  background: var(--nc-white);
}

.nc-footer-brand p {
  margin: 10px 0 0;
  color: var(--nc-white);
  font-size: 14px;
  font-weight: 900;
}

.nc-footer-statement {
  max-width: 500px;
  margin: 0;
  justify-self: end;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.nc-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-block: 46px;
  gap: 34px;
}

.nc-footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nc-footer-grid h2 {
  margin: 0 0 10px;
  color: var(--nc-white);
  font-size: 13px;
  font-weight: 900;
}

.nc-footer-grid a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.nc-footer-grid a:hover {
  color: #7eeaf0;
}

.nc-footer-bottom {
  display: flex;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: space-between;
  gap: 24px;
}

.nc-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.36);
  font-family: "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 9px;
}

.nc-mobile-bottom-nav {
  display: none;
}

.nc-toast {
  position: fixed;
  z-index: 300;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: min(380px, calc(100% - 32px));
  min-height: 64px;
  padding: 14px 18px;
  border: 1px solid rgba(126, 234, 240, 0.26);
  border-radius: var(--nc-radius-sm);
  align-items: center;
  gap: 12px;
  color: var(--nc-white);
  background: var(--nc-navy-deep);
  box-shadow: var(--nc-shadow);
}

.nc-toast[hidden] {
  display: none;
}

.nc-toast svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: #7eeaf0;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.nc-toast p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

/* V2 — Sunlit Cebu Field Guide */

.nc-site-header::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--nc-brand-blue), var(--nc-turquoise) 48%, var(--nc-sun) 74%, var(--nc-coral));
  content: "";
  pointer-events: none;
}

.nc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.nc-eyebrow::before {
  width: 22px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.nc-guide-link {
  position: relative;
  min-width: 152px;
  padding: 9px 36px 8px 16px;
  color: var(--nc-navy-deep);
  background: linear-gradient(135deg, var(--nc-sun), var(--nc-sunset));
  box-shadow: inset 0 -3px rgba(255, 106, 71, 0.22);
}

.nc-guide-link span {
  color: rgba(7, 30, 48, 0.68);
  font-size: 9px;
  font-weight: 900;
}

.nc-guide-link > svg {
  position: absolute;
  top: 50%;
  right: 13px;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transform: translateY(-50%);
  transition: transform 160ms ease;
}

.nc-guide-link:hover {
  color: var(--nc-navy-deep);
  background: linear-gradient(135deg, #ffd768, #ff9a4f);
}

.nc-guide-link:hover > svg {
  transform: translate(3px, -50%);
}

.nc-mobile-study-card {
  position: relative;
  display: flex;
  min-height: 112px;
  margin-top: 18px;
  padding: 18px 52px 18px 18px;
  border-radius: var(--nc-radius);
  flex-direction: column;
  justify-content: center;
  color: var(--nc-navy-deep);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.48), transparent 34%),
    linear-gradient(135deg, var(--nc-sun), var(--nc-sunset));
  box-shadow: 0 14px 30px rgba(7, 30, 48, 0.2);
}

.nc-mobile-study-card span {
  font-family: "Outfit", sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.nc-mobile-study-card strong {
  font-size: 18px;
  font-weight: 900;
}

.nc-mobile-study-card small {
  margin-top: 3px;
  font-size: 11px;
  font-weight: 700;
}

.nc-mobile-study-card svg {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transform: translateY(-50%);
}

.nc-mobile-menu-secondary a,
.nc-mobile-menu-secondary button {
  display: flex;
  min-height: 90px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--nc-radius-sm);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: inherit;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.nc-hero {
  color: var(--nc-navy-deep);
  background: #dff6fb;
}

.nc-hero-media img {
  filter: saturate(1.06) brightness(1.04);
}

.nc-hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.97) 0%, rgba(255, 253, 249, 0.9) 34%, rgba(255, 253, 249, 0.36) 58%, rgba(255, 253, 249, 0.04) 100%),
    linear-gradient(0deg, rgba(255, 253, 249, 0.72) 0%, rgba(255, 253, 249, 0) 38%);
}

.nc-hero-copy h1 {
  color: var(--nc-navy-deep);
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.34);
}

.nc-hero-title-accent {
  color: var(--nc-ocean-deep);
  box-shadow: inset 0 -0.16em rgba(255, 201, 77, 0.88);
  white-space: nowrap;
}

.nc-hero-description {
  max-width: 570px;
  color: #31566c;
  font-weight: 600;
}

.nc-hero-search {
  border-color: rgba(3, 109, 126, 0.18);
  box-shadow: 0 20px 52px rgba(7, 84, 105, 0.18);
}

.nc-hero-tools a,
.nc-hero-tools button {
  color: var(--nc-navy-deep);
}

.nc-hero-tools a:hover,
.nc-hero-tools button:hover {
  color: var(--nc-ocean-deep);
}

.nc-photo-note {
  color: var(--nc-ocean-deep);
}

.nc-photo-note span {
  color: rgba(3, 109, 126, 0.62);
}

.nc-route-grid {
  border: 0;
  box-shadow: 0 24px 70px rgba(7, 62, 83, 0.18);
}

.nc-route-card {
  grid-template-columns: 44px minmax(0, 1fr) 22px;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nc-route-card:nth-child(1) {
  background: linear-gradient(145deg, #ffffff, #eafafa);
}

.nc-route-card:nth-child(2) {
  background: linear-gradient(145deg, #ffffff, #fff8dd);
}

.nc-route-card:nth-child(3) {
  background: linear-gradient(145deg, #ffffff, #fff1e8);
}

.nc-route-card-study {
  background:
    radial-gradient(circle at 95% 0%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(145deg, #fffef8, #fff0c9);
  box-shadow: inset 0 4px var(--nc-coral);
}

.nc-route-card:hover,
.nc-route-card:focus-visible {
  z-index: 2;
  background: var(--nc-white);
  box-shadow: 0 16px 36px rgba(7, 62, 83, 0.14);
  transform: translateY(-4px);
}

.nc-route-card > svg:not(.nc-route-arrow) {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 12px;
  background: rgba(7, 152, 173, 0.1);
}

.nc-route-card:nth-child(2) > svg:not(.nc-route-arrow) {
  stroke: #9a6600;
  background: rgba(255, 201, 77, 0.24);
}

.nc-route-card:nth-child(3) > svg:not(.nc-route-arrow) {
  stroke: #b4472e;
  background: rgba(255, 106, 71, 0.13);
}

.nc-route-card-study > svg:not(.nc-route-arrow) {
  stroke: var(--nc-coral);
  background: rgba(255, 106, 71, 0.13);
}

.nc-route-card-study::before {
  background: var(--nc-coral);
}

.nc-route-copy em {
  width: fit-content;
  margin-bottom: -1px;
  color: var(--nc-coral);
  font-family: "Outfit", sans-serif;
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.nc-first-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 201, 77, 0.2), transparent 24%),
    radial-gradient(circle at 5% 72%, rgba(35, 195, 206, 0.12), transparent 26%),
    var(--nc-paper);
}

.nc-first-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 0;
  gap: 16px;
}

.nc-primer-card {
  overflow: hidden;
  border: 1px solid rgba(12, 44, 68, 0.09);
  border-radius: var(--nc-radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--nc-shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nc-primer-card + .nc-primer-card {
  border-left: 1px solid rgba(12, 44, 68, 0.09);
}

.nc-primer-card:hover {
  box-shadow: 0 20px 42px rgba(7, 62, 83, 0.14);
  transform: translateY(-5px);
}

.nc-primer-card::after {
  position: absolute;
  right: -30px;
  bottom: -42px;
  width: 100px;
  height: 100px;
  border: 18px solid rgba(35, 195, 206, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.nc-primer-card > svg {
  width: 48px;
  height: 48px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(35, 195, 206, 0.1);
}

.nc-primer-card:nth-child(2) > svg {
  stroke: #a36c00;
  background: rgba(255, 201, 77, 0.22);
}

.nc-primer-card:nth-child(3) > svg {
  stroke: #b4472e;
  background: rgba(255, 106, 71, 0.12);
}

.nc-primer-card:nth-child(4) > svg {
  stroke: var(--nc-leaf);
  background: rgba(47, 180, 124, 0.12);
}

.nc-status-ribbon {
  border: 1px solid rgba(7, 152, 173, 0.16);
  color: var(--nc-ink);
  background: linear-gradient(90deg, #e7fbfc, #fff9e8);
  box-shadow: var(--nc-shadow-soft);
}

.nc-status-ribbon p,
.nc-status-ribbon p strong {
  color: var(--nc-ink);
}

.nc-status-ribbon a {
  color: var(--nc-ocean-deep);
}

.nc-area-section {
  position: relative;
  background:
    radial-gradient(circle at 100% 0%, rgba(23, 179, 244, 0.13), transparent 30%),
    linear-gradient(180deg, #effbfc 0%, #f8fcfb 100%);
}

.nc-area-feature {
  border: 4px solid var(--nc-white);
  box-shadow: 0 24px 60px rgba(7, 62, 83, 0.16);
}

.nc-area-feature-shade {
  background: linear-gradient(0deg, rgba(7, 30, 48, 0.76) 0%, rgba(7, 30, 48, 0.09) 70%, transparent 100%);
}

.nc-area-feature-content {
  max-width: 440px;
  padding: 22px;
  border-top: 3px solid var(--nc-turquoise);
  border-radius: var(--nc-radius-sm);
  background: rgba(7, 30, 48, 0.76);
  box-shadow: 0 16px 38px rgba(7, 30, 48, 0.18);
}

.nc-area-feature-city .nc-area-feature-content {
  border-top-color: var(--nc-coral);
}

.nc-area-directory {
  border: 1px solid rgba(12, 44, 68, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--nc-shadow-soft);
}

.nc-explore-section {
  position: relative;
  overflow: hidden;
  color: var(--nc-ink);
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 201, 77, 0.24), transparent 24%),
    radial-gradient(circle at 4% 92%, rgba(35, 195, 206, 0.14), transparent 30%),
    linear-gradient(180deg, #f3fcfc 0%, #fffaf0 100%);
}

.nc-explore-section::before {
  position: absolute;
  top: 60px;
  right: -90px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(7, 152, 173, 0.14);
  border-radius: 50%;
  box-shadow: inset 0 0 0 46px rgba(255, 255, 255, 0.28), inset 0 0 0 47px rgba(7, 152, 173, 0.08);
  content: "";
  pointer-events: none;
}

.nc-explore-section .nc-section-heading-light h2 {
  color: var(--nc-navy-deep);
}

.nc-explore-section .nc-section-heading-light > p:last-child {
  color: var(--nc-muted);
}

.nc-explore-section .nc-eyebrow-light {
  color: var(--nc-ocean-deep);
}

.nc-explore-shell {
  position: relative;
  border-color: rgba(12, 44, 68, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 64px rgba(7, 62, 83, 0.13);
}

.nc-tabs {
  border-bottom-color: var(--nc-line);
}

.nc-tabs button {
  border-right-color: var(--nc-line);
  color: var(--nc-muted);
}

.nc-tabs button:hover {
  color: var(--nc-ocean-deep);
}

.nc-tabs button[aria-selected="true"] {
  color: var(--nc-navy-deep);
  background: linear-gradient(180deg, rgba(35, 195, 206, 0.11), rgba(255, 255, 255, 0));
}

.nc-tabs button::after {
  background: linear-gradient(90deg, var(--nc-turquoise), var(--nc-coral));
}

.nc-explore-panel-head p {
  color: var(--nc-ocean-deep);
}

.nc-explore-panel-head h3 {
  color: var(--nc-navy-deep);
}

.nc-explore-panel-head a {
  border-color: rgba(3, 109, 126, 0.3);
  color: var(--nc-ocean-deep);
  background: var(--nc-white);
}

.nc-explore-panel-head a:hover {
  border-color: var(--nc-ocean);
  background: var(--nc-mist);
}

.nc-story-card {
  border: 1px solid rgba(12, 44, 68, 0.08);
  box-shadow: 0 12px 30px rgba(7, 62, 83, 0.1);
}

.nc-story-card:hover {
  box-shadow: 0 20px 42px rgba(7, 62, 83, 0.16);
}

.nc-content-disclaimer {
  color: var(--nc-muted);
}

.nc-map-section {
  background:
    radial-gradient(circle at 0% 14%, rgba(35, 195, 206, 0.12), transparent 24%),
    linear-gradient(180deg, var(--nc-paper), #f1fbfb);
}

.nc-map-stage {
  box-shadow: 0 22px 56px rgba(7, 62, 83, 0.13);
}

.nc-events-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 201, 77, 0.35), transparent 24%),
    linear-gradient(180deg, #fff4d8, #fffaf1);
}

.nc-event-card {
  border-color: rgba(12, 44, 68, 0.08);
  box-shadow: var(--nc-shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nc-event-card:hover {
  box-shadow: 0 20px 42px rgba(7, 62, 83, 0.14);
  transform: translateY(-4px);
}

.nc-event-card-feature {
  background:
    radial-gradient(circle at 90% 0%, rgba(35, 195, 206, 0.22), transparent 36%),
    var(--nc-navy);
}

.nc-audience-section {
  background:
    radial-gradient(circle at 0% 100%, rgba(255, 106, 71, 0.1), transparent 28%),
    var(--nc-white);
}

.nc-audience-grid {
  border: 0;
  gap: 14px;
}

.nc-audience-grid a {
  overflow: hidden;
  border: 1px solid rgba(12, 44, 68, 0.08);
  border-radius: var(--nc-radius);
  background: #effafa;
  box-shadow: var(--nc-shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nc-audience-grid a + a {
  border-left: 1px solid rgba(12, 44, 68, 0.08);
}

.nc-audience-grid a:nth-child(2) {
  background: #fff8df;
}

.nc-audience-grid a:nth-child(3) {
  background: #edf8f2;
}

.nc-audience-grid a:nth-child(4) {
  background: #eef6ff;
}

.nc-audience-grid a:nth-child(5) {
  background: linear-gradient(145deg, #fff9e6, #ffece5);
  box-shadow: inset 0 4px var(--nc-coral), var(--nc-shadow-soft);
}

.nc-audience-grid a:hover {
  background: var(--nc-white);
  box-shadow: 0 20px 42px rgba(7, 62, 83, 0.14);
  transform: translateY(-5px);
}

.nc-audience-grid svg {
  width: 48px;
  height: 48px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(7, 152, 173, 0.11);
}

.nc-audience-grid a:nth-child(2) svg {
  stroke: #a36c00;
  background: rgba(255, 201, 77, 0.22);
}

.nc-audience-grid a:nth-child(3) svg {
  stroke: var(--nc-leaf);
  background: rgba(47, 180, 124, 0.13);
}

.nc-audience-grid a:nth-child(4) svg {
  stroke: var(--nc-brand-blue);
  background: rgba(23, 179, 244, 0.11);
}

.nc-audience-grid a:nth-child(5) svg {
  stroke: var(--nc-coral);
  background: rgba(255, 106, 71, 0.13);
}

.nc-study-section {
  color: var(--nc-ink);
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 201, 77, 0.28), transparent 24%),
    radial-gradient(circle at 6% 88%, rgba(35, 195, 206, 0.16), transparent 30%),
    linear-gradient(145deg, #e9fbfc, #fff9ea);
}

.nc-study-route {
  border-color: rgba(7, 152, 173, 0.22);
}

.nc-study-route::before,
.nc-study-route::after {
  border-color: rgba(7, 152, 173, 0.12);
}

.nc-study-brand {
  width: fit-content;
  margin-bottom: 28px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(12, 44, 68, 0.08);
  border-radius: 999px;
  color: var(--nc-navy-deep);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--nc-shadow-soft);
}

.nc-compass-mark {
  border-color: rgba(3, 109, 126, 0.25);
  color: var(--nc-ocean-deep);
  background: var(--nc-mist);
}

.nc-study-brand p span {
  color: var(--nc-ocean-deep);
}

.nc-study-copy h2 {
  color: var(--nc-navy-deep);
}

.nc-study-title-end {
  white-space: nowrap;
}

.nc-study-lead {
  color: var(--nc-muted);
}

.nc-study-actions {
  display: flex;
  margin-top: 28px;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.nc-study-main-cta {
  margin-top: 0;
  box-shadow: 0 14px 30px rgba(255, 106, 71, 0.22);
}

.nc-study-secondary-cta {
  display: inline-flex;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid rgba(3, 109, 126, 0.26);
  border-radius: 6px;
  align-items: center;
  color: var(--nc-ocean-deep);
  background: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 900;
}

.nc-study-secondary-cta:hover {
  border-color: var(--nc-ocean);
  background: var(--nc-white);
}

.nc-study-preview-note {
  color: rgba(16, 52, 74, 0.58);
}

.nc-study-preview-note code {
  color: var(--nc-ocean-deep);
}

.nc-study-visual {
  border: 5px solid var(--nc-white);
  background: var(--nc-mist);
  box-shadow: 0 26px 64px rgba(7, 62, 83, 0.18);
  transform: rotate(0.7deg);
}

.nc-study-visual::after {
  background: linear-gradient(0deg, rgba(7, 30, 48, 0.26), transparent 44%);
}

.nc-study-ticket {
  border-color: rgba(12, 44, 68, 0.12);
  color: var(--nc-navy-deep);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(7, 30, 48, 0.14);
}

.nc-study-ticket span {
  color: var(--nc-ocean-deep);
}

.nc-study-paths {
  border: 0;
  gap: 14px;
}

.nc-study-paths a {
  border: 1px solid rgba(12, 44, 68, 0.09);
  border-radius: var(--nc-radius);
  color: var(--nc-ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--nc-shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nc-study-paths a + a {
  border-left: 1px solid rgba(12, 44, 68, 0.09);
}

.nc-study-paths a:hover {
  background: var(--nc-white);
  box-shadow: 0 20px 42px rgba(7, 62, 83, 0.14);
  transform: translateY(-5px);
}

.nc-study-paths a > span {
  color: var(--nc-coral);
}

.nc-study-paths strong {
  color: var(--nc-navy-deep);
}

.nc-study-paths small {
  color: var(--nc-muted);
}

.nc-study-paths svg {
  stroke: var(--nc-ocean-deep);
}

.nc-update-column {
  padding: 0 24px;
  border: 1px solid rgba(12, 44, 68, 0.08);
  border-top: 4px solid var(--nc-navy);
  border-radius: var(--nc-radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--nc-shadow-soft);
}

.nc-update-column:last-child {
  border-top-color: var(--nc-ocean);
}

.nc-mobile-study-nav {
  color: var(--nc-coral);
  background: linear-gradient(180deg, rgba(255, 201, 77, 0.18), rgba(255, 255, 255, 0));
}

.nc-mobile-study-nav svg {
  padding: 3px;
  border-radius: 50%;
  background: rgba(255, 106, 71, 0.11);
}

@keyframes nc-v2-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes nc-v2-hero-reveal {
  from {
    opacity: 0.72;
    transform: scale(1.035);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.nc-js-ready .nc-hero-media img {
  animation: nc-v2-hero-reveal 900ms ease-out both;
}

.nc-js-ready .nc-hero-copy > * {
  animation: nc-v2-rise 560ms ease-out both;
}

.nc-js-ready .nc-hero-copy > :nth-child(2) {
  animation-delay: 60ms;
}

.nc-js-ready .nc-hero-copy > :nth-child(3) {
  animation-delay: 120ms;
}

.nc-js-ready .nc-hero-copy > :nth-child(4) {
  animation-delay: 180ms;
}

.nc-js-ready .nc-hero-copy > :nth-child(5) {
  animation-delay: 240ms;
}

.nc-js-ready .nc-route-card {
  animation: nc-v2-rise 480ms ease-out both;
}

.nc-js-ready .nc-route-card:nth-child(1) {
  animation-delay: 220ms;
}

.nc-js-ready .nc-route-card:nth-child(2) {
  animation-delay: 280ms;
}

.nc-js-ready .nc-route-card:nth-child(3) {
  animation-delay: 340ms;
}

.nc-js-ready .nc-route-card:nth-child(4) {
  animation-delay: 400ms;
}

@media (max-width: 1180px) {
  :root {
    --nc-header-h: 72px;
  }

  .nc-container {
    width: min(var(--nc-max), calc(100% - 48px));
  }

  .nc-primary-nav {
    display: none;
  }

  .nc-header-actions {
    margin-left: auto;
  }

  .nc-menu-button {
    display: flex;
    width: 72px;
    padding: 8px;
    border: 0;
    border-left: 1px solid rgba(16, 52, 74, 0.1);
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    gap: 2px;
    background: transparent;
    cursor: pointer;
  }

  .nc-menu-button svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
  }

  .nc-menu-button-label {
    font-size: 9px;
    font-weight: 700;
  }

  .nc-mobile-backdrop {
    position: fixed;
    z-index: 140;
    inset: 0;
    display: block;
    background: rgba(7, 30, 48, 0.52);
  }

  .nc-mobile-backdrop[hidden] {
    display: none;
  }

  .nc-mobile-menu {
    position: fixed;
    z-index: 150;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(420px, 92vw);
    padding: 26px;
    overflow-x: hidden;
    overflow-y: auto;
    flex-direction: column;
    color: var(--nc-white);
    background: var(--nc-navy-deep);
    box-shadow: -20px 0 60px rgba(7, 30, 48, 0.24);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }

  .nc-mobile-menu.is-open {
    transform: translateX(0);
  }

  .nc-mobile-menu-head {
    display: flex;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    align-items: center;
    justify-content: space-between;
  }

  .nc-mobile-menu-head p {
    margin: 0;
    color: #7eeaf0;
    font-family: "Outfit", sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
  }

  .nc-mobile-menu-head button {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    place-items: center;
    color: var(--nc-white);
    background: transparent;
    cursor: pointer;
  }

  .nc-mobile-menu-head svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.7;
  }

  .nc-mobile-menu-main {
    padding: 20px 0;
    margin: 0;
    list-style: none;
  }

  .nc-mobile-menu-main a {
    display: grid;
    grid-template-columns: 36px 1fr;
    min-height: 54px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    align-items: center;
    font-size: 15px;
    font-weight: 800;
  }

  .nc-mobile-menu-main a span {
    color: #7eeaf0;
    font-family: "Outfit", sans-serif;
    font-size: 9px;
  }

  .nc-mobile-menu-secondary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .nc-mobile-menu-secondary a {
    display: flex;
    min-height: 90px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--nc-radius-sm);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
  }

  .nc-mobile-menu-secondary svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #7eeaf0;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
  }

  .nc-mobile-menu-note {
    margin: auto 0 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
  }

  .nc-hero {
    min-height: 760px;
  }

  .nc-hero-inner {
    min-height: 590px;
  }

  .nc-hero-copy {
    width: min(690px, 74%);
  }

  .nc-route-card {
    grid-template-columns: 38px minmax(0, 1fr) 18px;
    padding-inline: 18px;
    gap: 10px;
  }

  .nc-route-card > svg:not(.nc-route-arrow) {
    width: 38px;
    height: 38px;
    padding: 8px;
  }

  .nc-first-grid,
  .nc-story-grid,
  .nc-study-paths {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nc-primer-card:nth-child(3) {
    border-left: 1px solid rgba(12, 44, 68, 0.09);
  }

  .nc-primer-card:nth-child(n + 3) {
    border-top: 1px solid var(--nc-line);
  }

  .nc-story-grid {
    gap: 18px;
  }

  .nc-study-paths a:nth-child(3) {
    border-top: 1px solid rgba(12, 44, 68, 0.09);
    border-left: 1px solid rgba(12, 44, 68, 0.09);
  }

  .nc-study-paths a:nth-child(4) {
    border-top: 1px solid rgba(12, 44, 68, 0.09);
  }

  .nc-event-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nc-event-card-feature {
    grid-column: 1 / -1;
  }

  .nc-map-equivalent {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .nc-section {
    padding-block: 72px;
  }

  .nc-section-heading-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .nc-section-heading-split > p:last-child {
    margin: 0;
  }

  .nc-header-actions .nc-icon-link {
    display: none;
  }

  .nc-guide-link {
    min-width: 146px;
    padding: 8px 34px 8px 14px;
  }

  .nc-hero {
    min-height: 890px;
  }

  .nc-hero-media,
  .nc-hero-shade {
    bottom: 230px;
  }

  .nc-hero-media img {
    object-position: 68% center;
  }

  .nc-hero-shade {
    background:
      linear-gradient(90deg, rgba(255, 253, 249, 0.97) 0%, rgba(255, 253, 249, 0.86) 60%, rgba(255, 253, 249, 0.28) 100%),
      linear-gradient(0deg, rgba(255, 253, 249, 0.74), rgba(255, 253, 249, 0) 44%);
  }

  .nc-hero-inner {
    min-height: 660px;
    padding-top: 60px;
  }

  .nc-hero-copy {
    width: 88%;
  }

  .nc-route-wrap {
    bottom: 0;
  }

  .nc-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nc-route-card {
    min-height: 116px;
    padding-block: 24px;
  }

  .nc-route-card + .nc-route-card {
    border-left: 0;
  }

  .nc-route-card:nth-child(even) {
    border-left: 1px solid var(--nc-line);
  }

  .nc-route-card:nth-child(n + 3) {
    border-top: 1px solid var(--nc-line);
  }

  .nc-first-section {
    padding-top: 90px;
  }

  .nc-area-feature-grid,
  .nc-map-layout,
  .nc-study-shell,
  .nc-trust-panel,
  .nc-faq-layout {
    grid-template-columns: 1fr;
  }

  .nc-area-feature {
    min-height: 460px;
  }

  .nc-area-directory ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nc-area-directory li:nth-child(3n + 1) {
    border-left: 1px solid var(--nc-line);
  }

  .nc-area-directory li:nth-child(odd) {
    border-left: 0;
  }

  .nc-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(144px, 1fr));
    scrollbar-width: thin;
  }

  .nc-map-copy {
    padding: 0;
  }

  .nc-map-stage {
    min-height: 540px;
  }

  .nc-map-equivalent ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 1px;
    background: var(--nc-line);
  }

  .nc-map-equivalent li {
    border-left: 0;
    background: var(--nc-paper);
  }

  .nc-event-grid {
    grid-template-columns: 1fr;
  }

  .nc-event-card-feature {
    grid-column: auto;
  }

  .nc-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nc-audience-grid a {
    min-height: 190px;
    border: 1px solid rgba(12, 44, 68, 0.08);
  }

  .nc-audience-grid a:nth-child(odd) {
    border-left: 1px solid rgba(12, 44, 68, 0.08);
  }

  .nc-audience-grid a:last-child {
    grid-column: 1 / -1;
    min-height: 150px;
  }

  .nc-study-shell {
    gap: 38px;
  }

  .nc-study-visual {
    min-height: 420px;
    transform: none;
  }

  .nc-study-mosaic {
    height: 420px;
  }

  .nc-update-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .nc-trust-panel {
    gap: 28px;
  }

  .nc-faq-layout {
    gap: 36px;
  }

  .nc-faq-layout .nc-section-heading {
    position: static;
  }
}

@media (max-width: 600px) {
  :root {
    --nc-header-h: 66px;
  }

  html {
    scroll-padding-top: 80px;
  }

  body.nc-prototype {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
    font-size: 16px;
  }

  .nc-container {
    width: calc(100% - 36px);
  }

  .nc-mobile-only {
    display: initial;
  }

  .nc-section {
    padding-block: 64px;
  }

  .nc-section-heading {
    margin-bottom: 34px;
  }

  .nc-section-heading h2 {
    font-size: 36px;
    line-height: 1.24;
  }

  .nc-section-heading > p:last-child {
    margin-top: 16px;
    font-size: 16px;
  }

  .nc-header-inner {
    padding-inline: 16px 0;
  }

  .nc-brand {
    width: 126px;
    margin-right: auto;
  }

  .nc-brand img {
    width: 118px;
  }

  .nc-brand span {
    font-size: 7px;
  }

  .nc-header-actions {
    display: none;
  }

  .nc-menu-button {
    width: 66px;
  }

  .nc-hero {
    min-height: 970px;
  }

  .nc-hero-media,
  .nc-hero-shade {
    bottom: 326px;
  }

  .nc-hero-media img {
    object-position: 67% center;
  }

  .nc-hero-shade {
    background:
      linear-gradient(90deg, rgba(255, 253, 249, 0.97), rgba(255, 253, 249, 0.7)),
      linear-gradient(0deg, rgba(255, 253, 249, 0.88), rgba(255, 253, 249, 0.08) 58%);
  }

  .nc-hero-inner {
    min-height: 644px;
    padding: 42px 0 110px;
  }

  .nc-route-wrap {
    bottom: 60px;
  }

  .nc-hero-copy {
    width: 100%;
  }

  .nc-hero-copy h1 {
    font-size: clamp(36px, 10.2vw, 43px);
    line-height: 1.18;
  }

  .nc-hero-description {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.8;
  }

  .nc-hero-search {
    grid-template-columns: 24px minmax(0, 1fr);
    min-height: 58px;
    margin-top: 20px;
    padding: 5px 12px 5px 14px;
  }

  .nc-hero-search input {
    min-height: 46px;
    padding-inline: 8px 0;
    font-size: 16px;
  }

  .nc-hero-search > button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 46px;
    margin-bottom: 6px;
  }

  .nc-search-results {
    top: calc(100% + 6px);
  }

  .nc-hero-tools {
    gap: 18px;
    margin-top: 12px;
  }

  .nc-hero-tools a,
  .nc-hero-tools button {
    font-size: 11px;
  }

  .nc-photo-note {
    display: none;
  }

  .nc-route-grid {
    border-radius: var(--nc-radius-sm);
  }

  .nc-route-card {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 140px;
    padding: 30px 14px 22px;
    align-content: center;
    gap: 8px;
  }

  .nc-route-card > svg:not(.nc-route-arrow) {
    width: 36px;
    height: 36px;
    padding: 8px;
  }

  .nc-route-copy strong {
    font-size: 14px;
  }

  .nc-route-copy small {
    font-size: 9px;
  }

  .nc-route-arrow {
    display: none;
  }

  .nc-first-section {
    padding-top: 64px;
  }

  .nc-first-grid {
    grid-template-columns: 1fr;
  }

  .nc-primer-card {
    padding: 28px 22px;
  }

  .nc-primer-card + .nc-primer-card {
    border: 1px solid rgba(12, 44, 68, 0.09);
  }

  .nc-primer-card p {
    min-height: 0;
    font-size: 16px;
  }

  .nc-status-ribbon {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 10px;
  }

  .nc-status-ribbon p {
    font-size: 14px;
  }

  .nc-area-feature {
    min-height: 430px;
  }

  .nc-area-feature-content {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .nc-area-feature-content h3 {
    font-size: 28px;
  }

  .nc-area-directory {
    padding: 22px 18px 6px;
  }

  .nc-area-directory-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .nc-area-directory ul {
    grid-template-columns: 1fr;
  }

  .nc-area-directory li,
  .nc-area-directory li:nth-child(3n + 1),
  .nc-area-directory li:nth-child(odd) {
    border-left: 0;
  }

  .nc-explore-shell {
    margin-inline: -6px;
  }

  .nc-tabs {
    grid-template-columns: repeat(5, minmax(124px, 1fr));
  }

  .nc-tabs button {
    min-height: 56px;
    font-size: 12px;
  }

  .nc-explore-panel {
    padding: 24px 16px 20px;
  }

  .nc-explore-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .nc-story-grid {
    grid-template-columns: 1fr;
  }

  .nc-story-card a {
    display: grid;
    grid-template-columns: 118px 1fr;
  }

  .nc-story-media {
    height: 100%;
    min-height: 168px;
    aspect-ratio: auto;
  }

  .nc-story-body {
    padding: 14px;
  }

  .nc-story-body h4 {
    font-size: 14px;
  }

  .nc-story-body p {
    display: none;
  }

  .nc-content-disclaimer {
    text-align: left;
  }

  .nc-map-stage {
    min-height: 480px;
  }

  .nc-map-detail p {
    font-size: 16px;
  }

  .nc-map-consent {
    padding: 28px;
  }

  .nc-map-consent p {
    font-size: 19px;
  }

  .nc-map-marker {
    width: 44px;
    height: 44px;
  }

  .nc-map-equivalent ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nc-event-card {
    grid-template-columns: 68px 1fr;
    min-height: 0;
    padding: 22px 18px;
    gap: 16px;
  }

  .nc-event-card p:last-child {
    font-size: 16px;
    line-height: 1.7;
  }

  .nc-event-date {
    width: 68px;
    min-height: 82px;
  }

  .nc-event-date strong {
    font-size: 19px;
  }

  .nc-event-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nc-event-footer a {
    width: 100%;
    justify-content: center;
  }

  .nc-audience-grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .nc-audience-grid a,
  .nc-audience-grid a:last-child {
    grid-column: auto;
    min-height: 136px;
    border: 1px solid rgba(12, 44, 68, 0.08);
  }

  .nc-audience-grid svg {
    margin-bottom: 18px;
  }

  .nc-study-visual {
    min-height: 340px;
  }

  .nc-study-mosaic {
    height: 340px;
  }

  .nc-study-mosaic-main {
    grid-column: 1 / 8;
    grid-row: 1 / 7;
  }

  .nc-study-mosaic-beach {
    grid-column: 8 / 13;
    grid-row: 1 / 7;
  }

  .nc-study-mosaic-life {
    grid-column: 1 / 7;
    grid-row: 7 / 13;
  }

  .nc-study-mosaic-sea {
    grid-column: 7 / 13;
    grid-row: 7 / 13;
  }

  .nc-study-ticket {
    right: 12px;
    bottom: 12px;
    left: 12px;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .nc-study-paths {
    grid-template-columns: 1fr;
  }

  .nc-study-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .nc-study-main-cta,
  .nc-study-secondary-cta {
    width: 100%;
    justify-content: center;
  }

  .nc-study-paths a,
  .nc-study-paths a:nth-child(3),
  .nc-study-paths a:nth-child(4) {
    min-height: 132px;
    border: 1px solid rgba(12, 44, 68, 0.09);
  }

  .nc-study-paths a:first-child {
    border-top: 1px solid rgba(12, 44, 68, 0.09);
  }

  .nc-update-item {
    grid-template-columns: 72px 1fr 44px;
    gap: 12px;
  }

  .nc-update-item p {
    font-size: 14px;
  }

  .nc-trust-panel {
    padding: 28px 22px;
  }

  .nc-trust-panel > div > p:last-child {
    font-size: 16px;
    line-height: 1.8;
  }

  .nc-trust-panel nav {
    grid-template-columns: 1fr;
  }

  .nc-faq-list summary {
    grid-template-columns: 28px 1fr 30px;
    min-height: 84px;
    gap: 8px;
    font-size: 14px;
  }

  .nc-faq-list details > div {
    padding: 0 36px 24px 36px;
  }

  .nc-faq-list details p {
    font-size: 16px;
    line-height: 1.8;
  }

  .nc-footer-top,
  .nc-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nc-footer-top {
    gap: 28px;
  }

  .nc-footer-grid a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    font-size: 13px;
  }

  .nc-footer-statement {
    font-size: 14px;
  }

  .nc-footer-brand p {
    font-size: 16px;
  }

  .nc-footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .nc-mobile-bottom-nav {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: calc(64px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid var(--nc-line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -8px 24px rgba(7, 30, 48, 0.1);
  }

  .nc-mobile-bottom-nav a,
  .nc-mobile-bottom-nav button {
    display: flex;
    min-width: 0;
    min-height: 64px;
    padding: 7px 2px;
    border: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    color: var(--nc-muted);
    background: transparent;
    cursor: pointer;
  }

  .nc-mobile-bottom-nav svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
  }

  .nc-mobile-bottom-nav span {
    font-size: 9px;
    font-weight: 800;
  }

  .nc-mobile-bottom-nav a:hover,
  .nc-mobile-bottom-nav button:hover {
    color: var(--nc-ocean-deep);
  }

  .nc-mobile-bottom-nav .nc-mobile-study-nav {
    color: var(--nc-coral);
    background: linear-gradient(180deg, rgba(255, 201, 77, 0.2), rgba(255, 255, 255, 0));
  }

  .nc-toast {
    right: 16px;
    bottom: calc(80px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 360px) {
  .nc-container {
    width: calc(100% - 32px);
  }

  .nc-hero-copy h1 {
    font-size: 35px;
  }

  .nc-hero-description {
    font-size: 16px;
  }

  .nc-route-card {
    padding-inline: 11px;
  }

  .nc-route-copy strong {
    font-size: 13px;
  }

  .nc-story-card a {
    grid-template-columns: 104px 1fr;
  }

  .nc-update-item {
    grid-template-columns: 1fr 44px;
  }

  .nc-update-item time {
    grid-column: 1 / -1;
  }

  .nc-footer-top {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .nc-prototype *,
  .nc-prototype *::before,
  .nc-prototype *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .nc-site-header,
  .nc-mobile-menu,
  .nc-mobile-bottom-nav,
  .nc-toast,
  .nc-map-consent {
    display: none !important;
  }

  .nc-hero {
    min-height: 0;
    padding-top: 0;
  }

  .nc-hero-media,
  .nc-hero-shade {
    inset: 0;
  }
}

/* Cebu spot illustration system */
.nc-spot-icon {
  --nc-spot-color: #036d7e;
  --nc-spot-bg: #e7f9fa;
  --nc-spot-sun: #ffc94d;
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(3, 109, 126, 0.16);
  border-radius: 20px 20px 8px 20px;
  color: var(--nc-spot-color);
  background:
    radial-gradient(circle at 80% 18%, var(--nc-spot-sun) 0 5px, transparent 5.5px),
    linear-gradient(145deg, #fff 4%, var(--nc-spot-bg) 92%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 10px 24px rgba(7, 62, 83, 0.1);
  font-style: normal;
  isolation: isolate;
}

.nc-spot-icon::before {
  position: absolute;
  right: -13px;
  bottom: -13px;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.14;
}

.nc-spot-icon::after {
  position: absolute;
  right: 5px;
  bottom: 3px;
  color: currentColor;
  content: "";
  opacity: 0.62;
}

.nc-spot-icon svg {
  position: relative;
  z-index: 1;
  width: 43px;
  height: 43px;
  margin: 0;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.nc-spot-icon--map {
  --nc-spot-color: #087b8b;
  --nc-spot-bg: #dff7f5;
  border-radius: 8px 22px 8px 22px;
}

.nc-spot-icon--ocean {
  --nc-spot-color: #007596;
  --nc-spot-bg: #dff7ff;
  --nc-spot-sun: #ffd45f;
  border-radius: 50% 50% 18px 50%;
}

.nc-spot-icon--taste {
  --nc-spot-color: #c65042;
  --nc-spot-bg: #fff0e8;
  --nc-spot-sun: #ffbe63;
  border-color: rgba(198, 80, 66, 0.16);
  border-radius: 28px 28px 10px 10px;
}

.nc-spot-icon--study {
  --nc-spot-color: #0c4668;
  --nc-spot-bg: #e6f4ff;
  --nc-spot-sun: #ff8067;
  border-color: rgba(12, 70, 104, 0.16);
  border-radius: 7px 22px 7px 22px;
}

.nc-spot-icon--airport {
  --nc-spot-color: #1473a4;
  --nc-spot-bg: #e6f5ff;
  --nc-spot-sun: #ffca58;
  border-radius: 22px 8px 22px 8px;
}

.nc-spot-icon--city {
  --nc-spot-color: #065f82;
  --nc-spot-bg: #e4f5f6;
  --nc-spot-sun: #ff826c;
  border-radius: 8px 8px 24px 8px;
}

.nc-spot-icon--ride {
  --nc-spot-color: #9c5d14;
  --nc-spot-bg: #fff2c7;
  --nc-spot-sun: #2ec6c4;
  border-color: rgba(156, 93, 20, 0.15);
  border-radius: 12px 24px 12px 12px;
}

.nc-spot-icon--weather {
  --nc-spot-color: #4b78a8;
  --nc-spot-bg: #edf5ff;
  --nc-spot-sun: #ffbd46;
  border-color: rgba(75, 120, 168, 0.16);
  border-radius: 50% 18px 50% 50%;
}

.nc-spot-icon--passport {
  --nc-spot-color: #0b6e8d;
  --nc-spot-bg: #e4f7fb;
  border-radius: 9px 18px 9px 18px;
}

.nc-spot-icon--family {
  --nc-spot-color: #c35b49;
  --nc-spot-bg: #fff1e7;
  border-color: rgba(195, 91, 73, 0.16);
  border-radius: 50% 50% 20px 20px;
}

.nc-spot-icon--longstay {
  --nc-spot-color: #2f7289;
  --nc-spot-bg: #e7f6f7;
  --nc-spot-sun: #ffd266;
  border-radius: 8px 24px 8px 8px;
}

.nc-spot-icon--work {
  --nc-spot-color: #305c8d;
  --nc-spot-bg: #edf2ff;
  --nc-spot-sun: #5cd3c8;
  border-color: rgba(48, 92, 141, 0.15);
  border-radius: 20px 8px 20px 8px;
}

.nc-route-card {
  grid-template-columns: 62px minmax(0, 1fr) 22px;
  min-height: 146px;
  padding: 26px 22px;
  gap: 13px;
}

.nc-route-card > .nc-spot-icon {
  grid-column: 1;
  grid-row: 1;
  width: 56px;
  height: 56px;
}

.nc-route-card > .nc-spot-icon svg {
  width: 38px;
  height: 38px;
}

.nc-route-card:hover > .nc-spot-icon,
.nc-route-card:focus-visible > .nc-spot-icon {
  transform: translateY(-2px) rotate(-1deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 14px 28px rgba(7, 62, 83, 0.16);
}

.nc-route-card > .nc-spot-icon {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nc-primer-card > .nc-spot-icon {
  margin-bottom: 24px;
}

.nc-primer-card:hover > .nc-spot-icon {
  transform: translateY(-3px);
}

.nc-primer-card > .nc-spot-icon {
  transition: transform 180ms ease;
}

.nc-audience-grid .nc-spot-icon {
  width: 60px;
  height: 60px;
  margin-bottom: auto;
}

.nc-audience-grid .nc-spot-icon svg {
  position: relative;
  width: 40px;
  height: 40px;
  margin: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
}

.nc-audience-grid a:hover .nc-spot-icon {
  transform: translateY(-3px) rotate(-1deg);
}

.nc-audience-grid .nc-spot-icon {
  transition: transform 180ms ease;
}

.nc-study-paths a {
  min-height: 174px;
  padding: 20px 22px 22px;
}

.nc-study-path-icon {
  position: absolute;
  top: 18px;
  left: 20px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(8, 123, 139, 0.2);
  border-radius: 14px 14px 5px 14px;
  color: #087b8b;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 201, 77, 0.92) 0 4px, transparent 4.5px),
    linear-gradient(145deg, #fff, #ddf7f7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 8px 18px rgba(7, 62, 83, 0.09);
  font-style: normal;
}

.nc-study-paths a:nth-child(2) .nc-study-path-icon {
  border-color: rgba(43, 103, 151, 0.18);
  color: #2b6797;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 128, 103, 0.86) 0 4px, transparent 4.5px),
    linear-gradient(145deg, #fff, #e9f1ff);
}

.nc-study-paths a:nth-child(3) .nc-study-path-icon {
  border-color: rgba(198, 80, 66, 0.17);
  color: #b95848;
  background:
    radial-gradient(circle at 80% 20%, rgba(46, 198, 196, 0.9) 0 4px, transparent 4.5px),
    linear-gradient(145deg, #fff, #fff0e8);
}

.nc-study-paths a:nth-child(4) .nc-study-path-icon {
  border-color: rgba(12, 70, 104, 0.18);
  color: #0c4668;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 201, 77, 0.96) 0 4px, transparent 4.5px),
    linear-gradient(145deg, #fff, #e6f4ff);
}

.nc-study-path-icon svg {
  position: static;
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.nc-study-path-kicker {
  min-height: 48px;
  padding-left: 58px;
}

.nc-study-paths .nc-study-path-arrow {
  top: 23px;
  right: 18px;
}

.nc-study-paths a:hover .nc-study-path-icon {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 24px rgba(7, 62, 83, 0.14);
}

.nc-study-path-icon {
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.nc-update-code {
  color: var(--nc-ocean-deep);
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.nc-update-item:nth-child(2) .nc-update-code,
.nc-update-item:nth-child(3) .nc-update-code {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(3, 109, 126, 0.16);
  border-radius: 50%;
  background: #e7f9fa;
}

@media (max-width: 1180px) {
  .nc-route-card {
    grid-template-columns: 52px minmax(0, 1fr) 18px;
    padding-inline: 16px;
    gap: 10px;
  }

  .nc-route-card > .nc-spot-icon {
    width: 48px;
    height: 48px;
  }

  .nc-route-card > .nc-spot-icon svg {
    width: 33px;
    height: 33px;
  }

  .nc-spot-icon::after {
    display: none;
  }

  .nc-audience-grid .nc-spot-icon {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 840px) {
  .nc-route-card {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .nc-route-card > .nc-spot-icon {
    width: 44px;
    height: 44px;
  }

  .nc-route-card > .nc-spot-icon svg {
    width: 30px;
    height: 30px;
  }

  .nc-primer-card > .nc-spot-icon,
  .nc-audience-grid .nc-spot-icon {
    width: 56px;
    height: 56px;
  }

  .nc-primer-card > .nc-spot-icon svg,
  .nc-audience-grid .nc-spot-icon svg {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 600px) {
  .nc-route-card {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 140px;
    padding: 28px 12px 20px;
    gap: 8px;
  }

  .nc-route-card > .nc-spot-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px 12px 5px 12px;
  }

  .nc-route-card > .nc-spot-icon svg {
    width: 28px;
    height: 28px;
  }

  .nc-spot-icon::before {
    display: none;
  }

  .nc-primer-card > .nc-spot-icon,
  .nc-audience-grid .nc-spot-icon {
    width: 54px;
    height: 54px;
  }

  .nc-study-paths a {
    min-height: 146px;
    padding-top: 18px;
  }

  .nc-study-path-icon {
    top: 17px;
    left: 18px;
    width: 42px;
    height: 42px;
  }

  .nc-study-path-icon svg {
    width: 29px;
    height: 29px;
  }

  .nc-study-path-kicker {
    min-height: 42px;
    padding-left: 52px;
  }

  .nc-update-item {
    grid-template-columns: 52px minmax(0, 1fr) 44px;
  }
}

@media (max-width: 360px) {
  .nc-route-card {
    grid-template-columns: 38px minmax(0, 1fr);
    padding-inline: 10px;
  }

  .nc-route-card > .nc-spot-icon {
    width: 36px;
    height: 36px;
  }

  .nc-route-card > .nc-spot-icon svg {
    width: 25px;
    height: 25px;
  }

  .nc-update-item {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }
}

/* Hero v5 — Cebu scenery with a human experience anchor */
.nc-hero {
  color: var(--nc-white);
  background: #0b83b8;
}

.nc-hero-media,
.nc-hero-shade {
  bottom: 0;
}

.nc-hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.nc-hero-media img {
  object-position: 52% 50%;
  filter: saturate(1.03) contrast(1.02) brightness(1.02);
}

.nc-hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(4, 35, 57, 0.44) 0%,
      rgba(4, 35, 57, 0.28) 29%,
      rgba(4, 35, 57, 0.08) 48%,
      rgba(4, 35, 57, 0) 67%
    ),
    linear-gradient(
      0deg,
      rgba(4, 35, 57, 0.24) 0%,
      rgba(4, 35, 57, 0) 34%
    );
}

.nc-hero-copy {
  width: min(600px, 52%);
}

.nc-hero-copy .nc-eyebrow {
  color: #e6fdff;
  text-shadow: 0 2px 14px rgba(3, 32, 51, 0.42);
}

.nc-hero-copy h1 {
  color: var(--nc-white);
  text-shadow: 0 3px 26px rgba(3, 32, 51, 0.38);
}

.nc-hero-title-accent {
  color: var(--nc-white);
  box-shadow: inset 0 -0.16em rgba(255, 201, 77, 0.92);
}

.nc-hero-description {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 700;
  text-shadow: 0 2px 14px rgba(3, 32, 51, 0.4);
}

.nc-hero-search {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 54px rgba(3, 37, 59, 0.25);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.nc-hero-tools a,
.nc-hero-tools button {
  color: var(--nc-white);
  text-shadow: 0 2px 12px rgba(3, 32, 51, 0.48);
}

.nc-hero-tools a:hover,
.nc-hero-tools button:hover {
  color: #fff0a6;
}

@media (max-width: 840px) {
  .nc-hero-media,
  .nc-hero-shade {
    bottom: 0;
  }

  .nc-hero-media img {
    object-position: 70% 50%;
  }

  .nc-hero-copy {
    width: min(620px, 88%);
  }

  .nc-hero-shade {
    background:
      linear-gradient(
        90deg,
        rgba(4, 35, 57, 0.56) 0%,
        rgba(4, 35, 57, 0.36) 48%,
        rgba(4, 35, 57, 0.12) 78%,
        rgba(4, 35, 57, 0.04) 100%
      ),
      linear-gradient(
        0deg,
        rgba(4, 35, 57, 0.26) 0%,
        rgba(4, 35, 57, 0) 38%
      );
  }
}

@media (max-width: 600px) {
  .nc-hero {
    min-height: 920px;
  }

  .nc-route-wrap {
    bottom: 0;
  }

  .nc-hero-media img {
    object-position: 55% 50%;
  }

  .nc-hero-shade {
    background:
      linear-gradient(
        180deg,
        rgba(3, 34, 55, 0.54) 0%,
        rgba(3, 34, 55, 0.38) 46%,
        rgba(3, 34, 55, 0.14) 64%,
        rgba(3, 34, 55, 0.06) 100%
      );
  }

  .nc-hero-search {
    grid-template-columns: 24px minmax(0, 1fr) 72px;
    min-height: 58px;
  }

  .nc-hero-search > button {
    grid-column: auto;
    width: auto;
    min-width: 72px;
    min-height: 46px;
    margin: 0;
    padding-inline: 12px;
  }
}

/* Category story rails — visible H2 taxonomy with native horizontal browsing */
.nc-explore-section {
  padding-block: 112px 120px;
  overflow: clip;
}

.nc-explore-section::before {
  top: 28px;
  right: -120px;
  width: 360px;
  height: 360px;
  opacity: 0.72;
}

.nc-explore-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  margin-bottom: 84px;
  align-items: end;
  gap: 72px;
}

.nc-explore-intro .nc-eyebrow {
  color: var(--nc-ocean-deep);
}

.nc-explore-display-title {
  margin: 0;
  color: var(--nc-navy-deep);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.16;
}

.nc-explore-intro > p:last-child {
  max-width: 520px;
  margin: 0 0 8px;
  color: var(--nc-muted);
  font-size: 17px;
  line-height: 1.9;
}

.nc-category-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 94px;
}

.nc-category-rail {
  --nc-rail-accent: var(--nc-turquoise);
  --nc-rail-accent-dark: var(--nc-ocean-deep);
  --nc-rail-tint: rgba(35, 195, 206, 0.12);
  min-width: 0;
  overflow: clip;
  scroll-margin-top: calc(var(--nc-header-h) + 28px);
}

.nc-category-rail-area {
  --nc-rail-accent: #4e87d8;
  --nc-rail-accent-dark: #27558f;
  --nc-rail-tint: rgba(78, 135, 216, 0.12);
}

.nc-category-rail-food {
  --nc-rail-accent: var(--nc-coral);
  --nc-rail-accent-dark: #b3472f;
  --nc-rail-tint: rgba(255, 106, 71, 0.11);
}

.nc-category-rail-hotels {
  --nc-rail-accent: #f0b52f;
  --nc-rail-accent-dark: #92700e;
  --nc-rail-tint: rgba(255, 201, 77, 0.18);
}

.nc-category-rail-life {
  --nc-rail-accent: var(--nc-leaf);
  --nc-rail-accent-dark: #1d7d57;
  --nc-rail-tint: rgba(47, 180, 124, 0.12);
}

.nc-category-rail-events {
  --nc-rail-accent: #a26bc7;
  --nc-rail-accent-dark: #6f3e91;
  --nc-rail-tint: rgba(162, 107, 199, 0.12);
}

.nc-category-header {
  position: relative;
  display: flex;
  margin-bottom: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(12, 44, 68, 0.14);
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
}

.nc-category-header::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 72px;
  height: 3px;
  border-radius: 99px;
  background: var(--nc-rail-accent);
  content: "";
}

.nc-category-header > div:first-child {
  max-width: 720px;
}

.nc-category-kicker {
  margin: 0 0 7px;
  color: var(--nc-rail-accent-dark);
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.nc-category-header h2 {
  margin: 0;
  color: var(--nc-navy-deep);
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.24;
}

.nc-category-description {
  margin: 11px 0 0;
  color: var(--nc-muted);
  font-size: 15px;
  line-height: 1.75;
}

.nc-category-actions {
  display: flex;
  flex: 0 0 auto;
  padding-bottom: 2px;
  align-items: center;
  gap: 22px;
}

.nc-category-actions > a,
.nc-category-mobile-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--nc-navy-deep);
  font-size: 12px;
  font-weight: 900;
}

.nc-category-actions > a {
  position: relative;
}

.nc-category-actions > a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--nc-rail-accent);
  content: "";
  transform: scaleX(0.22);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nc-category-actions > a:hover::after {
  transform: scaleX(1);
}

.nc-category-actions svg,
.nc-category-mobile-cta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nc-category-nav {
  display: flex;
  gap: 8px;
}

.nc-category-nav button {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(12, 44, 68, 0.17);
  border-radius: 50%;
  place-items: center;
  color: var(--nc-navy-deep);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 20px rgba(7, 62, 83, 0.07);
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nc-category-nav button:hover:not(:disabled) {
  border-color: var(--nc-rail-accent);
  color: var(--nc-rail-accent-dark);
  background: var(--nc-white);
  transform: translateY(-2px);
}

.nc-category-nav button:disabled {
  opacity: 0.28;
  cursor: default;
  box-shadow: none;
}

.nc-category-nav button:first-child svg {
  transform: rotate(180deg);
}

.nc-category-nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.nc-category-track {
  display: flex;
  min-width: 0;
  contain: paint;
  padding: 8px 3px 30px;
  margin: -8px -3px -30px;
  align-items: stretch;
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 3px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.nc-category-track::-webkit-scrollbar {
  display: none;
}

.nc-category-track:focus-visible {
  border-radius: var(--nc-radius);
  outline-offset: 6px;
}

.nc-category-track .nc-story-card {
  flex: 0 0 clamp(282px, 26vw, 326px);
  border-top: 3px solid var(--nc-rail-accent);
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.nc-category-track .nc-story-card-featured {
  flex-basis: clamp(344px, 32vw, 398px);
}

.nc-category-track .nc-story-card a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.nc-category-track .nc-story-media {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
}

.nc-category-track .nc-story-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(0deg, rgba(7, 30, 48, 0.12), transparent);
  content: "";
  pointer-events: none;
}

.nc-category-track .nc-story-media img {
  aspect-ratio: 16 / 10;
}

.nc-category-track .nc-story-label {
  z-index: 1;
  top: 14px;
  left: 14px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: color-mix(in srgb, var(--nc-rail-accent-dark) 88%, transparent);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.nc-category-track .nc-story-body {
  min-height: 196px;
  padding: 20px 20px 18px;
  background:
    linear-gradient(145deg, var(--nc-rail-tint), transparent 34%),
    var(--nc-white);
}

.nc-category-track .nc-story-meta {
  color: var(--nc-rail-accent-dark);
}

.nc-category-track .nc-story-meta i {
  background: var(--nc-rail-accent);
}

.nc-category-track .nc-story-body h3 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--nc-navy-deep);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.018em;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.nc-category-track .nc-story-card-featured .nc-story-body h3 {
  font-size: 19px;
}

.nc-category-track .nc-story-body p {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 9px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.nc-category-track .nc-story-body > span {
  color: var(--nc-rail-accent-dark);
}

.nc-category-mobile-cta {
  display: none;
}

@supports not (background: color-mix(in srgb, white, black)) {
  .nc-category-track .nc-story-label {
    background: rgba(7, 65, 81, 0.9);
  }
}

@media (max-width: 840px) {
  .nc-explore-section {
    padding-block: 88px 96px;
  }

  .nc-explore-intro {
    grid-template-columns: 1fr;
    margin-bottom: 68px;
    gap: 22px;
  }

  .nc-explore-intro > p:last-child {
    margin: 0;
  }

  .nc-category-stack {
    gap: 78px;
  }

  .nc-category-track .nc-story-card {
    flex-basis: min(43vw, 326px);
  }

  .nc-category-track .nc-story-card-featured {
    flex-basis: min(52vw, 382px);
  }

  .nc-category-actions {
    gap: 14px;
  }

  .nc-category-actions > a {
    display: none;
  }
}

@media (max-width: 600px) {
  .nc-explore-section {
    padding-block: 72px 80px;
  }

  .nc-explore-section::before {
    top: 18px;
    right: -130px;
    width: 260px;
    height: 260px;
  }

  .nc-explore-intro {
    margin-bottom: 60px;
  }

  .nc-explore-display-title {
    font-size: clamp(38px, 11.5vw, 46px);
  }

  .nc-explore-intro > p:last-child {
    font-size: 15px;
    line-height: 1.8;
  }

  .nc-category-stack {
    gap: 68px;
  }

  .nc-category-header {
    margin-bottom: 22px;
    padding-top: 20px;
    align-items: flex-start;
  }

  .nc-category-header::before {
    width: 56px;
  }

  .nc-category-header h2 {
    font-size: clamp(28px, 8.6vw, 34px);
  }

  .nc-category-description {
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.75;
  }

  .nc-category-actions {
    display: none;
  }

  .nc-category-track {
    width: calc(100% + 36px);
    padding: 6px 18px 26px;
    margin: -6px -18px -26px;
    gap: 14px;
    scroll-padding-inline: 18px;
    scroll-snap-type: x mandatory;
  }

  .nc-category-track .nc-story-card,
  .nc-category-track .nc-story-card-featured {
    flex-basis: min(82vw, 304px);
  }

  .nc-category-track .nc-story-card a {
    display: flex;
    grid-template-columns: none;
    min-height: 100%;
    flex-direction: column;
  }

  .nc-category-track .nc-story-media {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .nc-category-track .nc-story-body {
    min-height: 184px;
    padding: 17px 17px 16px;
  }

  .nc-category-track .nc-story-body h3,
  .nc-category-track .nc-story-card-featured .nc-story-body h3 {
    font-size: 16px;
    -webkit-line-clamp: 3;
  }

  .nc-category-track .nc-story-body p {
    display: -webkit-box;
    font-size: 11px;
  }

  .nc-category-mobile-cta {
    display: flex;
    width: 100%;
    min-height: 52px;
    margin-top: 22px;
    border: 1px solid color-mix(in srgb, var(--nc-rail-accent) 45%, var(--nc-line));
    border-radius: var(--nc-radius-sm);
    justify-content: center;
    color: var(--nc-rail-accent-dark);
    background: rgba(255, 255, 255, 0.72);
  }
}

@media (max-width: 360px) {
  .nc-category-track {
    width: calc(100% + 32px);
    padding-inline: 16px;
    margin-inline: -16px;
    scroll-padding-inline: 16px;
  }
}

/* Popular neighborhoods — photo-led local discovery */
.nc-neighborhoods {
  position: relative;
  margin-top: 72px;
  padding-top: 34px;
  border-top: 1px solid rgba(12, 44, 68, 0.14);
  scroll-margin-top: calc(var(--nc-header-h) + 20px);
}

.nc-neighborhoods::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 92px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--nc-coral), var(--nc-sun));
  content: "";
}

.nc-neighborhood-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 28px;
  align-items: end;
  gap: 52px;
}

.nc-neighborhood-header > div:first-child {
  max-width: 740px;
}

.nc-neighborhood-kicker {
  margin: 0 0 8px;
  color: #b64e36;
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.nc-neighborhood-header h3 {
  margin: 0;
  color: var(--nc-navy-deep);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.26;
}

.nc-neighborhood-header > div:first-child > p:last-child {
  max-width: 650px;
  margin: 12px 0 0;
  color: var(--nc-muted);
  font-size: 15px;
  line-height: 1.8;
}

.nc-neighborhood-actions {
  display: flex;
  padding-bottom: 2px;
  align-items: center;
  gap: 20px;
}

.nc-neighborhood-actions > a,
.nc-neighborhood-mobile-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  color: var(--nc-navy-deep);
  font-size: 12px;
  font-weight: 900;
}

.nc-neighborhood-actions > a {
  position: relative;
}

.nc-neighborhood-actions > a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--nc-coral);
  content: "";
  transform: scaleX(0.22);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nc-neighborhood-actions > a:hover::after {
  transform: scaleX(1);
}

.nc-neighborhood-actions > a svg,
.nc-neighborhood-mobile-cta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nc-neighborhood-nav {
  display: flex;
  gap: 8px;
}

.nc-neighborhood-nav button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(12, 44, 68, 0.16);
  border-radius: 50%;
  place-items: center;
  color: var(--nc-navy-deep);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 9px 24px rgba(7, 30, 48, 0.08);
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nc-neighborhood-nav button:hover:not(:disabled) {
  border-color: var(--nc-coral);
  color: #a7402b;
  background: var(--nc-white);
  transform: translateY(-2px);
}

.nc-neighborhood-nav button:disabled {
  opacity: 0.28;
  cursor: default;
  box-shadow: none;
}

.nc-neighborhood-nav button:first-child svg {
  transform: rotate(180deg);
}

.nc-neighborhood-nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.nc-neighborhood-track {
  display: flex;
  min-width: 0;
  contain: paint;
  padding: 8px 4px 34px;
  margin: -8px -4px -34px;
  align-items: stretch;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 4px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.nc-neighborhood-track::-webkit-scrollbar {
  display: none;
}

.nc-neighborhood-track:focus-visible {
  border-radius: 20px;
  outline-offset: 6px;
}

.nc-neighborhood-card {
  flex: 0 0 clamp(286px, 25.5vw, 328px);
  aspect-ratio: 4 / 5;
  scroll-snap-align: start;
}

.nc-neighborhood-card-featured {
  flex-basis: clamp(326px, 29vw, 372px);
}

.nc-neighborhood-card > a {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  isolation: isolate;
  color: var(--nc-white);
  background: var(--nc-navy-deep);
  box-shadow: 0 20px 46px rgba(7, 30, 48, 0.16);
  transform: translateY(0);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.nc-neighborhood-card > a::after {
  position: absolute;
  z-index: 3;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  content: "";
  pointer-events: none;
}

.nc-neighborhood-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.025);
  transform: scale(1.001);
  transition: filter 360ms ease, transform 560ms cubic-bezier(0.2, 0.72, 0.24, 1);
}

.nc-neighborhood-card:nth-child(1) img {
  object-position: 49% center;
}

.nc-neighborhood-card:nth-child(2) img {
  object-position: 50% center;
}

.nc-neighborhood-card:nth-child(3) img {
  object-position: 55% center;
}

.nc-neighborhood-card:nth-child(4) img {
  object-position: 43% center;
}

.nc-neighborhood-card:nth-child(5) img {
  object-position: 31% center;
}

.nc-neighborhood-card:nth-child(6) img {
  object-position: 42% center;
}

.nc-neighborhood-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 24, 39, 0.16) 0%, transparent 34%),
    linear-gradient(0deg, rgba(3, 22, 36, 0.96) 0%, rgba(4, 29, 47, 0.78) 30%, transparent 67%);
  pointer-events: none;
}

.nc-neighborhood-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px 28px 28px;
}

.nc-neighborhood-meta {
  display: flex;
  margin: 0 0 8px;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Outfit", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.nc-neighborhood-meta span {
  display: inline-flex;
  min-height: 25px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  align-items: center;
  color: var(--nc-white);
  background: rgba(7, 30, 48, 0.34);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.nc-neighborhood-content h4 {
  margin: 0;
  color: var(--nc-white);
  font-family: "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(29px, 2.7vw, 36px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.nc-neighborhood-content > p:not(.nc-neighborhood-meta) {
  min-height: 3.5em;
  margin: 10px 0 19px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
}

.nc-neighborhood-read {
  display: flex;
  min-height: 44px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--nc-white);
  font-size: 12px;
  font-weight: 900;
}

.nc-neighborhood-read svg {
  width: 38px;
  height: 38px;
  padding: 10px;
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  color: var(--nc-navy-deep);
  background: var(--nc-white);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nc-neighborhood-card > a:hover {
  box-shadow: 0 28px 56px rgba(7, 30, 48, 0.22);
  transform: translateY(-4px);
}

.nc-neighborhood-card > a:hover img {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.045);
}

.nc-neighborhood-card > a:hover .nc-neighborhood-read svg {
  color: var(--nc-navy-deep);
  background: var(--nc-sun);
  transform: translateX(3px);
}

.nc-neighborhood-mobile-cta {
  display: none;
}

@media (max-width: 840px) {
  .nc-neighborhoods {
    margin-top: 60px;
  }

  .nc-neighborhood-header {
    gap: 24px;
  }

  .nc-neighborhood-actions > a {
    display: none;
  }

  .nc-neighborhood-card {
    flex-basis: min(39vw, 318px);
  }

  .nc-neighborhood-card-featured {
    flex-basis: min(46vw, 358px);
  }
}

@media (max-width: 600px) {
  .nc-neighborhoods {
    margin-top: 52px;
    padding-top: 28px;
  }

  .nc-neighborhoods::before {
    width: 64px;
  }

  .nc-neighborhood-header {
    display: block;
    margin-bottom: 20px;
  }

  .nc-neighborhood-header h3 {
    font-size: clamp(28px, 8.8vw, 34px);
  }

  .nc-neighborhood-header > div:first-child > p:last-child {
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.75;
  }

  .nc-neighborhood-actions {
    display: none;
  }

  .nc-neighborhood-track {
    width: calc(100% + 36px);
    padding: 6px 18px 28px;
    margin: -6px -18px -28px;
    gap: 14px;
    scroll-padding-inline: 18px;
    scroll-snap-type: x mandatory;
  }

  .nc-neighborhood-card,
  .nc-neighborhood-card-featured {
    flex-basis: min(82vw, 312px);
  }

  .nc-neighborhood-card > a {
    border-radius: 18px;
  }

  .nc-neighborhood-card > a::after {
    inset: 8px;
    border-radius: 12px;
  }

  .nc-neighborhood-content {
    padding: 26px 23px 22px;
  }

  .nc-neighborhood-content h4 {
    font-size: 29px;
  }

  .nc-neighborhood-content > p:not(.nc-neighborhood-meta) {
    margin-block: 8px 16px;
    font-size: 12px;
  }

  .nc-neighborhood-mobile-cta {
    display: flex;
    width: 100%;
    min-height: 54px;
    margin-top: 22px;
    border: 1px solid rgba(12, 44, 68, 0.14);
    border-radius: var(--nc-radius-sm);
    justify-content: center;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 24px rgba(7, 30, 48, 0.05);
  }
}

@media (max-width: 360px) {
  .nc-neighborhood-track {
    width: calc(100% + 32px);
    padding-inline: 16px;
    margin-inline: -16px;
    scroll-padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nc-neighborhood-actions > a::after,
  .nc-neighborhood-nav button,
  .nc-neighborhood-card > a,
  .nc-neighborhood-card img,
  .nc-neighborhood-read svg {
    transition: none;
  }
}

/* Reader routes: editorial photo mosaic */
.nc-audience-section {
  overflow: hidden;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Zen Kaku Gothic New", sans-serif;
  font-feature-settings: "palt" 1;
  background:
    radial-gradient(circle at 96% 8%, rgba(255, 201, 77, 0.12), transparent 25%),
    linear-gradient(180deg, #f7fbfb 0%, #ffffff 42%, #fffdf8 100%);
}

.nc-audience-intro {
  display: grid;
  margin-bottom: 34px;
  align-items: end;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 48px;
}

.nc-audience-label {
  display: flex;
  margin: 0 0 10px;
  align-items: center;
  gap: 10px;
  color: var(--nc-ocean-deep);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.nc-audience-label::before {
  width: 24px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.nc-audience-title-group h2 {
  max-width: 780px;
  color: var(--nc-navy-deep);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.32;
}

.nc-audience-intro > p {
  max-width: 35em;
  color: var(--nc-muted);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.9;
}

.nc-audience-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, clamp(230px, 22vw, 258px));
  gap: 16px;
}

.nc-prototype .nc-audience-photo {
  position: relative;
  isolation: isolate;
  display: block;
  overflow: hidden;
  min-width: 0;
  border-radius: 22px;
  background: var(--nc-navy);
  box-shadow:
    0 24px 54px rgba(7, 30, 48, 0.16),
    0 2px 8px rgba(7, 30, 48, 0.08);
  color: var(--nc-white);
  transform: translateZ(0);
}

.nc-audience-photo::before,
.nc-audience-photo::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.nc-audience-photo::before {
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 24, 40, 0.02) 22%, rgba(4, 24, 40, 0.3) 58%, rgba(4, 24, 40, 0.9) 100%);
}

.nc-audience-photo::after {
  z-index: 3;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 21px;
}

.nc-audience-photo > img {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  transition: filter 360ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nc-audience-photo--first {
  grid-column: 1 / 6;
  grid-row: 1 / 3;
}

.nc-audience-photo--family {
  grid-column: 6 / 10;
  grid-row: 1;
}

.nc-audience-photo--living {
  grid-column: 10 / 13;
  grid-row: 1;
}

.nc-audience-photo--work {
  grid-column: 6 / 9;
  grid-row: 2;
}

.nc-audience-photo--study {
  grid-column: 9 / 13;
  grid-row: 2;
}

.nc-audience-photo--first > img {
  object-position: 55% 50%;
}

.nc-audience-photo--family > img {
  object-position: 54% 48%;
}

.nc-audience-photo--living > img {
  object-position: 52% 52%;
}

.nc-audience-photo--work > img {
  object-position: 50% 48%;
}

.nc-audience-photo--study > img {
  object-position: 54% 44%;
}

.nc-audience-photo-content {
  position: absolute;
  z-index: 2;
  display: flex;
  min-width: 0;
  padding: 24px;
  inset: 0;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.26);
}

.nc-audience-photo--first .nc-audience-photo-content {
  padding: 34px;
}

.nc-audience-photo h3 {
  color: inherit;
  font-size: clamp(23px, 2vw, 29px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.34;
}

.nc-audience-photo--first h3 {
  font-size: clamp(34px, 2.8vw, 39px);
}

.nc-audience-photo-description {
  max-width: 29em;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
}

.nc-audience-photo--first .nc-audience-photo-description {
  font-size: 14px;
}

.nc-audience-photo-link {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  margin-top: 16px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.56);
  align-items: center;
  gap: 9px;
  color: var(--nc-white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
}

.nc-audience-photo-link svg {
  width: 17px;
  height: 17px;
  padding: 0;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: color 180ms ease, transform 180ms ease;
}

.nc-audience-photo:focus-visible {
  outline: 4px solid var(--nc-sun);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .nc-audience-photo:hover > img {
    filter: saturate(1.08) contrast(1.03);
    transform: scale(1.035);
  }

  .nc-audience-photo:hover .nc-audience-photo-link svg {
    color: var(--nc-sun);
    transform: translateX(4px);
  }
}

@media (max-width: 840px) {
  .nc-audience-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .nc-audience-intro > p {
    max-width: 48em;
  }

  .nc-audience-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 330px repeat(2, 232px);
    gap: 14px;
  }

  .nc-audience-photo--first {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .nc-audience-photo--family {
    grid-column: 1;
    grid-row: 2;
  }

  .nc-audience-photo--living {
    grid-column: 2;
    grid-row: 2;
  }

  .nc-audience-photo--work {
    grid-column: 1;
    grid-row: 3;
  }

  .nc-audience-photo--study {
    grid-column: 2;
    grid-row: 3;
  }

  .nc-audience-photo--first > img {
    object-position: 50% 53%;
  }
}

@media (max-width: 600px) {
  .nc-audience-intro {
    margin-bottom: 22px;
    gap: 13px;
  }

  .nc-audience-title-group h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .nc-audience-intro > p {
    font-size: 13px;
    line-height: 1.8;
  }

  .nc-audience-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 292px repeat(2, 220px);
    gap: 10px;
  }

  .nc-audience-photo {
    border-radius: 18px;
  }

  .nc-audience-photo::after {
    border-radius: 17px;
  }

  .nc-audience-photo-content,
  .nc-audience-photo--first .nc-audience-photo-content {
    padding: 16px;
  }

  .nc-audience-photo--first .nc-audience-photo-content {
    padding: 24px 22px;
  }

  .nc-audience-photo h3 {
    font-size: clamp(18px, 5vw, 20px);
  }

  .nc-audience-photo--first h3 {
    font-size: clamp(28px, 8vw, 32px);
  }

  .nc-audience-photo:not(.nc-audience-photo--first) .nc-audience-photo-description {
    display: none;
  }

  .nc-audience-photo--first .nc-audience-photo-description {
    margin-top: 6px;
    font-size: 12px;
  }

  .nc-audience-photo-link {
    min-height: 22px;
    margin-top: 11px;
    gap: 6px;
    font-size: 11px;
  }

  .nc-audience-photo-link svg {
    width: 17px;
    height: 17px;
  }

  .nc-audience-photo:not(.nc-audience-photo--first) .nc-audience-photo-link {
    border-bottom: 0;
  }

  .nc-audience-photo:not(.nc-audience-photo--first) .nc-audience-photo-link > span {
    display: none;
  }

  .nc-audience-photo--first > img {
    object-position: 55% 51%;
  }

  .nc-audience-photo--family > img {
    object-position: 61% 50%;
  }

  .nc-audience-photo--work > img {
    object-position: 58% 50%;
  }
}

@media (max-width: 360px) {
  .nc-audience-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 292px;
    grid-auto-rows: 228px;
  }

  .nc-audience-photo--first,
  .nc-audience-photo--family,
  .nc-audience-photo--living,
  .nc-audience-photo--work,
  .nc-audience-photo--study {
    grid-column: 1;
    grid-row: auto;
  }

  .nc-audience-photo:not(.nc-audience-photo--first) .nc-audience-photo-description {
    display: block;
  }

  .nc-audience-photo:not(.nc-audience-photo--first) .nc-audience-photo-link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.56);
  }

  .nc-audience-photo:not(.nc-audience-photo--first) .nc-audience-photo-link > span {
    display: inline;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nc-audience-photo > img,
  .nc-audience-photo-link svg {
    transition: none;
  }
}

/* Premium iconography and compact editorial rhythm */
.nc-spot-icon {
  --nc-icon-accent: var(--nc-sun);
  display: grid;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--nc-spot-color) 24%, transparent);
  border-radius: 18px;
  background:
    radial-gradient(circle at 78% 18%, color-mix(in srgb, var(--nc-icon-accent) 42%, transparent) 0 9px, transparent 9.5px),
    linear-gradient(145deg, #ffffff 2%, color-mix(in srgb, var(--nc-spot-bg) 88%, #ffffff) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -1px 0 color-mix(in srgb, var(--nc-spot-color) 8%, transparent),
    0 12px 26px rgba(7, 62, 83, 0.13);
}

.nc-spot-icon::before {
  display: block;
  width: auto;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 13px;
  inset: 5px;
  opacity: 1;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--nc-spot-color) 7%, transparent);
}

.nc-spot-icon::after {
  z-index: 2;
  right: auto;
  bottom: 7px;
  left: 9px;
  display: block;
  width: 20px;
  height: 3px;
  border-radius: 99px;
  color: transparent;
  background: linear-gradient(90deg, var(--nc-icon-accent), color-mix(in srgb, var(--nc-icon-accent) 24%, transparent));
  content: "";
  opacity: 0.92;
}

.nc-spot-icon svg {
  width: 44px;
  height: 44px;
  stroke-width: 1.82;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.84));
  transform: translateY(-1px);
}

.nc-spot-icon--map {
  --nc-spot-color: #087486;
  --nc-spot-bg: #dff7f5;
  --nc-icon-accent: #ff8a64;
}

.nc-spot-icon--ocean {
  --nc-spot-color: #056f98;
  --nc-spot-bg: #def5ff;
  --nc-icon-accent: #f6bc37;
}

.nc-spot-icon--taste {
  --nc-spot-color: #b94c3c;
  --nc-spot-bg: #fff0e7;
  --nc-icon-accent: #f3ad32;
}

.nc-spot-icon--study {
  --nc-spot-color: #174f72;
  --nc-spot-bg: #e7f3ff;
  --nc-icon-accent: #ff735b;
}

.nc-spot-icon--airport {
  --nc-spot-color: #186c9d;
  --nc-spot-bg: #e4f4ff;
  --nc-icon-accent: #efb331;
}

.nc-spot-icon--city {
  --nc-spot-color: #08627c;
  --nc-spot-bg: #e2f4f3;
  --nc-icon-accent: #ff725f;
}

.nc-spot-icon--ride {
  --nc-spot-color: #866018;
  --nc-spot-bg: #fff1c6;
  --nc-icon-accent: #1eb6ad;
}

.nc-spot-icon--weather {
  --nc-spot-color: #456f9b;
  --nc-spot-bg: #eaf3ff;
  --nc-icon-accent: #f4b52d;
}

.nc-route-card > .nc-spot-icon {
  width: 58px;
  height: 58px;
}

.nc-route-card > .nc-spot-icon svg {
  width: 40px;
  height: 40px;
}

.nc-route-card:hover > .nc-spot-icon,
.nc-route-card:focus-visible > .nc-spot-icon,
.nc-primer-card:hover > .nc-spot-icon {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -1px 0 color-mix(in srgb, var(--nc-spot-color) 10%, transparent),
    0 17px 34px rgba(7, 62, 83, 0.17);
  transform: translateY(-3px) scale(1.025);
}

.nc-icon-link {
  min-width: 64px;
  gap: 3px;
}

.nc-icon-link svg {
  width: 32px;
  height: 32px;
  padding: 6px;
  border: 1px solid rgba(3, 109, 126, 0.12);
  border-radius: 10px;
  stroke-width: 1.9;
  background: linear-gradient(145deg, #ffffff, #e8f7f7);
  box-shadow: 0 5px 12px rgba(7, 62, 83, 0.08);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.nc-icon-link:hover svg,
.nc-icon-link:focus-visible svg {
  border-color: rgba(3, 109, 126, 0.24);
  background: linear-gradient(145deg, #ffffff, #dff5f4);
  box-shadow: 0 8px 18px rgba(7, 62, 83, 0.13);
  transform: translateY(-1px);
}

.nc-compass-mark {
  --nc-icon-accent: var(--nc-coral);
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 1px solid rgba(3, 109, 126, 0.2);
  border-radius: 15px;
  color: var(--nc-ocean-deep);
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 106, 71, 0.34) 0 6px, transparent 6.5px),
    linear-gradient(145deg, #ffffff, #dff5f5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 8px 18px rgba(7, 62, 83, 0.1);
}

.nc-compass-mark svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.72;
}

.nc-study-paths a {
  --nc-path-accent: #1ab3ac;
  min-height: 146px;
  padding: 18px 20px 20px;
}

.nc-study-paths a::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 3px;
  border-radius: 0 0 99px 99px;
  background: linear-gradient(90deg, var(--nc-path-accent), color-mix(in srgb, var(--nc-path-accent) 18%, transparent));
  content: "";
}

.nc-study-paths a:nth-child(2) {
  --nc-path-accent: #4e7fb6;
}

.nc-study-paths a:nth-child(3) {
  --nc-path-accent: #d45f4d;
}

.nc-study-paths a:nth-child(4) {
  --nc-path-accent: #155c81;
}

.nc-study-path-icon {
  --nc-icon-accent: var(--nc-path-accent);
  top: 16px;
  left: 18px;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-color: color-mix(in srgb, var(--nc-path-accent) 24%, transparent);
  border-radius: 16px;
  color: color-mix(in srgb, var(--nc-path-accent) 76%, #0c4668);
  background:
    radial-gradient(circle at 80% 18%, color-mix(in srgb, var(--nc-icon-accent) 42%, transparent) 0 7px, transparent 7.5px),
    linear-gradient(145deg, #ffffff, color-mix(in srgb, var(--nc-path-accent) 12%, #ffffff));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 10px 22px rgba(7, 62, 83, 0.12);
}

.nc-study-path-icon::before {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 11px;
  content: "";
  inset: 5px;
}

.nc-study-path-icon::after {
  position: absolute;
  bottom: 6px;
  left: 8px;
  width: 17px;
  height: 3px;
  border-radius: 99px;
  background: var(--nc-path-accent);
  content: "";
}

.nc-study-paths a:nth-child(2) .nc-study-path-icon,
.nc-study-paths a:nth-child(3) .nc-study-path-icon,
.nc-study-paths a:nth-child(4) .nc-study-path-icon {
  border-color: color-mix(in srgb, var(--nc-path-accent) 24%, transparent);
  color: color-mix(in srgb, var(--nc-path-accent) 76%, #0c4668);
  background:
    radial-gradient(circle at 80% 18%, color-mix(in srgb, var(--nc-icon-accent) 42%, transparent) 0 7px, transparent 7.5px),
    linear-gradient(145deg, #ffffff, color-mix(in srgb, var(--nc-path-accent) 12%, #ffffff));
}

.nc-study-path-icon svg {
  z-index: 1;
  width: 36px;
  height: 36px;
  stroke-width: 1.78;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.82));
}

.nc-study-path-kicker {
  min-height: 48px;
  padding-left: 62px;
}

.nc-study-paths .nc-study-path-arrow {
  top: 21px;
}

.nc-section {
  padding-block: 72px;
}

.nc-first-section {
  padding-top: 140px;
}

.nc-section-heading {
  margin-bottom: 32px;
}

.nc-section-heading > p:last-child {
  margin-top: 16px;
  line-height: 1.8;
}

.nc-area-feature {
  min-height: 440px;
}

.nc-area-directory {
  margin-top: 22px;
  padding-top: 22px;
}

.nc-area-directory a {
  min-height: 78px;
  padding-block: 15px;
}

.nc-neighborhoods {
  margin-top: 48px;
  padding-top: 24px;
}

.nc-neighborhood-header {
  margin-bottom: 22px;
}

.nc-neighborhood-card,
.nc-neighborhood-card-featured {
  aspect-ratio: 80 / 93;
}

.nc-explore-section {
  padding-block: 80px 88px;
}

.nc-explore-intro {
  margin-bottom: 52px;
}

.nc-category-stack {
  gap: 58px;
}

.nc-category-header {
  margin-bottom: 20px;
  padding-top: 18px;
}

.nc-category-track .nc-story-media,
.nc-category-track .nc-story-media img {
  aspect-ratio: 16 / 9;
}

.nc-category-track .nc-story-body {
  min-height: 164px;
  padding: 17px 18px 16px;
}

.nc-map-stage {
  min-height: 500px;
}

.nc-map-copy {
  padding-block: 18px;
}

.nc-map-equivalent {
  margin-top: 22px;
  padding-top: 22px;
}

.nc-map-equivalent button {
  min-height: 102px;
}

.nc-event-card {
  min-height: 224px;
  padding: 22px;
}

.nc-audience-intro {
  margin-bottom: 28px;
}

.nc-audience-mosaic {
  grid-template-rows: repeat(2, clamp(208px, 18vw, 220px));
}

.nc-study-shell {
  gap: 24px 48px;
}

.nc-study-brand {
  margin-bottom: 22px;
}

.nc-study-actions {
  margin-top: 22px;
}

.nc-study-visual {
  min-height: 420px;
}

.nc-study-mosaic {
  height: 420px;
}

.nc-study-paths {
  margin-top: 0;
}

.nc-update-item {
  min-height: 140px;
  padding-block: 20px;
}

.nc-trust-panel {
  margin-top: 40px;
  padding-block: 32px;
}

.nc-faq-list summary {
  min-height: 68px;
}

@media (max-width: 1180px) {
  .nc-route-card > .nc-spot-icon {
    width: 50px;
    height: 50px;
  }

  .nc-route-card > .nc-spot-icon svg {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 840px) {
  .nc-section {
    padding-block: 56px;
  }

  .nc-first-section {
    padding-top: 78px;
  }

  .nc-route-card > .nc-spot-icon {
    width: 48px;
    height: 48px;
  }

  .nc-route-card > .nc-spot-icon svg {
    width: 34px;
    height: 34px;
  }

  .nc-area-feature {
    min-height: 410px;
  }

  .nc-map-stage {
    min-height: 470px;
  }

  .nc-study-visual {
    min-height: 350px;
  }

  .nc-study-mosaic {
    height: 350px;
  }
}

@media (max-width: 600px) {
  .nc-section {
    padding-block: 48px;
  }

  .nc-section-heading {
    margin-bottom: 26px;
  }

  .nc-section-heading > p:last-child {
    margin-top: 13px;
    line-height: 1.75;
  }

  .nc-first-section {
    padding-top: 52px;
  }

  .nc-route-card {
    min-height: 132px;
    padding-block: 25px 18px;
  }

  .nc-route-card > .nc-spot-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .nc-route-card > .nc-spot-icon::before {
    border-radius: 9px;
    inset: 4px;
  }

  .nc-route-card > .nc-spot-icon::after {
    bottom: 5px;
    left: 7px;
    width: 15px;
  }

  .nc-route-card > .nc-spot-icon svg {
    width: 30px;
    height: 30px;
  }

  .nc-primer-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 22px 20px;
    align-items: start;
    column-gap: 16px;
  }

  .nc-primer-card > .nc-spot-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 58px;
    height: 58px;
    margin: 0;
  }

  .nc-primer-card > .nc-spot-icon svg {
    width: 40px;
    height: 40px;
  }

  .nc-primer-card h3,
  .nc-primer-card p,
  .nc-primer-card a {
    grid-column: 2;
  }

  .nc-primer-card h3 {
    padding-right: 24px;
    font-size: 18px;
    line-height: 1.45;
  }

  .nc-primer-card p {
    margin: 6px 0 8px;
    font-size: 14px;
    line-height: 1.7;
  }

  .nc-primer-card a {
    min-height: 44px;
    align-self: end;
    font-size: 12px;
  }

  .nc-primer-number {
    top: 19px;
    right: 18px;
  }

  .nc-area-feature {
    min-height: 390px;
  }

  .nc-area-directory {
    padding-top: 18px;
  }

  .nc-area-directory a {
    min-height: 72px;
    padding-block: 13px;
  }

  .nc-neighborhoods {
    margin-top: 40px;
    padding-top: 22px;
  }

  .nc-explore-section {
    padding-block: 56px 62px;
  }

  .nc-explore-intro {
    margin-bottom: 44px;
  }

  .nc-category-stack {
    gap: 48px;
  }

  .nc-category-header {
    margin-bottom: 18px;
    padding-top: 17px;
  }

  .nc-category-track .nc-story-body {
    min-height: 158px;
    padding: 16px;
  }

  .nc-category-mobile-cta {
    margin-top: 17px;
  }

  .nc-map-stage {
    min-height: 430px;
  }

  .nc-event-card {
    min-height: 0;
    padding: 20px 17px;
  }

  .nc-audience-intro {
    margin-bottom: 20px;
  }

  .nc-audience-mosaic {
    grid-template-rows: 260px repeat(2, 190px);
  }

  .nc-study-shell {
    gap: 24px;
  }

  .nc-study-visual {
    min-height: 290px;
  }

  .nc-study-mosaic {
    height: 290px;
  }

  .nc-study-paths {
    gap: 10px;
  }

  .nc-study-paths a,
  .nc-study-paths a:nth-child(3),
  .nc-study-paths a:nth-child(4) {
    min-height: 126px;
    padding: 15px 18px 17px;
  }

  .nc-study-path-icon {
    top: 14px;
    left: 16px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .nc-study-path-icon svg {
    width: 32px;
    height: 32px;
  }

  .nc-study-path-kicker {
    min-height: 43px;
    padding-left: 54px;
  }

  .nc-study-paths .nc-study-path-arrow {
    top: 19px;
  }

  .nc-update-item {
    min-height: 136px;
    padding-block: 18px;
  }

  .nc-trust-panel {
    margin-top: 30px;
    padding-block: 26px;
  }

  .nc-faq-list summary {
    min-height: 72px;
  }

  .nc-mobile-bottom-nav svg {
    width: 28px;
    height: 28px;
    padding: 5px;
    border: 1px solid rgba(12, 44, 68, 0.08);
    border-radius: 9px;
    stroke-width: 1.9;
    background: linear-gradient(145deg, #ffffff, #edf6f7);
  }

  .nc-mobile-bottom-nav .nc-mobile-study-nav svg {
    border-color: rgba(255, 106, 71, 0.18);
    background: linear-gradient(145deg, #ffffff, #fff0df);
    box-shadow: 0 5px 13px rgba(255, 106, 71, 0.14);
  }
}

/* Hero route navigation — real-photo editorial cards */
.nc-route-card {
  --nc-route-accent: #0a8e9c;
  --nc-route-tint: #e9f8f7;
  grid-template-columns: 80px minmax(0, 1fr) 30px;
  min-height: 152px;
  padding: 14px 15px 14px 14px;
  gap: 13px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(145deg, #ffffff 38%, var(--nc-route-tint));
}

.nc-route-card:nth-child(2) {
  --nc-route-accent: #0879a4;
  --nc-route-tint: #e8f7fb;
  background: linear-gradient(145deg, #ffffff 38%, var(--nc-route-tint));
}

.nc-route-card:nth-child(3) {
  --nc-route-accent: #c26338;
  --nc-route-tint: #fff3e9;
  background: linear-gradient(145deg, #ffffff 38%, var(--nc-route-tint));
}

.nc-route-card-study {
  --nc-route-accent: #df5d46;
  --nc-route-tint: #fff4db;
  background:
    radial-gradient(circle at 96% 0%, rgba(255, 201, 77, 0.24), transparent 31%),
    linear-gradient(145deg, #ffffff 38%, var(--nc-route-tint));
  box-shadow: none;
}

.nc-route-card:hover,
.nc-route-card:focus-visible {
  background: linear-gradient(145deg, #ffffff 38%, var(--nc-route-tint));
}

.nc-route-card::before {
  z-index: 4;
  height: 3px;
  background: var(--nc-route-accent);
}

.nc-route-photo {
  position: relative;
  z-index: 1;
  display: block;
  grid-column: 1;
  grid-row: 1;
  width: 80px;
  height: 118px;
  overflow: hidden;
  border-radius: 17px;
  background: #dcebed;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.76),
    0 10px 24px rgba(7, 62, 83, 0.18);
}

.nc-route-photo::before,
.nc-route-photo::after {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  content: "";
}

.nc-route-photo::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 30, 48, 0.06), transparent 38%),
    linear-gradient(0deg, rgba(7, 30, 48, 0.2), transparent 42%);
}

.nc-route-photo::after {
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(7, 62, 83, 0.04);
}

.nc-route-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transition: transform 480ms cubic-bezier(0.2, 0.72, 0.2, 1), filter 220ms ease;
}

.nc-route-photo--area img {
  object-position: 50% 62%;
}

.nc-route-photo--play img {
  object-position: 46% 42%;
}

.nc-route-photo--food img {
  object-position: 52% 52%;
}

.nc-route-photo--study img {
  object-position: 55% 48%;
}

.nc-route-card:hover .nc-route-photo img,
.nc-route-card:focus-visible .nc-route-photo img {
  filter: saturate(1.11) contrast(1.03);
  transform: scale(1.055);
}

.nc-route-index {
  z-index: 3;
  top: 22px;
  left: 22px;
  min-width: 27px;
  padding: 4px 6px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 99px;
  color: #ffffff;
  background: rgba(7, 30, 48, 0.66);
  box-shadow: 0 4px 12px rgba(7, 30, 48, 0.14);
  font-size: 8px;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  backdrop-filter: blur(7px);
}

.nc-route-copy {
  z-index: 2;
  grid-column: 2;
  gap: 5px;
}

.nc-route-copy strong {
  font-size: 16px;
  letter-spacing: -0.025em;
}

.nc-route-copy small {
  max-width: 17em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0;
}

.nc-route-copy em {
  color: var(--nc-route-accent);
}

.nc-route-arrow {
  z-index: 2;
  display: block;
  grid-column: 3;
  width: 30px;
  height: 30px;
  padding: 6px;
  border: 1px solid color-mix(in srgb, var(--nc-route-accent) 24%, transparent);
  border-radius: 50%;
  color: var(--nc-route-accent);
  stroke: currentColor;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 5px 14px rgba(7, 62, 83, 0.07);
}

@media (max-width: 1180px) {
  .nc-route-card {
    grid-template-columns: 72px minmax(0, 1fr) 28px;
    padding-inline: 12px;
    gap: 11px;
  }

  .nc-route-photo {
    width: 72px;
    height: 108px;
    border-radius: 15px;
  }

  .nc-route-photo::after {
    border-radius: 10px;
  }

  .nc-route-index {
    left: 19px;
  }

  .nc-route-copy strong {
    font-size: 14px;
  }

  .nc-route-arrow {
    width: 28px;
    height: 28px;
    padding: 6px;
  }
}

@media (max-width: 840px) {
  .nc-route-card {
    grid-template-columns: 82px minmax(0, 1fr) 30px;
    min-height: 126px;
    padding: 12px;
    gap: 14px;
  }

  .nc-route-photo {
    width: 82px;
    height: 102px;
  }

  .nc-route-index {
    top: 20px;
    left: 20px;
  }

  .nc-route-copy strong {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .nc-hero {
    min-height: 990px;
  }

  .nc-hero-media,
  .nc-hero-shade {
    bottom: 338px;
  }

  .nc-route-wrap {
    bottom: 44px;
  }

  .nc-route-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 32px;
    grid-template-rows: 78px minmax(62px, auto);
    min-height: 140px;
    padding: 0;
    align-content: stretch;
    align-items: stretch;
    gap: 0;
  }

  .nc-route-photo {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    height: 78px;
    border-radius: 0;
    box-shadow: none;
  }

  .nc-route-photo::before {
    background:
      linear-gradient(180deg, rgba(7, 30, 48, 0.04), transparent 42%),
      linear-gradient(0deg, rgba(7, 30, 48, 0.3), transparent 58%);
  }

  .nc-route-photo::after {
    inset: 6px;
    border-radius: 8px;
  }

  .nc-route-index {
    top: 9px;
    left: 9px;
  }

  .nc-route-copy {
    grid-column: 1;
    grid-row: 2;
    padding: 9px 5px 10px 12px;
    align-self: center;
    gap: 2px;
  }

  .nc-route-copy strong {
    font-size: 14px;
    line-height: 1.3;
  }

  .nc-route-copy small {
    overflow: hidden;
    max-width: 100%;
    font-size: 8.5px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nc-route-copy em {
    margin-bottom: 0;
    font-size: 6.5px;
  }

  .nc-route-arrow {
    grid-column: 2;
    grid-row: 2;
    width: 26px;
    height: 26px;
    margin-right: 8px;
    padding: 6px;
    align-self: center;
  }
}

@media (max-width: 360px) {
  .nc-route-copy {
    padding-left: 10px;
  }

  .nc-route-copy strong {
    font-size: 13px;
  }

  .nc-route-copy small {
    display: none;
  }
}

/* First-time guide — real-photo editorial cards */
.nc-first-grid {
  align-items: stretch;
}

.nc-primer-card {
  --nc-primer-accent: #078a99;
  display: flex;
  min-width: 0;
  padding: 0;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.96);
}

.nc-primer-card:nth-child(2) {
  --nc-primer-accent: #d49b28;
}

.nc-primer-card:nth-child(3) {
  --nc-primer-accent: #d45f49;
}

.nc-primer-card:nth-child(4) {
  --nc-primer-accent: #2c9676;
}

.nc-primer-card::after {
  display: none;
}

.nc-primer-photo {
  position: relative;
  display: block;
  width: 100%;
  height: 142px;
  overflow: hidden;
  flex: 0 0 142px;
  background: #dcebed;
}

.nc-primer-photo::before,
.nc-primer-photo::after {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  content: "";
}

.nc-primer-photo::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 30, 48, 0.04), transparent 44%),
    linear-gradient(0deg, rgba(7, 30, 48, 0.22), transparent 40%);
}

.nc-primer-photo::after {
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(7, 62, 83, 0.04);
}

.nc-primer-photo > img,
.nc-primer-photo > span,
.nc-primer-photo > span > img {
  width: 100%;
  height: 100%;
}

.nc-primer-photo img {
  display: block;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.025);
  transition: transform 500ms cubic-bezier(0.2, 0.72, 0.2, 1), filter 220ms ease;
}

.nc-primer-photo--airport img {
  object-position: 50% 52%;
}

.nc-primer-photo--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: #ffffff;
}

.nc-primer-photo--split > span {
  display: block;
  overflow: hidden;
}

.nc-primer-photo--split > span:first-child img {
  object-position: 52% 65%;
}

.nc-primer-photo--split > span:last-child img {
  object-position: 52% 50%;
}

.nc-primer-photo--ride img {
  object-position: 50% 55%;
}

.nc-primer-photo--weather img {
  object-position: 62% 52%;
}

.nc-primer-card:hover .nc-primer-photo img {
  filter: saturate(1.1) contrast(1.035);
  transform: scale(1.045);
}

.nc-primer-body {
  position: relative;
  display: flex;
  padding: 18px 20px 16px;
  border-top: 3px solid var(--nc-primer-accent);
  flex: 1;
  flex-direction: column;
}

.nc-primer-card h3 {
  margin: 0;
  padding: 0;
  font-size: 19px;
  letter-spacing: -0.025em;
  line-height: 1.42;
}

.nc-primer-card p {
  min-height: 62px;
  margin: 8px 0 8px;
  font-size: 13px;
  line-height: 1.75;
}

.nc-primer-card a {
  display: flex;
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  padding-top: 4px;
  justify-content: space-between;
  text-decoration: none;
  color: var(--nc-primer-accent);
  font-size: 12px;
}

.nc-primer-card a::after {
  display: grid;
  width: 28px;
  height: 28px;
  border: 1px solid color-mix(in srgb, var(--nc-primer-accent) 24%, transparent);
  border-radius: 50%;
  place-items: center;
  flex: 0 0 28px;
  color: var(--nc-primer-accent);
  background: color-mix(in srgb, var(--nc-primer-accent) 7%, #ffffff);
  content: "→";
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease;
}

.nc-primer-card:hover a::after {
  background: color-mix(in srgb, var(--nc-primer-accent) 13%, #ffffff);
  transform: translateX(2px);
}

.nc-primer-number {
  z-index: 3;
  top: 13px;
  right: auto;
  left: 13px;
  min-width: 30px;
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 99px;
  color: #ffffff;
  background: rgba(7, 30, 48, 0.65);
  box-shadow: 0 5px 13px rgba(7, 30, 48, 0.14);
  font-size: 8px;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  backdrop-filter: blur(7px);
}

@media (max-width: 1180px) {
  .nc-primer-photo {
    height: 150px;
    flex-basis: 150px;
  }

  .nc-primer-card p {
    min-height: 0;
  }
}

@media (max-width: 600px) {
  .nc-primer-card {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    min-height: 176px;
    padding: 0;
    align-items: stretch;
    column-gap: 0;
  }

  .nc-primer-photo {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 100%;
    min-height: 176px;
    flex-basis: auto;
  }

  .nc-primer-photo::after {
    inset: 7px;
    border-radius: 8px;
  }

  .nc-primer-photo--split {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .nc-primer-body {
    grid-column: 2;
    grid-row: 1;
    padding: 15px 14px 11px;
    border-top: 0;
    border-left: 3px solid var(--nc-primer-accent);
  }

  .nc-primer-card h3,
  .nc-primer-card p,
  .nc-primer-card a {
    grid-column: auto;
  }

  .nc-primer-card h3 {
    padding: 0;
    font-size: 17px;
    line-height: 1.4;
  }

  .nc-primer-card p {
    min-height: 0;
    margin: 5px 0 6px;
    font-size: 12px;
    line-height: 1.65;
  }

  .nc-primer-card a {
    min-height: 44px;
    padding-top: 2px;
    align-items: center;
    font-size: 11px;
    line-height: 1.45;
  }

  .nc-primer-card a::after {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
    font-size: 12px;
  }

  .nc-primer-number {
    top: 10px;
    right: auto;
    left: 10px;
  }
}

@media (max-width: 360px) {
  .nc-primer-card {
    grid-template-columns: 106px minmax(0, 1fr);
  }

  .nc-primer-body {
    padding-inline: 12px 11px;
  }

  .nc-primer-card h3 {
    font-size: 16px;
  }
}

/* Editorial photo picks — real-photo eyecatches for the next-read section */
.nc-updates-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(64, 190, 199, 0.1), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, #f7fbfa 100%);
}

.nc-update-layout {
  min-width: 0;
  gap: 24px;
}

.nc-update-column,
.nc-update-column:last-child {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nc-update-column-head {
  min-height: 58px;
  margin-bottom: 12px;
  padding: 0 4px;
  border-bottom-color: rgba(12, 44, 68, 0.12);
}

.nc-update-column-head h3 {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.nc-update-column-head span {
  color: rgba(3, 109, 126, 0.72);
  font-size: 8px;
  letter-spacing: 0.16em;
}

.nc-update-track {
  display: grid;
  gap: 12px;
}

.nc-update-item {
  --nc-update-accent: #0c7188;
  position: relative;
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr) auto;
  min-height: 164px;
  padding: 10px 12px 10px 10px;
  overflow: hidden;
  border: 1px solid rgba(12, 44, 68, 0.09);
  border-radius: 18px;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 12px 30px rgba(7, 62, 83, 0.07);
  isolation: isolate;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nc-update-item--taste {
  --nc-update-accent: #d26b45;
}

.nc-update-item--life {
  --nc-update-accent: #397c65;
}

.nc-update-item--study {
  --nc-update-accent: #285f9b;
}

.nc-update-item:hover {
  border-color: color-mix(in srgb, var(--nc-update-accent) 28%, transparent);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.96) inset,
    0 18px 40px rgba(7, 62, 83, 0.12);
  transform: translateY(-3px);
}

.nc-update-media {
  position: relative;
  display: grid;
  width: 100%;
  height: 144px;
  overflow: hidden;
  border-radius: 13px;
  background: #dcecef;
  grid-template-columns: 1fr;
}

.nc-update-media--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: #ffffff;
}

.nc-update-item--area .nc-update-media--split {
  grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
}

.nc-update-item--taste .nc-update-media--split {
  grid-template-columns: minmax(0, 64fr) minmax(0, 36fr);
}

.nc-update-item--life .nc-update-media--split {
  grid-template-columns: minmax(0, 68fr) minmax(0, 32fr);
}

.nc-update-media::after {
  position: absolute;
  z-index: 2;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 9px;
  content: "";
  pointer-events: none;
}

.nc-update-media img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nc-update-item:hover .nc-update-media img {
  transform: scale(1.045);
}

.nc-update-item--area .nc-update-media img:first-child {
  object-position: 52% 72%;
}

.nc-update-item--area .nc-update-media img:nth-child(2) {
  object-position: 51% 50%;
}

.nc-update-item--taste .nc-update-media img:first-child {
  object-position: 64% center;
}

.nc-update-item--taste .nc-update-media img:nth-child(2) {
  object-position: 52% center;
}

.nc-update-item--life .nc-update-media img:first-child {
  object-position: 56% center;
}

.nc-update-item--life .nc-update-media img:nth-child(2) {
  object-position: 49% center;
}

.nc-update-item--study .nc-update-media img {
  object-position: 50% 56%;
}

.nc-update-code {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 10px;
  display: grid;
  width: auto;
  min-width: 31px;
  height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 99px;
  place-items: center;
  color: #ffffff;
  background: rgba(6, 34, 51, 0.65);
  box-shadow: 0 5px 16px rgba(6, 34, 51, 0.15);
  font-size: 8px;
  letter-spacing: 0.09em;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.nc-update-item:nth-child(2) .nc-update-code,
.nc-update-item:nth-child(3) .nc-update-code {
  display: grid;
  width: auto;
  height: 24px;
  border-color: rgba(255, 255, 255, 0.62);
  border-radius: 99px;
  background: rgba(6, 34, 51, 0.65);
}

.nc-update-body {
  min-width: 0;
}

.nc-update-body > .nc-update-label {
  display: flex;
  color: var(--nc-update-accent);
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nc-update-body > .nc-update-label::before {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  flex: 0 0 18px;
  background: var(--nc-update-accent);
  content: "";
}

.nc-update-item h4 {
  margin: 7px 0 0;
  font-size: 16px;
  letter-spacing: -0.025em;
  line-height: 1.52;
}

.nc-update-item p {
  margin: 7px 0 0;
  color: #66747c;
  font-size: 11.5px;
  line-height: 1.68;
}

.nc-update-item > a {
  position: relative;
  z-index: 4;
  display: flex;
  width: auto;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  border: 1px solid color-mix(in srgb, var(--nc-update-accent) 18%, transparent);
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: var(--nc-update-accent);
  background: color-mix(in srgb, var(--nc-update-accent) 6%, #ffffff);
  text-decoration: none;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nc-update-item > a::before {
  position: absolute;
  z-index: -1;
  inset: -76px -18px -76px -430px;
  content: "";
}

.nc-update-item > a svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.nc-update-item > a:hover {
  color: #ffffff;
  background: var(--nc-update-accent);
  transform: translateX(2px);
}

@media (max-width: 840px) {
  .nc-update-layout {
    gap: 30px;
  }

  .nc-update-column-head {
    min-height: 52px;
    margin-bottom: 10px;
  }

  .nc-update-track {
    display: grid;
    width: calc(100% + 35px);
    margin-inline: -18px;
    padding: 0 18px 10px;
    box-sizing: border-box;
    overflow-x: auto;
    grid-auto-columns: min(82vw, 326px);
    grid-auto-flow: column;
    gap: 12px;
    scroll-padding-inline: 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .nc-update-track::-webkit-scrollbar {
    display: none;
  }

  .nc-update-item {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 156px minmax(0, 1fr);
    min-height: 330px;
    padding: 8px 8px 12px;
    align-items: start;
    gap: 0 8px;
    scroll-snap-align: start;
  }

  .nc-update-media {
    grid-column: 1 / -1;
    grid-row: 1;
    height: 156px;
  }

  .nc-update-body {
    grid-column: 1;
    grid-row: 2;
    padding: 14px 4px 0 7px;
  }

  .nc-update-item h4 {
    font-size: 16px;
    line-height: 1.48;
  }

  .nc-update-item p {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.62;
  }

  .nc-update-item > a {
    grid-column: 2;
    grid-row: 2;
    min-width: 44px;
    height: 44px;
    margin: auto 3px 3px 0;
    padding-inline: 9px;
    align-self: end;
  }

  .nc-update-item > a::before {
    inset: -275px -14px -16px -286px;
  }
}

@media (max-width: 360px) {
  .nc-update-track {
    width: calc(100% + 31px);
    margin-inline: -16px;
    padding-inline: 16px;
    grid-auto-columns: min(84vw, 306px);
    scroll-padding-inline: 16px;
  }

  .nc-update-item {
    min-height: 338px;
  }
}

/* Interactive editorial map
   The map is intentionally local-first so it remains visible without an API,
   location permission, or third-party frame. */
.nc-map-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(68, 207, 214, 0.17), transparent 28%),
    radial-gradient(circle at 92% 20%, rgba(255, 205, 82, 0.2), transparent 24%),
    linear-gradient(180deg, #f7fdfb 0%, #eef9f6 100%);
}

.nc-map-section::before {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(10, 139, 154, 0.12);
  border-radius: 50%;
  content: "";
  right: -210px;
  top: -170px;
  box-shadow:
    0 0 0 54px rgba(10, 139, 154, 0.035),
    0 0 0 108px rgba(10, 139, 154, 0.025);
  pointer-events: none;
}

.nc-map-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  margin-bottom: 32px;
  align-items: end;
  gap: 48px;
}

.nc-map-copy {
  max-width: 780px;
  padding: 0;
}

.nc-map-copy > h2 {
  max-width: 760px;
  margin: 0;
  color: var(--nc-navy-deep);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

.nc-map-copy > p {
  max-width: 690px;
  margin: 18px 0 0;
  color: #385d68;
  font-size: 15px;
  line-height: 1.9;
}

.nc-map-heading-note {
  padding: 8px 0 6px 22px;
  border-left: 1px solid rgba(12, 44, 68, 0.2);
}

.nc-map-heading-note > span {
  color: var(--nc-coral);
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.nc-map-heading-note > p {
  margin: 9px 0 0;
  color: var(--nc-navy-deep);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.nc-map-explorer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.72fr);
  align-items: stretch;
  gap: 18px;
}

.nc-map-panel,
.nc-map-detail {
  border: 1px solid rgba(12, 44, 68, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(7, 62, 83, 0.14);
}

.nc-map-panel {
  min-width: 0;
  overflow: hidden;
}

.nc-map-toolbar {
  position: relative;
  z-index: 6;
  display: flex;
  min-height: 86px;
  padding: 16px 18px 15px 22px;
  border-bottom: 1px solid rgba(12, 44, 68, 0.09);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.96);
}

.nc-map-toolbar > div:first-child > span {
  display: block;
  color: var(--nc-ocean-deep);
  font-family: "Outfit", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.nc-map-toolbar > div:first-child > p {
  margin: 4px 0 0;
  color: var(--nc-navy-deep);
  font-size: 15px;
  font-weight: 800;
}

.nc-map-filter-group {
  display: flex;
  margin: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.nc-map-filter-group button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(12, 44, 68, 0.13);
  border-radius: 999px;
  color: #45636c;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: none;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.nc-map-filter-group button:hover {
  border-color: rgba(3, 109, 126, 0.45);
  color: var(--nc-ocean-deep);
  background: #effafa;
  transform: translateY(-1px);
}

.nc-map-filter-group button.is-active {
  border-color: var(--nc-ocean-deep);
  color: #fff;
  background: var(--nc-ocean-deep);
}

.nc-map-filter-group button:focus-visible,
.nc-map-marker:focus-visible,
.nc-map-place-track button:focus-visible,
.nc-map-detail-actions a:focus-visible {
  outline: 3px solid #ffd15b;
  outline-offset: 3px;
}

.nc-map-stage {
  position: relative;
  min-height: 0 !important;
  aspect-ratio: 820 / 620;
  overflow: hidden;
  border: 0;
  border-radius: 0 0 25px 25px;
  color: rgba(12, 44, 68, 0.08);
  background: #79d8df;
  box-shadow: none;
  isolation: isolate;
}

.nc-map-stage:not(.is-ready) .nc-map-marker {
  visibility: visible;
}

.nc-map-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nc-map-current {
  fill: none;
  stroke: rgba(255, 255, 255, 0.38);
  stroke-dasharray: 2 12;
  stroke-linecap: round;
  stroke-width: 3;
}

.nc-map-land {
  stroke: rgba(31, 119, 119, 0.36);
  stroke-width: 1.5;
}

.nc-map-land-city {
  fill: url(#nc-map-city-land);
}

.nc-map-land-mactan {
  fill: url(#nc-map-mactan-land);
}

.nc-map-roads path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-linecap: round;
  stroke-width: 7;
}

.nc-map-roads .nc-map-bridge {
  stroke: #fcfdf8;
  stroke-dasharray: 9 5;
  stroke-width: 6;
}

.nc-map-maplabels text {
  fill: #4d7a7e;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.nc-map-maplabels .nc-map-sea-label {
  fill: rgba(5, 93, 111, 0.45);
  font-size: 9px;
  letter-spacing: 0.2em;
}

.nc-map-maplabels .nc-map-small-label {
  fill: rgba(5, 93, 111, 0.65);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.nc-map-marker {
  position: absolute;
  z-index: 4;
  display: flex;
  width: auto;
  height: auto;
  min-height: 34px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  align-items: center;
  gap: 5px;
  color: var(--nc-navy-deep);
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transform: translate(-11px, -50%);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nc-map-marker[hidden] {
  display: none;
}

.nc-map-marker:hover,
.nc-map-marker.is-active {
  color: #fff;
  background: transparent;
  transform: translate(-11px, -50%) scale(1.04);
}

.nc-map-marker > .nc-map-pin-dot {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 5px;
  flex: 0 0 22px;
  background: var(--nc-ocean-deep);
  box-shadow: 0 6px 14px rgba(7, 62, 83, 0.26);
  transform: rotate(-45deg);
  transition:
    background 160ms ease,
    box-shadow 160ms ease;
}

.nc-map-marker > .nc-map-pin-dot::after {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  inset: 50% auto auto 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.nc-map-marker > .nc-map-marker-label {
  display: block;
  min-height: 29px;
  padding: 7px 10px 6px;
  border: 1px solid rgba(12, 44, 68, 0.12);
  border-radius: 999px;
  color: var(--nc-navy-deep);
  background: rgba(255, 255, 255, 0.94);
  font-family: "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 5px 16px rgba(7, 62, 83, 0.13);
  transform: none;
}

.nc-map-marker:hover .nc-map-pin-dot,
.nc-map-marker.is-active .nc-map-pin-dot {
  background: var(--nc-coral);
  box-shadow:
    0 0 0 6px rgba(255, 111, 81, 0.18),
    0 7px 17px rgba(7, 62, 83, 0.28);
}

.nc-map-marker:hover .nc-map-marker-label,
.nc-map-marker.is-active .nc-map-marker-label {
  border-color: var(--nc-navy-deep);
  color: #fff;
  background: var(--nc-navy-deep);
}

.nc-map-marker-busay {
  top: 16%;
  left: 10%;
}

.nc-map-marker-it {
  top: 28%;
  left: 24%;
}

.nc-map-marker-ayala {
  top: 40%;
  left: 19%;
}

.nc-map-marker-srp {
  top: 66%;
  left: 24%;
}

.nc-map-marker-airport {
  top: 27%;
  left: 65%;
}

.nc-map-marker-newtown {
  top: 44%;
  left: 82%;
}

.nc-map-marker-maribago {
  top: 66%;
  left: 72%;
}

.nc-map-marker-kawasan {
  top: 89%;
  left: 12%;
}

.nc-map-caption {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 9px;
  max-width: 300px;
  margin: 0;
  padding: 6px 9px;
  border-radius: 999px;
  color: rgba(7, 48, 60, 0.7);
  background: rgba(255, 255, 255, 0.78);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

.nc-map-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.nc-map-detail {
  display: flex;
  min-width: 0;
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid rgba(12, 44, 68, 0.1);
  flex-direction: column;
  background: #fff;
}

.nc-map-detail-media {
  position: relative;
  height: 236px;
  margin: 0;
  overflow: hidden;
  flex: 0 0 auto;
  background: #d7eeee;
}

.nc-map-detail-media::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(4, 32, 45, 0.42));
  pointer-events: none;
}

.nc-map-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.nc-map-detail:hover .nc-map-detail-media img {
  transform: scale(1.035);
}

.nc-map-detail-media figcaption {
  position: absolute;
  z-index: 1;
  left: 16px;
  bottom: 14px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  color: #fff;
  background: rgba(5, 55, 70, 0.38);
  font-family: "Outfit", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  backdrop-filter: blur(8px);
}

.nc-map-detail-body {
  display: flex;
  min-height: 0;
  padding: 22px 22px 20px;
  flex: 1;
  flex-direction: column;
}

.nc-map-detail-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nc-map-detail-meta > span {
  color: var(--nc-ocean-deep);
  font-family: "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.nc-map-detail-meta > span:last-child {
  overflow: hidden;
  color: #687e83;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nc-map-detail h3 {
  margin: 8px 0 0;
  color: var(--nc-navy-deep);
  font-family: "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(25px, 2.2vw, 31px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.nc-map-detail h3 small {
  display: block;
  margin-top: 5px;
  color: #6b8186;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

.nc-map-detail-body > p {
  margin: 15px 0 0;
  color: #46646d;
  font-size: 13px;
  line-height: 1.78;
}

.nc-map-detail-tags {
  display: flex;
  padding: 0;
  margin: 16px 0 0;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.nc-map-detail-tags li {
  padding: 6px 9px;
  border: 1px solid rgba(3, 109, 126, 0.16);
  border-radius: 999px;
  color: var(--nc-ocean-deep);
  background: #f0fafa;
  font-size: 9px;
  font-weight: 800;
}

.nc-map-detail-actions {
  display: grid;
  margin-top: auto;
  padding-top: 20px;
  gap: 8px;
}

.nc-map-detail-actions a {
  display: flex;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 8px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}

.nc-map-detail-actions svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nc-map-detail-primary {
  color: #fff !important;
  background: linear-gradient(135deg, var(--nc-ocean-deep), #0a93a3);
  box-shadow: 0 10px 20px rgba(3, 109, 126, 0.18);
}

.nc-map-detail-secondary {
  border: 1px solid rgba(12, 44, 68, 0.12);
  color: var(--nc-navy-deep) !important;
  background: #fff;
}

.nc-map-detail-actions a:hover {
  transform: translateY(-1px);
}

.nc-map-directory {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(12, 44, 68, 0.13);
}

.nc-map-directory > header {
  display: flex;
  margin-bottom: 17px;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.nc-map-directory h3 {
  margin: 0;
  color: var(--nc-navy-deep);
  font-size: 22px;
  line-height: 1.4;
}

.nc-map-directory > header > p {
  margin: 0;
  color: #60777d;
  font-size: 12px;
}

.nc-map-place-track {
  display: grid;
  width: 100%;
  padding: 4px 2px 13px;
  margin: 0;
  overflow-x: auto;
  grid-auto-columns: minmax(218px, 0.78fr);
  grid-auto-flow: column;
  gap: 10px;
  list-style: none;
  scroll-padding-inline: 2px;
  scroll-snap-type: x proximity;
  scrollbar-color: rgba(3, 109, 126, 0.28) transparent;
  scrollbar-width: thin;
}

.nc-map-place-track li {
  min-width: 0;
  scroll-snap-align: start;
}

.nc-map-place-track li[hidden] {
  display: none;
}

.nc-map-place-track button {
  display: grid;
  width: 100%;
  min-height: 105px;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(12, 44, 68, 0.1);
  border-radius: 13px;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: stretch;
  gap: 11px;
  color: var(--nc-navy-deep);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 22px rgba(7, 62, 83, 0.06);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.nc-map-place-track button:hover,
.nc-map-place-track button.is-active {
  border-color: rgba(3, 109, 126, 0.55);
  box-shadow: 0 13px 26px rgba(7, 62, 83, 0.13);
  transform: translateY(-2px);
}

.nc-map-place-track button.is-active {
  background: #fff;
}

.nc-map-place-track img {
  width: 82px;
  height: 89px;
  border-radius: 9px;
  object-fit: cover;
}

.nc-map-place-track button > span {
  display: flex;
  min-width: 0;
  padding: 6px 4px 5px 0;
  justify-content: center;
  flex-direction: column;
}

.nc-map-place-track small {
  color: var(--nc-ocean-deep);
  font-family: "Outfit", sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.nc-map-place-track strong {
  overflow: hidden;
  margin-top: 5px;
  font-family: "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nc-map-place-track em {
  overflow: hidden;
  margin-top: 4px;
  color: #647b81;
  font-size: 9px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .nc-map-explorer {
    grid-template-columns: 1fr;
  }

  .nc-map-detail {
    display: grid;
    min-height: 0;
    grid-template-columns: minmax(270px, 0.82fr) minmax(0, 1.18fr);
  }

  .nc-map-detail-media {
    height: 100%;
    min-height: 330px;
  }

  .nc-map-detail-body {
    min-height: 330px;
  }
}

@media (max-width: 840px) {
  .nc-map-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .nc-map-heading-note {
    display: none;
  }

  .nc-map-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nc-map-filter-group {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .nc-map-filter-group::-webkit-scrollbar {
    display: none;
  }

  .nc-map-filter-group button {
    flex: 0 0 auto;
  }

  .nc-map-detail {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
    scroll-margin-top: 76px;
  }

  .nc-map-detail-media,
  .nc-map-detail-body {
    min-height: 310px;
  }
}

@media (max-width: 600px) {
  .nc-map-heading {
    margin-bottom: 22px;
  }

  .nc-map-copy > h2 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.17;
  }

  .nc-map-copy > p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.82;
  }

  .nc-map-panel,
  .nc-map-detail {
    border-radius: 18px;
  }

  .nc-map-toolbar {
    min-height: 0;
    padding: 14px;
  }

  .nc-map-toolbar > div:first-child > p {
    font-size: 14px;
  }

  .nc-map-filter-group {
    width: calc(100% + 28px);
    margin-inline: -14px;
    padding: 0 14px 2px;
  }

  .nc-map-filter-group button {
    min-height: 44px;
    padding-inline: 13px;
    font-size: 11px;
  }

  .nc-map-stage {
    border-radius: 0 0 17px 17px;
  }

  .nc-map-marker {
    min-height: 30px;
    gap: 3px;
    transform: translate(-8px, -50%);
  }

  .nc-map-marker:hover,
  .nc-map-marker.is-active {
    transform: translate(-8px, -50%) scale(1.02);
  }

  .nc-map-marker > .nc-map-pin-dot {
    width: 17px;
    height: 17px;
    border-width: 2px;
    flex-basis: 17px;
  }

  .nc-map-marker > .nc-map-marker-label {
    min-height: 23px;
    padding: 6px 7px 5px;
    font-size: 8px;
  }

  .nc-map-maplabels text {
    font-size: 12px;
  }

  .nc-map-caption {
    right: 7px;
    bottom: 6px;
    max-width: 210px;
    padding: 4px 6px;
    font-size: 6px;
  }

  .nc-map-detail {
    display: flex;
  }

  .nc-map-detail-media {
    width: 100%;
    height: 220px;
    min-height: 0;
  }

  .nc-map-detail-body {
    min-height: 0;
    padding: 19px 17px 17px;
  }

  .nc-map-detail h3 {
    font-size: 27px;
  }

  .nc-map-detail-body > p {
    font-size: 13px;
  }

  .nc-map-detail-actions {
    padding-top: 18px;
  }

  .nc-map-detail-actions a {
    min-height: 48px;
  }

  .nc-map-directory {
    margin-top: 25px;
    padding-top: 22px;
  }

  .nc-map-directory > header {
    margin-bottom: 13px;
  }

  .nc-map-directory > header > p {
    display: none;
  }

  .nc-map-directory h3 {
    font-size: 20px;
  }

  .nc-map-place-track {
    width: calc(100% + 35px);
    margin-inline: -18px;
    padding: 4px 18px 12px;
    grid-auto-columns: min(78vw, 288px);
    scroll-padding-inline: 18px;
    scroll-snap-type: x mandatory;
  }

  .nc-map-place-track button {
    min-height: 104px;
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .nc-map-place-track img {
    width: 88px;
  }
}

@media (max-width: 390px) {
  .nc-map-marker > .nc-map-marker-label {
    max-width: 61px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nc-map-marker-busay {
    left: 8%;
  }

  .nc-map-marker-newtown {
    left: 79%;
  }

  .nc-map-marker-maribago {
    left: 69%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nc-map-filter-group button,
  .nc-map-marker,
  .nc-map-pin-dot,
  .nc-map-detail-media img,
  .nc-map-place-track button {
    transition: none;
  }
}
