/**
 * NIK Blocks - Frontend Styles
 * Adapted from the prototype design for NIK Dubrovnik Transfers.
 */

/* ─── CSS VARIABLES ────────────────────────────────── */
:root {
    --nik-gold:   #c9a84c;
    --nik-gold2:  #e8c97a;
    --nik-dark:   #0a0a0a;
    --nik-dark2:  #111111;
    --nik-dark3:  #1a1a1a;
    --nik-dark4:  #222222;
    --nik-light:  #f5f0e8;
    --nik-grey:   #a0a0a0;
    --nik-white:  #ffffff;
}

/* ─── REMOVE GAPS BETWEEN NIK BLOCKS ───────────────── */
.nik-hero,
.nik-features,
.nik-comfort,
.nik-transfers,
.nik-tours,
.nik-boat,
.nik-contact,
.nik-header,
.nik-footer,
.nik-whatsapp-float {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* ─── WHATSAPP FLOAT ───────────────────────────────── */
.nik-whatsapp-float {
    /* The block wrapper must not introduce layout flow */
    position: static;
    display: block;
    height: 0;
    overflow: visible;
}

.nik-whatsapp-float__btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9998;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
}

.nik-whatsapp-float__btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

/* Subtle pulse ring */
.nik-whatsapp-float__btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.45);
    animation: nikWaPulse 2.4s ease-out infinite;
    pointer-events: none;
}

@keyframes nikWaPulse {
    0%   { opacity: 0.7; transform: scale(1); }
    70%  { opacity: 0;   transform: scale(1.45); }
    100% { opacity: 0;   transform: scale(1.45); }
}

@media (max-width: 480px) {
    .nik-whatsapp-float__btn {
        bottom: 18px;
        right: 16px;
        width: 50px;
        height: 50px;
    }
}

/* ─── SHARED ELEMENTS ──────────────────────────────── */
.nik-section-eyebrow {
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--nik-grey);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.nik-section-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--nik-gold);
    flex-shrink: 0;
}

.nik-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--nik-white);
}
.nik-section-title em {
    font-style: italic;
    color: var(--nik-gold);
}

.nik-btn-primary {
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--nik-dark);
    background: var(--nik-gold);
    padding: 16px 34px;
    border-radius: 2px;
    text-decoration: none;
    transition: background .25s, transform .2s;
    display: inline-block;
    border: none;
    cursor: pointer;
}
.nik-btn-primary:hover {
    background: var(--nik-gold2);
    transform: translateY(-2px);
    color: var(--nik-dark);
}

.nik-btn-outline {
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--nik-light);
    background: transparent;
    border: 1px solid rgba(245, 240, 232, 0.45);
    padding: 16px 34px;
    border-radius: 2px;
    text-decoration: none;
    transition: border-color .25s, color .25s, transform .2s;
    display: inline-block;
}
.nik-btn-outline:hover {
    border-color: var(--nik-gold);
    color: var(--nik-gold);
    transform: translateY(-2px);
}

.nik-btn-ghost {
    font-family: 'Raleway', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--nik-gold);
    background: transparent;
    border: 1px solid var(--nik-gold);
    padding: 12px 26px;
    border-radius: 2px;
    text-decoration: none;
    cursor: pointer;
    transition: background .25s, color .25s;
}
.nik-btn-ghost:hover {
    background: var(--nik-gold);
    color: var(--nik-dark);
}

.nik-btn-ghost-sm {
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--nik-gold);
    background: transparent;
    border: 1px solid var(--nik-gold);
    padding: 10px 20px;
    border-radius: 2px;
    text-decoration: none;
    cursor: pointer;
    transition: background .25s, color .25s;
    display: inline-block;
    white-space: nowrap;
}
.nik-btn-ghost-sm:hover {
    background: var(--nik-gold);
    color: var(--nik-dark);
}

/* ─── SCROLL REVEAL ──────────────────────────────────── */
.nik-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.nik-reveal.nik-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
 * 1. HERO
 * ═══════════════════════════════════════════════════════ */
.nik-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 !important;
    margin: 0;
    max-width: none !important;
}

.nik-hero__bg {
    position: absolute;
    inset: 0;
    background: url('') center/cover no-repeat;
    background-color: var(--nik-dark);
    filter: brightness(0.70);
    transform: scale(1.04);
    transition: transform 8s ease;
}
.nik-hero:hover .nik-hero__bg {
    transform: scale(1.0);
}

