.nw-hero,
.nw-stats,
.nw-gallery,
.nw-editorial,
.nw-cta,
.nw-lightbox {
--nw-dark: #0a1628;
--nw-navy: #0f1f3a;
--nw-blue: #0f4da8;
--nw-blue-deep: #0c3d86;
--nw-cyan: #6aa9ec;
--nw-ice: #a9d0f8;
--nw-teal: #35608f;
--nw-ivory: #f7f5f0;
--nw-sand: #f0ece4;
--nw-white: #ffffff;
--nw-ink: #121c28;
--nw-slate: #46505e;
--nw-muted: #67707e;
--nw-hairline: #e7e2d8;
--nw-hairline-strong: #dcd6c9;
--nw-font: 'Inter', system-ui, sans-serif;
--nw-mono: 'JetBrains Mono', ui-monospace, monospace;
--nw-max: 1200px;
--nw-gutter: 24px;
--nw-ease: cubic-bezier(0.45, 0, 0.55, 1);
} .nw-hero {
background: var(--nw-dark);
border-bottom: 1px solid var(--nw-hairline);
padding: clamp(88px, 11vw, 140px) var(--nw-gutter) clamp(72px, 9vw, 120px);
}
.nw-hero-inner {
max-width: var(--nw-max);
margin: 0 auto;
}
.nw-hero-content {
max-width: 720px;
text-align: left;
}
.nw-hero-badge {
display: inline-flex;
align-items: center;
gap: 12px;
font-family: var(--nw-font);
font-size: 0.74rem;
font-weight: 600;
color: var(--nw-cyan);
letter-spacing: 0.22em;
text-transform: uppercase;
margin-bottom: 24px;
animation: nwSlideUp 0.7s ease-out both;
}
.nw-hero-badge::before,
.nw-hero-badge::after {
content: '';
width: 26px;
height: 1px;
background: rgba(106, 169, 236, 0.5);
}
.nw-hero-title {
font-family: var(--nw-font);
font-size: clamp(1.7rem, 5vw, 4rem);
font-weight: 500;
color: var(--nw-white);
line-height: 1.12;
margin-bottom: 24px;
letter-spacing: -0.035em;
text-wrap: balance;
overflow-wrap: break-word;
word-wrap: break-word;
max-width: 100%;
animation: nwSlideUp 0.7s 0.1s ease-out both;
}
.nw-title-accent {
color: var(--nw-ice);
}
.nw-hero-desc {
font-family: var(--nw-font);
font-size: clamp(1rem, 1.8vw, 1.125rem);
font-weight: 400;
color: rgba(226, 232, 240, 0.78);
line-height: 1.8;
max-width: 640px;
animation: nwSlideUp 0.7s 0.2s ease-out both;
}
@keyframes nwSlideUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
} .nw-stats {
background: var(--nw-white);
border-bottom: 1px solid var(--nw-hairline);
}
.nw-stats-inner {
max-width: var(--nw-max);
margin: 0 auto;
display: flex;
flex-direction: column;
}
.nw-stat-item {
flex: 1;
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 40px var(--nw-gutter);
border-bottom: 1px solid var(--nw-hairline);
}
.nw-stat-item:last-child {
border-bottom: none;
}
.nw-stat-item-plus .nw-stat-number::after {
content: '+';
margin-left: 2px;
font-size: 0.85em;
}
.nw-stat-number {
font-family: var(--nw-mono);
font-size: clamp(1.75rem, 3vw, 2rem);
font-weight: 500;
color: var(--nw-dark);
line-height: 1.2;
margin-bottom: 8px;
letter-spacing: -0.02em;
}
.nw-stat-label {
font-family: var(--nw-font);
font-size: 0.75rem;
font-weight: 600;
color: var(--nw-teal);
text-transform: uppercase;
letter-spacing: 0.14em;
}
@media (min-width: 768px) {
.nw-stats-inner {
flex-direction: row;
}
.nw-stat-item {
border-bottom: none;
border-right: 1px solid var(--nw-hairline);
}
.nw-stat-item:last-child {
border-right: none;
}
} .nw-gallery {
background: var(--nw-ivory);
padding: clamp(72px, 9vw, 120px) var(--nw-gutter);
}
.nw-gallery-inner {
max-width: var(--nw-max);
margin: 0 auto;
display: flex;
flex-direction: column;
gap: clamp(48px, 6vw, 72px);
}
.nw-gallery-row {
display: grid;
grid-template-columns: 1fr;
gap: 32px;
}
@media (min-width: 768px) {
.nw-gallery-row {
grid-template-columns: repeat(2, 1fr);
gap: 32px;
padding-top: 8px;
}
.nw-card-offset {
margin-top: 64px;
}
} .nw-card {
background: var(--nw-white);
border: 1px solid var(--nw-hairline);
border-radius: 4px;
overflow: hidden;
cursor: pointer;
transition: transform 0.45s var(--nw-ease), border-color 0.3s ease, box-shadow 0.45s var(--nw-ease);
}
.nw-card:hover {
transform: translateY(-3px) scale(1.02);
border-color: var(--nw-teal);
box-shadow: 0 20px 44px -20px rgba(12, 26, 46, 0.14);
}
.nw-card:focus-visible {
outline: 2px solid var(--nw-blue);
outline-offset: 2px;
}
.nw-card-media {
position: relative;
width: 100%;
height: 500px;
overflow: hidden;
background: var(--nw-ivory);
border-bottom: 1px solid var(--nw-hairline);
}
.nw-card-media-sm {
height: 360px;
}
.nw-card-media img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.7s var(--nw-ease);
}
.nw-card:hover .nw-card-media img {
transform: scale(1.05);
}
.nw-card-play {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 52px;
height: 52px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.92);
border: 1px solid var(--nw-hairline-strong);
border-radius: 2px;
pointer-events: none;
opacity: 0.92;
transition: transform 0.45s var(--nw-ease), opacity 0.3s ease;
z-index: 2;
}
.nw-card-play svg {
width: 18px;
height: 18px;
fill: none;
stroke: var(--nw-blue);
margin-left: 2px;
}
.nw-card:hover .nw-card-play {
transform: translate(-50%, -50%) scale(1.04);
opacity: 1;
}
.nw-card-body {
padding: 24px 32px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
}
.nw-card-body-compact {
padding: 24px 28px;
min-height: auto;
}
.nw-card-meta {
font-family: var(--nw-mono);
font-size: 0.8125rem;
color: var(--nw-teal);
letter-spacing: 0.01em;
}
.nw-card-tag {
font-family: var(--nw-font);
font-size: 0.62rem;
font-weight: 600;
color: var(--nw-teal);
background: transparent;
padding: 0;
border-radius: 0;
letter-spacing: 0.1em;
text-transform: uppercase;
flex-shrink: 0;
}
.nw-tag-photo {
color: var(--nw-muted);
} .nw-editorial {
background: var(--nw-white);
border-top: 1px solid var(--nw-hairline);
padding: clamp(72px, 9vw, 100px) var(--nw-gutter);
}
.nw-editorial-inner {
max-width: 960px;
margin: 0 auto;
}
.nw-editorial-header {
margin-bottom: 40px;
}
.nw-editorial-eyebrow {
display: inline-flex;
align-items: center;
gap: 12px;
font-family: var(--nw-font);
font-size: 0.74rem;
font-weight: 600;
color: var(--nw-teal);
text-transform: uppercase;
letter-spacing: 0.2em;
margin-bottom: 16px;
}
.nw-editorial-eyebrow::before,
.nw-editorial-eyebrow::after {
content: '';
width: 26px;
height: 1px;
background: var(--nw-hairline-strong);
}
.nw-editorial-header h2 {
font-family: var(--nw-font);
font-size: clamp(1.7rem, 3vw, 2.25rem);
font-weight: 500;
color: var(--nw-dark);
line-height: 1.2;
letter-spacing: -0.02em;
}
.nw-editorial-body {
display: flex;
flex-direction: column;
gap: 40px;
}
.nw-editorial-text p {
font-family: var(--nw-font);
font-size: 1.02rem;
color: var(--nw-slate);
line-height: 1.85;
margin-bottom: 14px;
}
.nw-editorial-text p:last-child {
margin-bottom: 0;
}
.nw-editorial-text strong {
color: var(--nw-dark);
font-weight: 600;
}
.nw-editorial-text em {
color: var(--nw-blue);
font-style: normal;
font-weight: 500;
}
.nw-editorial-feature {
display: grid;
grid-template-columns: 1fr;
gap: 0;
background: var(--nw-dark);
border-radius: 6px;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.08);
}
.nw-editorial-img img {
width: 100%;
height: 260px;
object-fit: cover;
display: block;
}
.nw-editorial-aside {
padding: 32px 36px;
}
.nw-editorial-aside h3 {
font-family: var(--nw-font);
font-size: 1.35rem;
font-weight: 500;
color: var(--nw-white);
margin-bottom: 12px;
letter-spacing: -0.01em;
}
.nw-editorial-aside p {
font-family: var(--nw-font);
font-size: 0.95rem;
color: rgba(226, 232, 240, 0.78);
line-height: 1.85;
}
@media (min-width: 768px) {
.nw-editorial-feature {
grid-template-columns: 280px 1fr;
}
.nw-editorial-img img {
height: 100%;
min-height: 240px;
}
} .nw-cta {
background: var(--nw-ivory);
padding: clamp(72px, 9vw, 100px) var(--nw-gutter);
}
.nw-cta-inner {
max-width: 760px;
margin: 0 auto;
text-align: center;
background: var(--nw-dark);
border-radius: 6px;
padding: 48px 40px;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.nw-cta-inner h2 {
font-family: var(--nw-font);
font-size: clamp(1.4rem, 2.8vw, 1.85rem);
font-weight: 500;
color: var(--nw-white);
margin-bottom: 16px;
letter-spacing: -0.02em;
}
.nw-cta-inner p {
font-family: var(--nw-font);
font-size: 0.95rem;
color: rgba(226, 232, 240, 0.72);
line-height: 1.75;
margin-bottom: 32px;
max-width: 560px;
margin-left: auto;
margin-right: auto;
}
.nw-cta-buttons {
display: flex;
align-items: center;
justify-content: center;
gap: 14px;
flex-wrap: wrap;
}
.nw-btn-primary,
.nw-btn-primary:link,
.nw-btn-primary:visited {
display: inline-flex;
align-items: center;
gap: 8px;
font-family: var(--nw-font);
font-size: 0.82rem;
font-weight: 600;
color: #ffffff !important;
background: var(--nw-blue);
padding: 17px 38px;
border-radius: 2px;
text-decoration: none !important;
text-transform: uppercase;
letter-spacing: 0.14em;
transition: transform 0.45s var(--nw-ease), background 0.3s ease;
}
.nw-btn-primary:hover,
.nw-btn-primary:focus,
.nw-btn-primary:active {
transform: translateY(-1px);
background: var(--nw-blue-deep);
color: #ffffff !important;
text-decoration: none !important;
}
.nw-btn-primary svg {
width: 15px;
height: 15px;
transition: transform 0.3s ease;
}
.nw-btn-primary:hover svg {
transform: translateX(3px);
}
.nw-btn-secondary,
.nw-btn-secondary:link,
.nw-btn-secondary:visited {
display: inline-flex;
align-items: center;
font-family: var(--nw-font);
font-size: 0.82rem;
font-weight: 600;
color: var(--nw-cyan) !important;
background: transparent;
padding: 17px 38px;
border-radius: 2px;
border: 1px solid rgba(106, 169, 236, 0.35);
text-decoration: none !important;
text-transform: uppercase;
letter-spacing: 0.14em;
transition: transform 0.45s var(--nw-ease), border-color 0.3s ease;
}
.nw-btn-secondary:hover,
.nw-btn-secondary:focus,
.nw-btn-secondary:active {
transform: translateY(-1px);
border-color: rgba(106, 169, 236, 0.6);
color: var(--nw-cyan) !important;
text-decoration: none !important;
} .nw-lightbox {
display: none;
position: fixed;
inset: 0;
z-index: 99999;
align-items: center;
justify-content: center;
padding: clamp(16px, 4vw, 32px);
background: rgba(10, 22, 40, 0.9);
}
.nw-lightbox.active {
display: flex;
animation: nwFadeIn 0.28s var(--nw-ease);
}
@keyframes nwFadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.nw-lightbox-dialog {
position: relative;
width: 100%;
max-width: 1080px;
max-height: 92vh;
display: flex;
flex-direction: column;
background: var(--nw-white);
border: 1px solid var(--nw-hairline);
border-radius: 4px;
overflow: hidden;
box-shadow: 0 28px 64px -24px rgba(10, 22, 40, 0.45);
animation: nwScaleIn 0.38s var(--nw-ease);
}
@keyframes nwScaleIn {
from { opacity: 0; transform: translateY(12px) scale(0.98); }
to { opacity: 1; transform: translateY(0) scale(1); }
}
.nw-lightbox-close {
position: absolute;
top: 14px;
right: 14px;
width: 44px;
height: 44px;
background: var(--nw-white);
border: 1px solid var(--nw-hairline-strong);
border-radius: 2px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: transform 0.3s var(--nw-ease), border-color 0.3s ease, background 0.3s ease;
z-index: 5;
padding: 0;
}
.nw-lightbox-close:hover {
transform: translateY(-1px);
border-color: var(--nw-teal);
background: var(--nw-ivory);
}
.nw-lightbox-close svg {
width: 18px;
height: 18px;
color: var(--nw-dark);
stroke: var(--nw-dark);
}
.nw-lightbox-media {
flex: 1 1 auto;
display: flex;
align-items: center;
justify-content: center;
min-height: 0;
background: var(--nw-dark);
border-bottom: 1px solid var(--nw-hairline);
overflow: hidden;
}
.nw-lightbox-media img {
width: 100%;
max-height: calc(92vh - 88px);
object-fit: contain;
display: block;
background: var(--nw-dark);
}
.nw-lightbox-media iframe {
width: 100%;
aspect-ratio: 16 / 9;
max-height: calc(92vh - 88px);
background: var(--nw-dark);
display: block;
border: 0;
}
.nw-lightbox-footer {
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 20px 28px;
background: var(--nw-white);
}
.nw-lightbox-location {
font-family: var(--nw-mono);
font-size: 0.875rem;
font-weight: 500;
color: var(--nw-teal);
letter-spacing: 0.01em;
}
.nw-lightbox-type {
font-family: var(--nw-font);
font-size: 0.62rem;
font-weight: 600;
color: var(--nw-teal);
text-transform: uppercase;
letter-spacing: 0.1em;
margin-left: auto;
}
.nw-lightbox-type.nw-tag-photo {
color: var(--nw-muted);
}
.nw-lb-brand {
font-family: var(--nw-mono);
font-size: 0.68rem;
font-weight: 500;
color: var(--nw-muted);
letter-spacing: 0.12em;
text-transform: uppercase;
flex-shrink: 0;
padding-left: 16px;
border-left: 1px solid var(--nw-hairline);
} .nw-anim {
opacity: 1;
transform: translateY(0);
transition: opacity 0.65s var(--nw-ease), transform 0.65s var(--nw-ease);
}
.nw-anim.nw-hidden {
opacity: 0;
transform: translateY(24px);
} @media (max-width: 600px) {
.nw-hero {
padding: 64px var(--nw-gutter) 72px;
}
.nw-card-media {
height: 280px;
}
.nw-card-media-sm {
height: 240px;
}
.nw-card-offset {
margin-top: 0;
}
.nw-card-body,
.nw-card-body-compact {
padding: 24px;
}
.nw-cta-inner {
padding: 32px 24px;
}
.nw-cta-buttons {
flex-direction: column;
}
.nw-btn-primary,
.nw-btn-secondary {
width: 100%;
justify-content: center;
}
.nw-lightbox-footer {
flex-wrap: wrap;
padding: 16px 20px;
gap: 10px;
}
.nw-lightbox-type {
margin-left: 0;
order: 3;
width: 100%;
}
.nw-lb-brand {
padding-left: 0;
border-left: none;
margin-left: auto;
}
}