/* ─── Hero Carousel ───────────────────────── */
.nik-hero__carousel {
    position: absolute;
    inset: 0;
}
.nik-hero__carousel .nik-carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--nik-dark);
    filter: brightness(0.70);
    opacity: 0;
    transition: opacity 1.2s ease;
    transform: none;
}
.nik-hero__carousel .nik-carousel-slide.is-active {
    opacity: 1;
}
.nik-hero__carousel-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4;
}

.nik-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 10, 10, 0.72) 0%,
        rgba(10, 10, 10, 0.52) 50%,
        rgba(10, 10, 10, 0.22) 100%
    );
}

.nik-hero__badge {
    position: absolute;
    top: 120px;
    right: 60px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--nik-grey);
    text-align: right;
    z-index: 2;
    animation: nikHeroFade 0.7s ease both;
    animation-delay: 0.15s;
}
.nik-hero__badge::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--nik-gold);
    margin-left: auto;
    margin-bottom: 8px;
}

.nik-hero__content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 0 60px 80px;
    margin-top: 80px;
}

.nik-hero__eyebrow {
    font-family: 'Raleway', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--nik-grey);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: nikHeroFade 0.7s ease both;
    animation-delay: 0.30s;
}
.nik-hero__eyebrow::before {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--nik-gold);
    flex-shrink: 0;
}

.nik-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--nik-white);
    margin-bottom: 24px;
    animation: nikHeroFade 0.9s ease both;
    animation-delay: 0.50s;
}
.nik-hero__title em {
    font-style: italic;
    color: var(--nik-gold);
}

.nik-hero__sub {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(245, 240, 232, 0.75);
    max-width: 520px;
    margin-bottom: 44px;
    animation: nikHeroFade 0.7s ease both;
    animation-delay: 0.75s;
}

.nik-hero__actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 64px;
    animation: nikHeroFade 0.7s ease both;
    animation-delay: 0.95s;
}

.nik-hero__stats {
    display: flex;
    gap: 44px;
    flex-wrap: wrap;
    animation: nikHeroFade 0.7s ease both;
    animation-delay: 1.15s;
}

.nik-hero__stat {
    border-left: 2px solid var(--nik-gold);
    padding-left: 16px;
}

.nik-hero__stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--nik-white);
    line-height: 1;
}

.nik-hero__stat-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--nik-grey);
    margin-top: 4px;
}

.nik-hero__scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--nik-grey);
    z-index: 2;
}

.nik-hero__scroll-dot {
    width: 10px;
    height: 10px;
    border: 1px solid var(--nik-gold);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}
.nik-hero__scroll-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: var(--nik-gold);
    border-radius: 50%;
    animation: nikPulse 2s infinite;
}

@keyframes nikPulse {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.5); }
}

@keyframes nikHeroFade {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════
 * 2. FEATURES
 * ═══════════════════════════════════════════════════════ */
.nik-features {
    background: linear-gradient(155deg, #0d0d0d 0%, #131313 100%);
    padding: 100px 60px;
    max-width: none !important;
}

.nik-features__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    flex-wrap: wrap;
    gap: 24px;
}

.nik-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2px;
}

.nik-features__card {
    background: var(--nik-dark3);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: transform .3s;
}
.nik-features__card:hover {
    transform: translateY(-4px);
}
.nik-features__card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--nik-gold);
    transform: scaleX(0);
    transition: transform .35s;
}
.nik-features__card:hover::before {
    transform: scaleX(1);
}

.nik-features__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    display: block;
    color: var(--nik-gold);
}
.nik-features__icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--nik-gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nik-features__num {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.08);
    position: absolute;
    top: 24px;
    right: 28px;
    line-height: 1;
    pointer-events: none;
}

.nik-features__title {
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--nik-white);
    margin-bottom: 14px;
}

.nik-features__text {
    font-family: 'Raleway', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--nik-grey);
}

/* ═══════════════════════════════════════════════════════
 * 3. COMFORT
 * ═══════════════════════════════════════════════════════ */
.nik-comfort {
    background: linear-gradient(180deg, #090909 0%, var(--nik-dark) 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 100px 60px;
    max-width: none !important;
}

.nik-comfort__img-wrap {
    position: relative;
}
.nik-comfort__img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    filter: brightness(0.85);
    display: block;
}

/* ─── Comfort Carousel ────────────────────── */
.nik-comfort__carousel {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
}
.nik-comfort__carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    opacity: 0;
    transition: opacity 1.2s ease;
    display: block;
}
.nik-comfort__carousel-slide.is-active {
    opacity: 1;
}
.nik-comfort__carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

/* ─── Shared carousel dot styles ─────────── */
.nik-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transition: background 0.4s ease;
    display: inline-block;
    cursor: pointer;
}
.nik-carousel-dot.is-active {
    background: var(--nik-gold);
}
.nik-comfort__img-placeholder {
    width: 100%;
    height: 520px;
    background: var(--nik-dark3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nik-comfort__img-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--nik-dark);
    border: 1px solid var(--nik-gold);
    color: var(--nik-white);
    font-family: 'Raleway', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 20px 24px;
    text-align: center;
    line-height: 1.5;
}
.nik-comfort__img-badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    letter-spacing: 0;
    color: var(--nik-gold);
}

.nik-comfort__text .nik-section-title {
    margin-bottom: 24px;
}

.nik-comfort__desc {
    font-family: 'Raleway', sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.7);
    margin-bottom: 36px;
}

.nik-comfort__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 44px;
    padding: 0;
}
.nik-comfort__list li {
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--nik-light);
    display: flex;
    align-items: center;
    gap: 12px;
}
.nik-comfort__list li::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--nik-gold);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
 * 4. TRANSFERS TABLE
 * ═══════════════════════════════════════════════════════ */
.nik-transfers {
    background: var(--nik-dark3);
    padding: 100px 60px;
    max-width: none !important;
}

.nik-transfers__header {
    margin-bottom: 56px;
}

.nik-transfers__table {
    width: 100%;
    border-collapse: collapse;
}
.nik-transfers__table thead tr {
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}
.nik-transfers__table thead th {
    font-family: 'Raleway', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--nik-grey);
    padding: 0 20px 16px 0;
    text-align: left;
}
.nik-transfers__table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background .2s;
}
.nik-transfers__table tbody tr:hover {
    background: rgba(201, 168, 76, 0.04);
}
.nik-transfers__table tbody td {
    padding: 18px 20px 18px 0;
    font-family: 'Raleway', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--nik-light);
    vertical-align: middle;
}

.nik-transfers__route {
    font-family: 'Playfair Display', serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: var(--nik-white) !important;
}

.nik-transfers__time {
    font-size: 0.8rem !important;
    color: var(--nik-grey) !important;
}

.nik-transfers__price {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--nik-gold) !important;
    white-space: nowrap;
}

.nik-transfers__tag {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 2px;
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: var(--nik-gold);
}

.nik-transfers__footnote {
    margin-top: 28px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    color: var(--nik-grey);
}

/* ═══════════════════════════════════════════════════════
 * 5. TOURS
 * ═══════════════════════════════════════════════════════ */
.nik-tours {
    background: linear-gradient(160deg, #0e0e0e 0%, #141414 100%);
    padding: 100px 60px;
    max-width: none !important;
}

.nik-tours__header {
    margin-bottom: 56px;
}

.nik-tours__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px;
}

.nik-tours__card {
    background: var(--nik-dark3);
    overflow: hidden;
    transition: transform .3s;
    display: flex;
    flex-direction: column;
}
.nik-tours__card:hover {
    transform: translateY(-4px);
}

.nik-tours__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(0.65);
    transition: filter .4s, transform .4s;
    display: block;
    background: var(--nik-dark3);
}
.nik-tours__card:hover .nik-tours__img {
    filter: brightness(0.5);
    transform: scale(1.03);
}

.nik-tours__img-placeholder {
    width: 100%;
    height: 200px;
    background: var(--nik-dark4);
}

.nik-tours__body {
    padding: 30px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.nik-tours__duration {
    font-family: 'Raleway', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--nik-grey);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nik-tours__duration::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--nik-gold);
    flex-shrink: 0;
}

.nik-tours__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--nik-white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.nik-tours__desc {
    font-family: 'Raleway', sans-serif;
    font-size: 0.84rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--nik-grey);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nik-tours__highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 0;
    padding: 0;
    min-height: 100px;
}
.nik-tours__highlights li {
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(245, 240, 232, 0.75);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.nik-tours__highlights li::before {
    content: '—';
    color: var(--nik-gold);
    flex-shrink: 0;
}

.nik-tours__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    padding-top: 18px;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.nik-tours__price {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--nik-gold);
}

.nik-tours__footnote {
    margin-top: 28px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    color: var(--nik-grey);
}

/* ═══════════════════════════════════════════════════════
 * 6. BOAT CHARTER
 * ═══════════════════════════════════════════════════════ */
.nik-boat {
    background: var(--nik-dark);
    position: relative;
    overflow: hidden;
    padding: 100px 60px;
    max-width: none !important;
}

.nik-boat__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.30);
}

.nik-boat__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.nik-boat__text .nik-section-title {
    margin-bottom: 20px;
}

.nik-boat__desc {
    font-family: 'Raleway', sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.72);
    margin-bottom: 32px;
}

.nik-boat__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 40px;
}

.nik-boat__feat {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--nik-light);
}

.nik-boat__feat-icon {
    flex-shrink: 0;
    margin-top: 1px;
    width: 22px;
    height: 22px;
}
.nik-boat__feat-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--nik-gold);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.nik-boat__feat-label {
    line-height: 1.4;
}

.nik-boat__inquiry {
    background: rgba(201, 168, 76, 0.07);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 2px;
    padding: 20px 24px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(245, 240, 232, 0.65);
    display: flex;
    align-items: center;
    gap: 12px;
}
.nik-boat__inquiry strong {
    color: var(--nik-gold);
}

.nik-boat__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    height: 480px;
}
.nik-boat__gallery-main {
    grid-row: 1 / 3;
}
.nik-boat__gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: filter .35s;
}
.nik-boat__gallery img:hover {
    filter: brightness(1);
}
.nik-boat__gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--nik-dark4);
    min-height: 200px;
}

/* ═══════════════════════════════════════════════════════
 * 7. CONTACT
 * ═══════════════════════════════════════════════════════ */
.nik-contact {
    background: var(--nik-dark3);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 100px 60px;
    max-width: none !important;
}

.nik-contact__info .nik-section-title {
    margin-bottom: 24px;
}

.nik-contact__desc {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.65);
    margin-bottom: 40px;
}

.nik-contact__items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.nik-contact__item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--nik-light);
}
.nik-contact__item a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}
.nik-contact__item a:hover {
    color: var(--nik-gold);
}

.nik-contact__icon {
    width: 44px;
    height: 44px;
    background: var(--nik-dark4);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nik-contact__icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--nik-gold);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Contact Form */
.nik-contact__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nik-contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.nik-contact__form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nik-contact__form-group label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--nik-grey);
}

.nik-contact__form-group input,
.nik-contact__form-group select,
.nik-contact__form-group textarea {
    background: var(--nik-dark4);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--nik-light);
    font-family: 'Raleway', sans-serif;
    font-size: 0.88rem;
    padding: 14px 16px;
    outline: none;
    border-radius: 2px;
    transition: border-color .25s;
    resize: none;
}
.nik-contact__form-group input::placeholder,
.nik-contact__form-group textarea::placeholder {
    color: var(--nik-grey);
}
.nik-contact__form-group input:focus,
.nik-contact__form-group select:focus,
.nik-contact__form-group textarea:focus {
    border-color: var(--nik-gold);
}
.nik-contact__form-group select option {
    background: var(--nik-dark4);
}

.nik-contact__form .nik-btn-primary {
    align-self: flex-start;
}

/* ─── Contact Form 7 overrides ──────────────────────── */
.nik-contact__form .wpcf7 { width: 100%; }

.nik-contact__form .wpcf7-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 0;
    padding: 0;
}

/* Email, Service dropdown, Textarea, and Submit span both columns */
.nik-contact__form .wpcf7-form > p:has([name="your-email"]),
.nik-contact__form .wpcf7-form > p:has([name="your-service"]),
.nik-contact__form .wpcf7-form > p:has([name="your-message"]),
.nik-contact__form .wpcf7-form > p:last-child {
    grid-column: 1 / -1;
}

/* Labels become the form group */
.nik-contact__form .wpcf7-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--nik-grey);
    margin: 0;
}

/* Span wrapper must not break layout */
.nik-contact__form .wpcf7-form-control-wrap {
    display: block;
}

/* All field controls */
.nik-contact__form .wpcf7-form input:not([type=submit]),
.nik-contact__form .wpcf7-form select,
.nik-contact__form .wpcf7-form textarea {
    background: var(--nik-dark4);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--nik-light);
    font-family: 'Raleway', sans-serif;
    font-size: 0.88rem;
    padding: 14px 16px;
    outline: none;
    border-radius: 2px;
    transition: border-color .25s;
    resize: none;
    width: 100%;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}

.nik-contact__form .wpcf7-form input::placeholder,
.nik-contact__form .wpcf7-form textarea::placeholder {
    color: var(--nik-grey);
}

.nik-contact__form .wpcf7-form input:not([type=submit]):focus,
.nik-contact__form .wpcf7-form select:focus,
.nik-contact__form .wpcf7-form textarea:focus {
    border-color: var(--nik-gold);
}

.nik-contact__form .wpcf7-form select option {
    background: var(--nik-dark4);
    color: var(--nik-light);
}

/* CF7 autop wraps standalone labels and submit in <p> — strip all margins */
.nik-contact__form .wpcf7-form > p {
    margin: 0;
    padding: 0;
}


/* Submit button — matches .nik-btn-primary */
.nik-contact__form .wpcf7-form input[type=submit] {
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--nik-dark);
    background: var(--nik-gold);
    padding: 16px 34px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    width: auto;
    transition: background .25s, transform .2s;
}

.nik-contact__form .wpcf7-form input[type=submit]:hover {
    background: var(--nik-gold2);
    transform: translateY(-2px);
}

/* Validation messages */
.nik-contact__form .wpcf7-not-valid-tip {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    color: #e06c6c !important;
    margin-top: 4px;
    display: block !important;
    visibility: visible !important;
}

/* CF7 response output — base (hidden until form is in a result state) */
.nik-contact__form .wpcf7-response-output {
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    line-height: 1.5;
    padding: 0 !important;
    border-radius: 2px;
    margin: 0 !important;
    border: none !important;
    display: none !important;
    visibility: hidden !important;
}

/* Success — CF7 < 5.x (.wpcf7-mail-sent-ok) and CF7 5.x (form.sent) */
.nik-contact__form .wpcf7-mail-sent-ok,
.nik-contact__form .wpcf7 form.sent .wpcf7-response-output,
.nik-contact__form .wpcf7-form.sent .wpcf7-response-output {
    display: block !important;
    visibility: visible !important;
    padding: 12px 16px !important;
    margin: 4px 0 0 !important;
    border: 1px solid rgba(126, 212, 146, 0.5) !important;
    color: #7ed492 !important;
    background: rgba(126, 212, 146, 0.1) !important;
}

/* Error — CF7 < 5.x (.wpcf7-validation-errors) and CF7 5.x (form.invalid / form.unaccepted) */
.nik-contact__form .wpcf7-validation-errors,
.nik-contact__form .wpcf7-spam-blocked,
.nik-contact__form .wpcf7-mail-sent-ng,
.nik-contact__form .wpcf7 form.invalid .wpcf7-response-output,
.nik-contact__form .wpcf7 form.unaccepted .wpcf7-response-output,
.nik-contact__form .wpcf7 form.spam .wpcf7-response-output,
.nik-contact__form .wpcf7-form.invalid .wpcf7-response-output,
.nik-contact__form .wpcf7-form.unaccepted .wpcf7-response-output,
.nik-contact__form .wpcf7-form.spam .wpcf7-response-output {
    display: block !important;
    visibility: visible !important;
    padding: 12px 16px !important;
    margin: 4px 0 0 !important;
    border: 1px solid rgba(224, 108, 108, 0.5) !important;
    color: #e06c6c !important;
    background: rgba(224, 108, 108, 0.1) !important;
}

/* ═══════════════════════════════════════════════════════
 * RESPONSIVE — LARGE TABLET / NEST HUB MAX (≤ 1280px)
 * ═══════════════════════════════════════════════════════ */
@media (max-width: 1280px) {
    .nik-footer__inner { padding: 80px 40px 48px; }
    .nik-footer__grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 36px; }
}

/* ═══════════════════════════════════════════════════════
 * RESPONSIVE — TABLET (≤ 1024px)
 * ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .nik-hero__content { padding: 0 28px 80px; }
    .nik-hero__badge { right: 28px; }
    .nik-hero__scroll-hint { left: 28px; }

    .nik-features,
    .nik-transfers,
    .nik-tours,
    .nik-boat { padding: 80px 28px; }

    .nik-comfort {
        grid-template-columns: 1fr;
        padding: 80px 28px;
    }

    .nik-contact {
        grid-template-columns: 1fr;
        padding: 80px 28px;
    }
    .nik-contact__form .wpcf7-form {
        grid-template-columns: 1fr;
    }
    .nik-contact__form .wpcf7-form > p:has([name="your-email"]),
    .nik-contact__form .wpcf7-form > p:has([name="your-service"]),
    .nik-contact__form .wpcf7-form > p:has([name="your-message"]),
    .nik-contact__form .wpcf7-form > p:last-child {
        grid-column: 1;
    }

    .nik-boat__inner {
        grid-template-columns: 1fr;
    }
    .nik-boat__gallery {
        height: 320px;
    }

    .nik-features__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* ═══════════════════════════════════════════════════════
 * RESPONSIVE — SMALL TABLET / SURFACE DUO (≤ 768px)
 * ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .nik-features,
    .nik-transfers,
    .nik-tours,
    .nik-boat,
    .nik-comfort,
    .nik-contact { padding: 64px 22px; }

    .nik-comfort__img-wrap img,
    .nik-comfort__img-placeholder { height: 320px; }
    .nik-comfort__img-badge { right: 12px; bottom: 12px; }

    .nik-transfers { overflow-x: hidden; }
    .nik-transfers__table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -22px;
        padding: 0 22px;
    }
    .nik-transfers__table { min-width: 520px; }

    .nik-boat__gallery { height: 280px; }

    .nik-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .nik-footer__inner { padding: 56px 22px 36px; }
    .nik-footer__copyright { padding: 20px 22px; }
}

/* ═══════════════════════════════════════════════════════
 * RESPONSIVE — MOBILE (≤ 700px)
 * ═══════════════════════════════════════════════════════ */
@media (max-width: 700px) {
    .nik-features,
    .nik-transfers,
    .nik-tours,
    .nik-boat,
    .nik-comfort,
    .nik-contact {
        padding: 56px 18px;
    }

    .nik-hero__content { padding: 0 18px; margin-top: 60px; }
    .nik-hero__badge { display: none; }
    .nik-hero__eyebrow { font-size: 0.58rem; letter-spacing: 2px; }
    .nik-hero__title { font-size: clamp(2rem, 9vw, 3rem); margin-bottom: 16px; }
    .nik-hero__sub { font-size: 0.84rem; margin-bottom: 28px; }
    .nik-hero__actions { flex-direction: column; gap: 10px; }
    .nik-hero__actions a { text-align: center; padding: 13px 20px; font-size: 0.65rem; width: 100%; box-sizing: border-box; }
    .nik-hero__stats {
        gap: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        border: 1px solid rgba(201, 168, 76, 0.15);
    }
    .nik-hero__stat {
        border-left: none;
        padding: 14px 14px;
        border-right: 1px solid rgba(201, 168, 76, 0.15);
        border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    }
    .nik-hero__stat:nth-child(2n) { border-right: none; }
    .nik-hero__stat:nth-last-child(-n+2) { border-bottom: none; }
    .nik-hero__stat-num { font-size: 1.5rem; }
    .nik-hero__scroll-hint { display: none; }

    .nik-features__grid { grid-template-columns: 1fr; }
    .nik-features__card { padding: 36px 24px; }

    .nik-comfort { grid-template-columns: 1fr; gap: 48px; }
    .nik-comfort__img-wrap img,
    .nik-comfort__carousel { height: 260px; }
    .nik-comfort__img-badge { right: 10px; bottom: 10px; }

    .nik-tours__grid { grid-template-columns: 1fr; }

    .nik-boat__inner { grid-template-columns: 1fr; gap: 40px; }
    .nik-boat__gallery { height: 240px; }
    .nik-boat__features { grid-template-columns: 1fr; }

    .nik-contact { grid-template-columns: 1fr; gap: 40px; }
    .nik-contact__form-row { grid-template-columns: 1fr; }
    .nik-contact__form .nik-btn-primary { width: 100%; text-align: center; }
    .nik-contact__form .wpcf7-form input[type=submit] { width: 100%; }

    /* Transfers table — scrollable on mobile */
    .nik-transfers { overflow-x: hidden; }
    .nik-transfers__table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -18px;
        padding: 0 18px;
    }
    .nik-transfers__table { min-width: 480px; font-size: 0.78rem; }
    .nik-transfers__table thead th { font-size: 0.55rem; padding: 0 10px 12px 0; }
    .nik-transfers__table tbody td { padding: 14px 10px 14px 0; }

    .nik-footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .nik-footer__inner { padding: 48px 18px 32px; }
    .nik-footer__copyright { padding: 20px 18px; }
}

/* ═══════════════════════════════════════════════════════
 * RESPONSIVE — COMPACT MOBILE (≤ 480px)
 * ═══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .nik-features,
    .nik-transfers,
    .nik-tours,
    .nik-boat,
    .nik-comfort,
    .nik-contact { padding: 48px 16px; }

    .nik-section-title { font-size: clamp(1.75rem, 7vw, 2.6rem); }

    .nik-hero__content { padding: 0 16px; }
    .nik-hero__title { font-size: clamp(1.8rem, 9vw, 2.8rem); }

    .nik-features__card { padding: 28px 18px; }

    .nik-tours__body { padding: 22px 18px 20px; }

    .nik-contact__icon { width: 38px; height: 38px; }
    .nik-contact__icon svg { width: 17px; height: 17px; }

    .nik-btn-primary,
    .nik-btn-outline { padding: 14px 22px; font-size: 0.68rem; }

    .nik-transfers__table { min-width: 420px; }

    .nik-boat__gallery { height: 200px; }

    .nik-comfort__img-wrap img,
    .nik-comfort__carousel { height: 230px; }
    .nik-comfort__img-badge { padding: 14px 16px; }
    .nik-comfort__img-badge strong { font-size: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════
 * RESPONSIVE — EXTRA-SMALL MOBILE (≤ 380px)
 * ═══════════════════════════════════════════════════════ */
@media (max-width: 380px) {
    .nik-features,
    .nik-transfers,
    .nik-tours,
    .nik-boat,
    .nik-comfort,
    .nik-contact { padding: 40px 14px; }

    .nik-hero__content { padding: 0 14px; margin-top: 50px; }
    .nik-hero__title { font-size: clamp(1.6rem, 9.5vw, 2.4rem); }
    .nik-hero__sub { font-size: 0.78rem; }
    .nik-hero__stat-num { font-size: 1.3rem; }
    .nik-hero__stat-label { font-size: 0.55rem; }

    .nik-section-eyebrow { font-size: 0.58rem; letter-spacing: 2.5px; }
    .nik-section-title { font-size: clamp(1.6rem, 8vw, 2.2rem); }

    .nik-features__card { padding: 24px 14px; }
    .nik-features__num { font-size: 3rem; }

    .nik-contact__form-group label { font-size: 0.6rem; letter-spacing: 1.5px; }
    .nik-contact__form-group input,
    .nik-contact__form-group select,
    .nik-contact__form-group textarea { font-size: 0.82rem; padding: 12px 14px; }
    .nik-contact__form .wpcf7-form label { font-size: 0.6rem; letter-spacing: 1.5px; }
    .nik-contact__form .wpcf7-form input:not([type=submit]),
    .nik-contact__form .wpcf7-form select,
    .nik-contact__form .wpcf7-form textarea { font-size: 0.82rem; padding: 12px 14px; }

    .nik-transfers__table { min-width: 380px; font-size: 0.72rem; }

    .nik-footer__inner { padding: 40px 14px 28px; }
    .nik-footer__copyright { padding: 16px 14px; }
}

/* ═══════════════════════════════════════════════════════
 * HEADER / NAVBAR
 * ═══════════════════════════════════════════════════════ */
.nik-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    padding: 0;
}

.nik-header__nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nik-header__logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--nik-light);
    text-decoration: none;
    letter-spacing: 2px;
    white-space: nowrap;
    flex-shrink: 0;
}

.nik-header__logo-highlight {
    color: var(--nik-gold);
}

.nik-header__links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nik-header__link {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--nik-grey);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.nik-header__link:hover,
.nik-header__link.active {
    color: var(--nik-gold);
}

.nik-header__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--nik-gold);
    transition: width 0.3s;
}

.nik-header__link:hover::after {
    width: 100%;
}

.nik-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nik-header__cta {
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--nik-gold);
    color: var(--nik-dark);
    padding: 10px 28px;
    text-decoration: none;
    transition: all 0.3s;
}

.nik-header__cta:hover {
    background: var(--nik-gold2);
    transform: translateY(-1px);
}

/* Hamburger */
.nik-header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    width: 28px;
    position: relative;
    z-index: 10001;
}

.nik-header__hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--nik-light);
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
}

.nik-header__hamburger.is-active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nik-header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.nik-header__hamburger.is-active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile overlay */
.nik-header__mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.nik-header__mobile-overlay.is-open {
    display: flex;
}

.nik-header__mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    position: relative;
}

.nik-header__mobile-close {
    position: absolute;
    top: -60px;
    right: -20px;
    background: none;
    border: none;
    color: var(--nik-light);
    font-size: 2.2rem;
    cursor: pointer;
}

.nik-header__mobile-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--nik-light);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nik-header__mobile-link:hover {
    color: var(--nik-gold);
}

.nik-header__mobile-cta {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--nik-gold);
    color: var(--nik-dark);
    padding: 14px 42px;
    text-decoration: none;
    margin-top: 16px;
}

/* Header responsive */
@media (max-width: 1280px) {
    .nik-header__nav { padding: 0 30px; }
    .nik-header__links { gap: 18px; }
    .nik-header__link { font-size: 0.62rem; letter-spacing: 1px; }
    .nik-header__cta { padding: 10px 18px; font-size: 0.62rem; }
}

/* Tablets (iPad Pro, Surface, etc.) — show hamburger */
@media (max-width: 1100px) {
    .nik-header__links,
    .nik-header__actions { display: none; }
    .nik-header__hamburger { display: flex; }
    .nik-header__nav { padding: 0 24px; height: 64px; }
}

@media (max-width: 768px) {
    .nik-header__nav { padding: 0 20px; height: 60px; }
}

/* ═══════════════════════════════════════════════════════
 * FOOTER
 * ═══════════════════════════════════════════════════════ */
.nik-footer {
    background: var(--nik-dark);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding: 0;
}

.nik-footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px 48px;
}

.nik-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}

.nik-footer__logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--nik-light);
    text-decoration: none;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 16px;
}

.nik-footer__logo span {
    color: var(--nik-gold);
}

.nik-footer__desc {
    font-family: 'Raleway', sans-serif;
    color: var(--nik-grey);
    font-size: 0.82rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.nik-footer__social {
    display: flex;
    gap: 14px;
}

.nik-footer__social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nik-grey);
    text-decoration: none;
    transition: all 0.3s;
}

.nik-footer__social-link:hover {
    border-color: var(--nik-gold);
    color: var(--nik-gold);
    transform: translateY(-2px);
}

.nik-footer__col-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--nik-gold);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.nik-footer__col-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nik-footer__col-list li {
    margin-bottom: 10px;
}

.nik-footer__col-list a {
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    color: var(--nik-grey);
    text-decoration: none;
    transition: color 0.3s;
}

.nik-footer__col-list a:hover {
    color: var(--nik-gold);
}

.nik-footer__col-list--contact li {
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    color: var(--nik-grey);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nik-footer__icon {
    font-size: 0.9rem;
}

.nik-footer__copyright {
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    text-align: center;
    padding: 24px 60px;
}

.nik-footer__copyright p {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    color: #555;
    margin: 0;
}

/* Footer responsive */
@media (max-width: 1024px) {
    .nik-footer__inner { padding: 60px 30px 40px; }
    .nik-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nik-footer__inner { padding: 48px 20px 32px; }
    .nik-footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .nik-footer__copyright { padding: 20px; }
}

/* ─── 404 PAGE ─────────────────────────────────────── */
.nik-404-page {
    margin: 0;
    padding: 0;
    background-color: var(--nik-dark);
}

.nik-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,.12) 0%, transparent 65%),
                var(--nik-dark);
    font-family: 'Raleway', sans-serif;
    padding: 40px 20px;
}

.nik-404__inner {
    text-align: center;
    max-width: 560px;
}

.nik-404__logo {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: clamp(0.85rem, 2vw, 1rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--nik-light);
    text-decoration: none;
    margin-bottom: 60px;
}

.nik-404__logo span {
    color: var(--nik-gold);
}

.nik-404__code {
    font-family: 'Playfair Display', serif;
    font-size: clamp(6rem, 20vw, 10rem);
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--nik-gold);
    letter-spacing: 0.05em;
    opacity: 0.85;
}

.nik-404__divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--nik-gold), transparent);
    margin: 24px auto;
}

.nik-404__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 400;
    color: var(--nik-light);
    margin: 0 0 16px;
}

.nik-404__text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--nik-grey);
    line-height: 1.65;
    margin: 0 0 40px;
}

.nik-404__btn {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid var(--nik-gold);
    color: var(--nik-gold);
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s, color 0.25s;
}

.nik-404__btn:hover {
    background: var(--nik-gold);
    color: var(--nik-dark);
}
