/*
Theme Name: Tourism Theme
Author: Cameron Boyce
Version: 1.2
*/

:root {
    --nc-charcoal-blue: #14344d;
    --nc-warm-cream: #efe6d8;
    --nc-clay: #d4674c;
    --nc-sage: #d8c8ae;
    --nc-ink: #0f2a3f;
    --nc-muted: #5b6b77;
    --nc-border: rgba(20, 52, 77, 0.16);
    --nc-surface: #ffffff;
    --nc-shadow: 0 18px 44px rgba(20, 52, 77, 0.12);
    --font-sans: "Poppins", ui-sans-serif, system-ui, sans-serif;
}

/* Match the denser 90% browser-zoom feel on larger screens. */
@media (min-width: 1240px) {
    body {
        zoom: .9;
    }
}

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

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

/* Header shell */

.nc-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--nc-charcoal-blue);
    color: #ffffff;
    box-shadow: 0 5px 18px rgba(5, 22, 34, 0.18);
    font-family: var(--font-sans);
    transition: background-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

/* Keep the navigation translucent site-wide unless an overlay panel is open. */
.nc-header:not(.is-menu-open):not(.is-search-open) {
    background: rgba(20, 52, 77, .88);
    box-shadow: 0 5px 18px rgba(5, 22, 34, .08);
    -webkit-backdrop-filter: blur(9px);
    backdrop-filter: blur(9px);
}

/* Slim gradient accent line seating the bar against the page below it. */
.nc-header::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--nc-clay) 0%, #f0a08c 45%, var(--nc-sage) 100%);
    z-index: 6;
}

.nc-header__inner {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.6vw, 26px);
    min-height: 88px;
    width: min(1560px, 100%);
    margin-inline: auto;
    padding: 8px clamp(14px, 2.6vw, 36px);
}

/* Brand: the complete three-panel destination mark, treated as one identity. */

.nc-header__brand {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding-right: clamp(18px, 2vw, 32px);
    color: #ffffff;
    text-decoration: none;
}

.nc-header__heritage-inline {
    display: flex;
    width: 300px;
    flex-direction: column;
    align-items: center;
    transform: none;
    transition: transform 180ms ease;
}

.nc-header__heritage-logo {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 3px 4px rgba(4, 18, 29, 0.28));
}

.nc-header__brand:hover .nc-header__heritage-inline {
    transform: translateY(-2px);
}

.nc-header__logo {
    display: block;
    width: auto;
    max-height: 48px;
}

.nc-header__brand-sub {
    margin-top: -2px;
    color: #f3a18d;
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Desktop nav */

.nc-header__nav {
    display: flex;
    margin-left: auto;
    gap: 2px;
    align-items: center;
}

.nc-header__link {
    position: relative;
    padding: 11px clamp(9px, 0.7vw, 14px);
    color: #ffffff;
    font-size: clamp(0.9rem, 0.62vw + 0.4rem, 1rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 7px;
    text-shadow: 0 1px 2px rgba(3, 16, 26, 0.35);
    transition: color 140ms ease, background-color 140ms ease, transform 140ms ease;
}

.nc-header__link::after {
    content: '';
    position: absolute;
    right: 10px;
    bottom: 4px;
    left: 10px;
    height: 2.5px;
    background: linear-gradient(90deg, var(--nc-clay), #f0a08c);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.nc-header__link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

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

.nc-header__link.is-active {
    color: #ffffff;
}

.nc-header__link.is-active::after {
    transform: scaleX(1);
}

/* Actions cluster */

.nc-header__actions {
    display: flex;
    flex-shrink: 0;
    gap: 6px;
    align-items: center;
}

.nc-header__icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 8px;
    color: rgba(255, 255, 255, 0.88);
    background: transparent;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 140ms ease, color 140ms ease;
}

.nc-header__icon-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.nc-header__icon-btn svg {
    width: 19px;
    height: 19px;
}

/* Search — the desktop toggle opens a full-width bar BELOW the header,
   so the nav row never shifts or squeezes. */

.nc-header__search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

.nc-header__search-bar {
    display: flex;
    flex: 1;
    min-width: 0;
    align-items: center;
}

.nc-header__search input {
    color: #ffffff;
    background: transparent;
    border: 0;
    outline: none;
    font-family: inherit;
    font-size: 0.87rem;
}

.nc-header__search input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.nc-header__search input::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.nc-header__search-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 12px;
    color: rgba(255, 255, 255, 0.85);
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.nc-header__search-submit svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
}

/* Icon-only submit by default (mobile panel); the label shows on desktop. */
.nc-header__search-submit span {
    display: none;
}

.nc-header__search-hint {
    display: none;
}

/* Desktop instance: a polished drop-down strip under the sticky header. */

.nc-header__actions .nc-header__search {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 5;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    padding: clamp(20px, 3vw, 30px) clamp(14px, 2.6vw, 36px) clamp(22px, 3vw, 32px);
    background: linear-gradient(180deg, var(--nc-charcoal-blue) 0%, var(--nc-ink) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    box-shadow: 0 30px 50px rgba(10, 24, 34, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 0s linear 200ms;
}

.nc-header.is-search-open .nc-header__actions .nc-header__search {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity 200ms ease, transform 200ms ease;
}

/* The white pill: leading magnifier, roomy input, labelled clay button. */

.nc-header__actions .nc-header__search-bar {
    flex: 0 0 auto;
    width: min(660px, 100%);
    gap: 4px;
    padding: 6px 6px 6px 22px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 999px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.30);
}

.nc-header__actions .nc-header__search-bar::before {
    content: '';
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6b77' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.8-3.8'/%3E%3C/svg%3E") no-repeat center / contain;
}

.nc-header__actions .nc-header__search input {
    flex: 1;
    min-width: 0;
    padding: 13px 10px;
    color: var(--nc-ink);
    font-size: 1.02rem;
}

.nc-header__actions .nc-header__search input::placeholder {
    color: var(--nc-muted);
}

.nc-header__actions .nc-header__search .nc-header__search-submit {
    padding: 12px 26px;
    border-radius: 999px;
    background: var(--nc-clay);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    transition: background-color 150ms ease, transform 150ms ease;
}

.nc-header__actions .nc-header__search .nc-header__search-submit:hover {
    background: #bf5539;
    transform: translateY(-1px);
}

.nc-header__actions .nc-header__search .nc-header__search-submit span {
    display: inline;
}

.nc-header__actions .nc-header__search .nc-header__search-submit svg {
    width: 16px;
    height: 16px;
}

.nc-header__search-toggle[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.16);
}

/* Language switcher */

.nc-lang {
    position: relative;
}

.nc-lang__toggle {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    min-height: 40px;
    padding: 7px 10px;
    color: rgba(255, 255, 255, 0.94);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
    transition: background-color 140ms ease, border-color 140ms ease;
}

.nc-lang__toggle:hover,
.nc-lang.is-open .nc-lang__toggle {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
}

.nc-lang__toggle:focus-visible {
    outline: 2px solid #f0a08c;
    outline-offset: 3px;
}

.nc-lang__code {
    display: none;
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.nc-lang__chevron {
    width: 14px;
    height: 14px;
    transition: transform 160ms ease;
}

.nc-lang.is-open .nc-lang__chevron {
    transform: rotate(180deg);
}

.nc-lang__menu {
    position: absolute;
    top: calc(100% + 34px);
    right: 0;
    z-index: 20;
    display: none;
    min-width: 218px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid rgba(15, 42, 63, 0.1);
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(7, 27, 42, 0.28);
}

.nc-lang.is-open .nc-lang__menu {
    display: block;
}

.nc-lang__menu::before {
    position: absolute;
    top: -6px;
    right: 25px;
    width: 11px;
    height: 11px;
    background: #fff;
    border-top: 1px solid rgba(15, 42, 63, 0.1);
    border-left: 1px solid rgba(15, 42, 63, 0.1);
    content: "";
    transform: rotate(45deg);
}

.nc-lang__menu-label {
    display: block;
    padding: 8px 10px 7px;
    color: var(--nc-muted);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nc-lang__item {
    display: grid;
    grid-template-columns: 34px 1fr 16px;
    gap: 10px;
    align-items: center;
    min-height: 46px;
    padding: 8px 10px;
    border-radius: 9px;
    color: var(--nc-ink);
    font-size: 0.87rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 140ms ease, color 140ms ease;
}

a.nc-lang__item:hover,
a.nc-lang__item:focus-visible {
    color: var(--nc-ink);
    background: #f7f1e8;
    outline: none;
}

.nc-lang__item.is-current {
    background: rgba(212, 103, 76, 0.09);
}

.nc-lang__item-code {
    color: var(--nc-clay);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.09em;
}

.nc-lang__item svg {
    grid-column: 3;
    width: 15px;
    height: 15px;
    color: var(--nc-clay);
}

.nc-lang__item.is-soon {
    color: var(--nc-muted);
    font-weight: 600;
}

.nc-lang__item.is-soon em {
    padding: 2px 8px;
    background: #f4ede1;
    border-radius: 999px;
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* Trip planner CTA */

.nc-header__cta {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    margin-left: 4px;
    padding: 10px 18px;
    color: #ffffff;
    background: var(--nc-clay);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(194, 73, 46, 0.28);
    transition: background-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.nc-header__cta:hover {
    background: #bf5539;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(194, 73, 46, 0.38);
}

.nc-header__cta svg {
    width: 16px;
    height: 16px;
}

/* Burger (hidden on desktop) */

.nc-header__menu-toggle {
    display: none;
}

.nc-header__burger {
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: background-color 140ms ease;
}

.nc-header__burger::before,
.nc-header__burger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 200ms ease, top 200ms ease;
}

.nc-header__burger::before {
    top: -6px;
}

.nc-header__burger::after {
    top: 6px;
}

.nc-header.is-menu-open .nc-header__burger {
    background: transparent;
}

.nc-header.is-menu-open .nc-header__burger::before {
    top: 0;
    transform: rotate(45deg);
}

.nc-header.is-menu-open .nc-header__burger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile panel */

.nc-header__panel {
    display: none;
    overflow: hidden;
    max-height: 0;
    background: #0f2a3f;
    transition: max-height 280ms ease;
}

.nc-header.is-menu-open .nc-header__panel {
    max-height: 720px;
}

.nc-header__panel-inner {
    display: flex;
    flex-direction: column;
    padding: 16px clamp(14px, 4vw, 36px) 26px;
}

.nc-header__panel .nc-header__search {
    margin-bottom: 14px;
    border-radius: 12px;
}

.nc-header__panel .nc-header__search input {
    flex: 1;
    width: auto;
    padding: 13px 4px 13px 16px;
    opacity: 1;
    font-size: 1rem;
}

.nc-header__panel .nc-header__search .nc-header__search-submit {
    display: inline-flex;
    padding: 13px 16px;
}

.nc-header__panel-link {
    display: block;
    padding: 15px 6px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 1.08rem;
    font-weight: 700;
    text-decoration: none;
}

.nc-header__panel-link.is-active {
    color: #f0a08c;
}

.nc-header__panel-footer {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
}

.nc-lang-pills {
    display: inline-flex;
    gap: 7px;
}

.nc-lang-pills__pill {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    padding: 9px 13px;
    color: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 650;
    text-decoration: none;
}

.nc-lang-pills__pill strong {
    color: #f0a08c;
    font-size: 0.67rem;
    letter-spacing: 0.08em;
}

.nc-lang-pills__pill.is-current {
    color: var(--nc-charcoal-blue);
    background: #ffffff;
    border-color: #ffffff;
}

.nc-lang-pills__pill.is-current strong {
    color: var(--nc-clay);
}

.nc-header__cta--panel {
    flex: 1;
    justify-content: center;
    margin-left: 0;
    padding: 13px 18px;
    font-size: 0.95rem;
}

/* Responsive switch */

@media (max-width: 1399px) and (min-width: 1240px) {
    .nc-header__inner {
        gap: 10px;
    }

    .nc-header__brand {
        padding-right: 12px;
    }

    .nc-header__heritage-inline { width: 292px; }
    .nc-header__brand-sub { font-size: 0.43rem; }

    .nc-header__link {
        padding-inline: 8px;
    }

    .nc-header__actions .nc-lang {
        display: none;
    }

    /* Not enough room for nav + expanded search: the open search
       temporarily replaces the nav links; closing it brings them back. */
    .nc-header.is-search-open .nc-header__nav {
        display: none;
    }
}

@media (max-width: 1239px) {
    .nc-header__inner {
        min-height: 96px;
    }

    .nc-header__heritage-inline { width: 206px; }

    .nc-header__actions {
        margin-left: auto;
    }

    .nc-header__nav,
    .nc-header__actions .nc-header__search,
    .nc-header__search-toggle,
    .nc-header__actions .nc-lang {
        display: none;
    }

    .nc-header__menu-toggle {
        display: inline-flex;
    }

    .nc-header__panel {
        display: block;
    }
}

@media (max-width: 540px) {
    .nc-header__inner {
        justify-content: space-between;
        gap: 6px;
        min-height: 76px;
        padding-inline: 14px;
    }

    .nc-header__brand {
        min-width: 0;
        padding-right: 0;
    }

    .nc-header__heritage-inline { width: clamp(176px, 50vw, 205px); }

    .nc-header__brand-sub {
        display: none;
    }

    .nc-header__actions {
        gap: 2px;
        margin-left: auto;
    }

    .nc-header__actions .nc-header__cta span {
        display: none;
    }

    .nc-header__actions .nc-header__cta {
        margin-left: 0;
        padding: 9px 10px;
    }

    .nc-header__actions .nc-header__cta svg {
        width: 19px;
        height: 19px;
    }
}

@media (max-width: 380px) {
    .nc-header__inner {
        min-height: 72px;
        padding-inline: 10px;
    }

    .nc-header__heritage-inline { width: clamp(165px, 51vw, 190px); }
}

/* Keyboard focus rings — visible for keyboard users, not on mouse click. */
.nc-header__brand:focus-visible,
.nc-header__link:focus-visible,
.nc-header__icon-btn:focus-visible,
.nc-lang__toggle:focus-visible,
.nc-header__cta:focus-visible,
.nc-header__panel-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 2px;
}

.nc-lang__item:focus-visible {
    outline: 2px solid var(--nc-clay);
    outline-offset: 1px;
}

.nc-header__actions .nc-header__search-bar:focus-within {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.30), 0 0 0 2px var(--nc-clay);
}

@media (prefers-reduced-motion: reduce) {
    .nc-header__heritage-inline { transition: none; }
    .nc-header__link::after { transition: none; }
}

/* Site footer */

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

.nc-footer {
    position: relative;
    overflow: hidden;
    background: var(--nc-charcoal-blue);
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-sans);
    line-height: 1.5;
}

.nc-footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.1fr 1.1fr;
    gap: clamp(32px, 4vw, 64px);
    width: min(1440px, calc(100% - 48px));
    margin-inline: auto;
    padding: clamp(46px, 6vw, 74px) 0 clamp(40px, 5vw, 64px);
}

/* Brand + contact column */

.nc-footer__brand-link {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
}

.nc-footer__mark {
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
}

.nc-footer__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nc-footer__brand-name {
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.nc-footer__brand-sub {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
    font-weight: 500;
}

.nc-footer__script {
    margin: 16px 0 0;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f0a08c;
}

.nc-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
    font-style: normal;
}

.nc-footer__contact-line {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.93rem;
    text-decoration: none;
}

.nc-footer__contact-line svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: var(--nc-sage);
}

a.nc-footer__contact-line:hover {
    color: #ffffff;
    text-decoration: underline;
}

.nc-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.nc-footer__social-title {
    margin: 25px 0 0;
    color: var(--nc-sage);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nc-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: background-color 150ms ease, transform 150ms ease;
}

.nc-footer__social a:hover {
    background: var(--nc-clay);
    transform: translateY(-2px);
}

.nc-footer__social svg {
    width: 20px;
    height: 20px;
}

/* Link columns */

.nc-footer__heading {
    margin: 6px 0 0;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--nc-sage);
}

.nc-footer__heading::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    margin-top: 10px;
    background: var(--nc-clay);
    border-radius: 2px;
}

.nc-footer__links {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.nc-footer__links li + li {
    margin-top: 11px;
}

.nc-footer__links a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 140ms ease;
}

.nc-footer__links a:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Bottom bar */

.nc-footer__bottom {
    background: rgba(5, 22, 35, 0.36);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nc-footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    align-items: center;
    justify-content: space-between;
    width: min(1440px, calc(100% - 48px));
    margin-inline: auto;
    padding: 18px 0;
}

.nc-footer__legal {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.nc-footer__copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.87rem;
}

.nc-footer__utility {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}

.nc-footer__utility a,
.nc-footer__utility span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    text-decoration: none;
}

.nc-footer__utility a:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.nc-footer__partner {
    display: flex;
    gap: 14px;
    align-items: center;
}

.nc-footer__partner > span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nc-footer__nhl {
    display: block;
    width: auto;
    max-height: 76px;
    padding: 7px 12px;
    background: #ffffff;
    border-radius: 10px;
}

/* Light, editorial footer */

.nc-footer {
    color: #35566c;
    background:
        linear-gradient(180deg, rgba(247, 241, 231, 0.52), rgba(255, 255, 255, 0) 180px),
        #fbfaf7;
    border-top: 5px solid var(--nc-clay);
}

.nc-footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: min(34vw, 520px);
    height: 5px;
    background: var(--nc-sage);
}

.nc-footer__inner {
    grid-template-columns: 1fr 1fr 1.35fr 1.2fr;
    gap: clamp(34px, 4.5vw, 68px);
    padding: clamp(42px, 4.5vw, 58px) 0 clamp(34px, 4vw, 48px);
}

.nc-footer__inner--3 {
    grid-template-columns: minmax(340px, 1.25fr) minmax(220px, 0.9fr) minmax(300px, 1.15fr);
    gap: clamp(54px, 7vw, 110px);
}

.nc-footer__inner--4 {
    grid-template-columns: minmax(250px, 1.1fr) minmax(190px, 0.88fr) minmax(280px, 1.18fr) minmax(190px, 0.82fr);
}

.nc-footer__brand {
    order: -1;
}

.nc-footer__connect {
    order: 4;
}

.nc-footer__brand-link {
    color: var(--nc-charcoal-blue);
}

.nc-footer__mark {
    width: 48px;
    height: 48px;
}

.nc-footer__brand-name {
    font-size: 1.05rem;
}

.nc-footer__brand-sub,
.nc-footer__copyright,
.nc-footer__partner > span {
    color: #70818c;
}

.nc-footer__script {
    margin-top: 18px;
    color: var(--nc-clay);
}

.nc-footer__contact {
    gap: 9px;
    margin-top: 16px;
}

.nc-footer__contact-line {
    color: #46657a;
    font-size: 0.88rem;
}

.nc-footer__contact-line svg {
    color: #6f9377;
}

a.nc-footer__contact-line:hover {
    color: var(--nc-charcoal-blue);
}

.nc-footer__social-title,
.nc-footer__heading {
    color: var(--nc-charcoal-blue);
}

.nc-footer__social-title {
    margin-top: 24px;
}

.nc-footer__social a {
    width: 44px;
    height: 44px;
    color: #ffffff;
    background: var(--nc-charcoal-blue);
    border-radius: 10px;
    box-shadow: 0 7px 16px rgba(20, 52, 77, 0.12);
}

.nc-footer__social a:hover {
    background: var(--nc-clay);
}

.nc-footer__heading {
    margin-top: 0;
    font-size: 0.82rem;
    letter-spacing: 0.11em;
}

.nc-footer__heading::after {
    width: 36px;
    height: 2px;
    background: #d89b37;
}

.nc-footer__links {
    margin-top: 18px;
}

.nc-footer__links li + li {
    margin-top: 9px;
}

.nc-footer__links a {
    color: #315b77;
    font-size: 0.96rem;
}

.nc-footer__links a:hover {
    color: var(--nc-clay);
}

.nc-footer__partner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    margin-top: 25px;
}

.nc-footer__partner--bottom {
    display: flex;
    width: auto;
    flex-direction: row;
    margin: 0;
}

.nc-footer__partner > span {
    display: none;
}

.nc-footer__nhl {
    width: min(100%, 270px);
    max-width: 270px;
    max-height: none;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.nc-footer__bottom {
    background: #f3f1eb;
    border-top: 1px solid rgba(20, 52, 77, 0.12);
}

.nc-footer__bottom-inner {
    min-height: 98px;
    padding: 10px 0;
}

.nc-footer__legal {
    width: 100%;
    flex-direction: row;
    gap: 18px 32px;
    align-items: center;
    justify-content: space-between;
}

.nc-footer__utility {
    margin-left: auto;
}

.nc-footer__utility a {
    color: #526c7d;
}

.nc-footer__utility a:hover {
    color: var(--nc-charcoal-blue);
}

.nc-footer__partner--bottom .nc-footer__nhl {
    width: 138px;
    max-width: 138px;
}

.nc-footer__connect .nc-footer__heading {
    margin-bottom: 18px;
}

.nc-footer__connect .nc-footer__social {
    margin-top: 0;
    gap: 8px;
}

.nc-footer__connect .nc-footer__social a {
    width: 42px;
    height: 42px;
}

/* Coastal footer composition */

.nc-footer::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 74px;
    left: 0;
    height: 150px;
    opacity: 0.38;
    background:
        repeating-radial-gradient(ellipse at -4% 112%, transparent 0 18px, rgba(212, 103, 76, 0.16) 19px 20px, transparent 21px 33px),
        repeating-radial-gradient(ellipse at 104% 112%, transparent 0 20px, rgba(111, 147, 119, 0.14) 21px 22px, transparent 23px 36px);
    pointer-events: none;
}

.nc-footer__inner,
.nc-footer__bottom {
    position: relative;
    z-index: 1;
}

.nc-footer__inner--4 {
    grid-template-columns: minmax(250px, 1.05fr) minmax(190px, 0.9fr) minmax(280px, 1.15fr) minmax(210px, 0.9fr);
}

.nc-footer__mark {
    width: 62px;
    height: 62px;
}

.nc-footer__brand-name {
    max-width: 220px;
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 750;
    letter-spacing: -0.02em;
    line-height: 1.08;
}

.nc-footer__brand-sub {
    margin-top: 6px;
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nc-footer__description {
    max-width: 230px;
    margin: 28px 0 0;
    color: #294d65;
    font-size: 0.9rem;
    line-height: 1.55;
}

.nc-footer__brand-cta {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    margin-top: 19px;
    color: var(--nc-clay);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-decoration: none;
    text-transform: uppercase;
}

.nc-footer__brand-cta span {
    font-size: 1.2rem;
    transition: transform 150ms ease;
}

.nc-footer__brand-cta:hover {
    color: var(--nc-charcoal-blue);
}

.nc-footer__brand-cta:hover span {
    transform: translateX(4px);
}

.nc-footer__heading::after {
    background: var(--nc-clay);
}

.nc-footer__connect-copy {
    max-width: 230px;
    margin: 0 0 16px;
    color: #355a72;
    font-size: 0.84rem;
    line-height: 1.55;
}

.nc-footer__connect .nc-footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    box-shadow: none;
}

.nc-footer__connect .nc-footer__social svg {
    width: 18px;
    height: 18px;
}

.nc-footer__connect-partner {
    max-width: 220px;
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid rgba(20, 52, 77, 0.14);
}

.nc-footer__connect-partner .nc-footer__nhl {
    width: 180px;
    max-width: 180px;
}

.nc-footer__partner--bottom {
    display: none;
}

.nc-footer__bottom {
    color: rgba(255, 255, 255, 0.74);
    background: var(--nc-charcoal-blue);
    border-top: 0;
}

.nc-footer__bottom-inner {
    min-height: 74px;
    padding: 16px 0;
}

.nc-footer__copyright,
.nc-footer__bottom .nc-footer__utility a,
.nc-footer__bottom .nc-footer__utility span {
    color: rgba(255, 255, 255, 0.74);
}

.nc-footer__bottom .nc-footer__utility a:hover {
    color: #ffffff;
}

/* Responsive */

@media (max-width: 1024px) {
    .nc-footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .nc-footer__brand {
        order: -1;
    }

    .nc-footer__connect {
        order: 0;
    }
}

@media (max-width: 640px) {
    .nc-footer__inner,
    .nc-footer__bottom-inner {
        width: min(100% - 32px, 1440px);
    }

    .nc-footer__inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .nc-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .nc-footer__utility {
        margin-left: 0;
    }

    .nc-footer__partner--bottom {
        align-items: flex-start;
    }
}

/* Refined site footer */

.nc-footer {
    overflow: hidden;
    color: rgba(255, 255, 255, .76);
    background: #102f46;
    border-top: 0;
}

.nc-footer::before {
    top: auto;
    right: -120px;
    bottom: 100px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(216, 200, 174, .08), transparent 66%);
}

.nc-footer::after {
    right: auto;
    bottom: 86px;
    left: -90px;
    width: 430px;
    height: 170px;
    opacity: .35;
    background: repeating-radial-gradient(ellipse at 8% 110%, transparent 0 20px, rgba(240, 160, 140, .22) 21px 22px, transparent 23px 38px);
}

.nc-footer__signup {
    position: relative;
    z-index: 2;
    color: var(--nc-charcoal-blue);
    background: #f2e8d8;
}

.nc-footer__signup::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--nc-clay), #e8a264 48%, var(--nc-sage));
}

.nc-footer__signup-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
    gap: clamp(38px, 7vw, 110px);
    align-items: center;
    width: min(1400px, calc(100% - 64px));
    margin-inline: auto;
    padding: clamp(38px, 4.5vw, 62px) 0;
}

.nc-footer__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--nc-clay);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.nc-footer__signup h2 {
    margin: 0;
    color: var(--nc-charcoal-blue);
    font-size: clamp(1.7rem, 2.5vw, 2.7rem);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.12;
}

.nc-footer__signup-copy p {
    margin: 10px 0 0;
    color: #50697a;
    font-size: .92rem;
}

.nc-footer__signup-form {
    display: flex;
    min-height: 58px;
    padding: 5px;
    background: #fff;
    border: 1px solid rgba(20, 52, 77, .13);
    border-radius: 8px;
    box-shadow: 0 14px 36px rgba(20, 52, 77, .1);
}

.nc-footer__signup-form input[type="email"] {
    min-width: 0;
    flex: 1;
    padding: 0 18px;
    color: var(--nc-charcoal-blue);
    font: 500 .9rem/1 var(--font-sans);
    background: transparent;
    border: 0;
    outline: 0;
}

.nc-footer__signup-form input[type="email"]::placeholder {
    color: #778894;
}

.nc-footer__signup-form:focus-within {
    border-color: var(--nc-clay);
    box-shadow: 0 14px 36px rgba(20, 52, 77, .12), 0 0 0 3px rgba(212, 103, 76, .16);
}

.nc-footer__signup-form button {
    display: inline-flex;
    gap: 11px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    color: #fff;
    font: 800 .72rem/1 var(--font-sans);
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    background: var(--nc-clay);
    border: 0;
    border-radius: 5px;
    transition: background-color 160ms ease, transform 160ms ease;
}

.nc-footer__signup-form button:hover {
    background: var(--nc-charcoal-blue);
}

.nc-footer__signup-form button:hover span {
    transform: translateX(3px);
}

.nc-footer__signup-form button span {
    font-size: 1rem;
    transition: transform 160ms ease;
}

.nc-footer__signup .nc-home-newsletter__notice {
    grid-column: 2;
    margin: -24px 6px 0;
}

.nc-footer__inner {
    grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 1fr));
    gap: clamp(36px, 5vw, 76px);
    width: min(1400px, calc(100% - 64px));
    padding: clamp(54px, 6vw, 84px) 0 clamp(48px, 5vw, 70px);
}

.nc-footer__brand {
    order: 0;
}

.nc-footer__brand-link {
    color: #fff;
}

.nc-footer__mark {
    width: 64px;
    height: 64px;
}

.nc-footer__brand-name {
    max-width: 230px;
    color: #fff;
    font-size: 1.16rem;
}

.nc-footer__brand-sub {
    color: rgba(255, 255, 255, .58);
}

.nc-footer__description {
    max-width: 300px;
    margin-top: 24px;
    color: rgba(255, 255, 255, .67);
    font-size: .88rem;
}

.nc-footer__brand-cta {
    color: #f0a08c;
}

.nc-footer__brand-cta:hover {
    color: #fff;
}

.nc-footer__brand .nc-footer__social {
    gap: 8px;
    margin-top: 28px;
}

.nc-footer__brand .nc-footer__social a {
    width: 38px;
    height: 38px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    box-shadow: none;
}

.nc-footer__brand .nc-footer__social a:hover {
    color: var(--nc-charcoal-blue);
    background: #f0a08c;
    border-color: #f0a08c;
}

.nc-footer__brand .nc-footer__social svg {
    width: 17px;
    height: 17px;
}

.nc-footer__heading {
    color: #fff;
    font-size: .72rem;
    letter-spacing: .14em;
}

.nc-footer__heading::after {
    width: 28px;
    margin-top: 13px;
    background: #f0a08c;
}

.nc-footer__links {
    margin-top: 22px;
}

.nc-footer__links li + li {
    margin-top: 11px;
}

.nc-footer__links a {
    color: rgba(255, 255, 255, .69);
    font-size: .88rem;
    font-weight: 500;
}

.nc-footer__links a:hover {
    color: #fff;
    text-decoration-color: #f0a08c;
}

.nc-footer__bottom {
    background: #0a2538;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.nc-footer__bottom-inner {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto auto;
    gap: 28px;
    width: min(1400px, calc(100% - 64px));
    min-height: 90px;
    padding: 14px 0;
}

.nc-footer__copyright {
    color: rgba(255, 255, 255, .52);
    font-size: .75rem;
}

.nc-footer__utility {
    gap: 8px 20px;
    align-items: center;
    justify-content: center;
    margin-left: 0;
}

.nc-footer__bottom .nc-footer__utility a,
.nc-footer__bottom .nc-footer__utility span {
    color: rgba(255, 255, 255, .62);
    font-size: .75rem;
}

.nc-footer__partner--bottom {
    display: block;
}

.nc-footer__partner--bottom .nc-footer__nhl {
    width: 126px;
    max-width: 126px;
}

@media (max-width: 1024px) {
    .nc-footer__signup-inner {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .nc-footer__signup .nc-home-newsletter__notice {
        grid-column: 1;
        margin-top: -12px;
    }

    .nc-footer__inner {
        grid-template-columns: minmax(250px, 1.2fr) repeat(2, minmax(160px, 1fr));
    }

    .nc-footer__col:last-child {
        grid-column: 2 / -1;
    }

    .nc-footer__bottom-inner {
        grid-template-columns: 1fr auto;
    }

    .nc-footer__utility {
        grid-row: 2;
        justify-content: flex-start;
    }

    .nc-footer__partner--bottom {
        grid-row: 1 / 3;
        grid-column: 2;
    }
}

@media (max-width: 640px) {
    .nc-footer__signup-inner,
    .nc-footer__inner,
    .nc-footer__bottom-inner {
        width: min(100% - 36px, 1400px);
    }

    .nc-footer__signup-form {
        display: grid;
        gap: 6px;
        padding: 6px;
    }

    .nc-footer__signup-form input[type="email"] {
        min-height: 50px;
    }

    .nc-footer__signup-form button {
        min-height: 48px;
    }

    .nc-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 42px 26px;
    }

    .nc-footer__brand {
        grid-column: 1 / -1;
    }

    .nc-footer__col:last-child {
        grid-column: 1 / -1;
    }

    .nc-footer__bottom-inner {
        display: flex;
        gap: 18px;
        align-items: flex-start;
    }

    .nc-footer__utility {
        gap: 8px 14px;
    }

    .nc-footer__partner--bottom {
        order: 3;
    }
}

/* Newsletter and partner refinements */

.nc-footer__signup {
    isolation: isolate;
    color: #fff;
    background:
        linear-gradient(112deg, rgba(10, 37, 56, .98) 0%, rgba(20, 52, 77, .96) 56%, rgba(33, 76, 96, .94) 100%);
}

.nc-footer__signup::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 50%;
    right: clamp(22px, 7vw, 110px);
    width: clamp(180px, 22vw, 340px);
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(240, 160, 140, .3) 0 17%, rgba(240, 160, 140, .11) 17.5% 32%, transparent 32.5%);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    transform: translateY(-50%);
}

.nc-footer__signup::after {
    height: 3px;
    background: linear-gradient(90deg, var(--nc-clay), #f0a08c 50%, var(--nc-sage));
}

.nc-footer__signup-inner {
    position: relative;
    grid-template-columns: minmax(0, 1.15fr) minmax(420px, .85fr);
    gap: clamp(52px, 8vw, 130px);
    padding: clamp(52px, 6vw, 78px) 0;
}

.nc-footer__signup-copy {
    position: relative;
    padding-left: 25px;
}

.nc-footer__signup-copy::before {
    content: '';
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;
    width: 3px;
    background: linear-gradient(180deg, #f0a08c, rgba(240, 160, 140, .2));
    border-radius: 3px;
}

.nc-footer__eyebrow {
    margin-bottom: 11px;
    color: #f0a08c;
}

.nc-footer__signup h2 {
    max-width: 680px;
    color: #fff;
    font-size: clamp(1.85rem, 3vw, 3.15rem);
    line-height: 1.06;
}

.nc-footer__signup-copy p {
    max-width: 620px;
    margin-top: 15px;
    color: rgba(255, 255, 255, .68);
    font-size: .92rem;
    line-height: 1.65;
}

.nc-footer__signup-action {
    position: relative;
    z-index: 1;
}

.nc-footer__signup-form {
    min-height: 64px;
    padding: 6px;
    background: rgba(255, 255, 255, .98);
    border-color: rgba(255, 255, 255, .35);
    border-radius: 10px;
    box-shadow: 0 20px 45px rgba(3, 19, 30, .25);
}

.nc-footer__signup-form button {
    min-width: 148px;
    border-radius: 6px;
}

.nc-footer__signup-note {
    margin: 12px 6px 0;
    color: rgba(255, 255, 255, .55);
    font-size: .7rem;
    letter-spacing: .015em;
}

.nc-footer__signup .nc-home-newsletter__notice {
    grid-column: 2;
    margin: -26px 6px 0;
    color: #fff;
}

.nc-footer__inner {
    grid-template-columns: minmax(270px, 1.3fr) minmax(165px, .8fr) minmax(230px, 1.05fr) minmax(190px, .8fr);
}

.nc-footer__tourism-partner {
    align-self: start;
    padding-left: clamp(0px, 1vw, 18px);
    border-left: 1px solid rgba(255, 255, 255, .1);
}

.nc-footer__tourism-partner > span {
    display: block;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .45);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.nc-footer__tourism-partner .nc-footer__nhl {
    width: min(100%, 190px);
    max-width: 190px;
}

.nc-footer__bottom-inner {
    display: flex;
    min-height: 76px;
}

.nc-footer__copyright {
    flex: 1;
}

.nc-footer__partner--bottom {
    display: none;
}

@media (max-width: 1024px) {
    .nc-footer__signup-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nc-footer__signup-action {
        max-width: 680px;
    }

    .nc-footer__signup .nc-home-newsletter__notice {
        grid-column: 1;
        margin-top: -16px;
    }

    .nc-footer__inner {
        grid-template-columns: 1.25fr 1fr 1.15fr;
    }

    .nc-footer__col:last-of-type {
        grid-column: auto;
    }

    .nc-footer__tourism-partner {
        grid-column: 1 / -1;
        display: flex;
        gap: 28px;
        align-items: center;
        padding: 28px 0 0;
        border-top: 1px solid rgba(255, 255, 255, .1);
        border-left: 0;
    }

    .nc-footer__tourism-partner > span {
        margin: 0;
    }

    .nc-footer__bottom-inner {
        display: flex;
    }

    .nc-footer__utility {
        grid-row: auto;
    }
}

@media (max-width: 640px) {
    .nc-footer__signup::before {
        top: 48px;
        right: -70px;
        width: 220px;
        transform: none;
    }

    .nc-footer__signup-inner {
        padding: 46px 0 50px;
    }

    .nc-footer__signup-copy {
        padding-left: 18px;
    }

    .nc-footer__signup h2 {
        font-size: clamp(1.75rem, 9vw, 2.25rem);
    }

    .nc-footer__signup-form button {
        min-width: 0;
    }

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

    .nc-footer__col:last-of-type {
        grid-column: auto;
    }

    .nc-footer__tourism-partner {
        grid-column: 1 / -1;
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .nc-footer__bottom-inner {
        gap: 13px;
    }
}

/* Light newsletter treatment and original partner artwork */

.nc-footer__signup {
    color: var(--nc-charcoal-blue);
    background: #fff;
}

.nc-footer__signup::before {
    top: -170px;
    right: -100px;
    width: 430px;
    background:
        radial-gradient(circle, rgba(212, 103, 76, .08) 0 18%, transparent 18.5% 31%, rgba(20, 52, 77, .045) 31.5% 32%, transparent 32.5%);
    border-color: rgba(20, 52, 77, .05);
    transform: none;
}

.nc-footer__signup-inner {
    display: flex;
    width: min(920px, calc(100% - 64px));
    flex-direction: column;
    gap: 29px;
    padding: clamp(58px, 6vw, 82px) 0 clamp(62px, 6.5vw, 88px);
    text-align: center;
}

.nc-footer__signup-copy {
    padding-left: 0;
}

.nc-footer__signup-copy::before {
    display: none;
}

.nc-footer__eyebrow {
    color: var(--nc-clay);
}

.nc-footer__signup h2 {
    max-width: 820px;
    margin-inline: auto;
    color: var(--nc-charcoal-blue);
    font-size: clamp(2rem, 3vw, 3rem);
}

.nc-footer__signup-copy p {
    max-width: 650px;
    margin-inline: auto;
    color: #5c7180;
}

.nc-footer__signup-action {
    width: min(100%, 760px);
    margin-inline: auto;
}

.nc-footer__signup-form {
    min-height: 68px;
    background: #f8f5ef;
    border: 1px solid rgba(20, 52, 77, .16);
    box-shadow: 0 16px 40px rgba(20, 52, 77, .1);
}

.nc-footer__signup-form:focus-within {
    border-color: var(--nc-clay);
    box-shadow: 0 16px 40px rgba(20, 52, 77, .12), 0 0 0 3px rgba(212, 103, 76, .14);
}

.nc-footer__signup-note {
    color: #7a8b96;
}

.nc-footer__signup .nc-home-newsletter__notice {
    margin: -15px auto 0;
    color: var(--nc-charcoal-blue);
}

.nc-footer__tourism-partner {
    display: flex;
    min-height: 116px;
    align-items: center;
    justify-content: center;
    padding: 18px 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.nc-footer__tourism-partner .nc-footer__nhl {
    width: min(100%, 205px);
    max-width: 205px;
    filter: none;
    opacity: 1;
}

@media (max-width: 1024px) {
    .nc-footer__signup-inner {
        width: min(820px, calc(100% - 64px));
    }

    .nc-footer__tourism-partner {
        grid-column: 1 / -1;
        width: fit-content;
        min-height: 0;
        padding: 16px 20px;
        border-top: 0;
    }
}

@media (max-width: 640px) {
    .nc-footer__signup::before {
        top: -105px;
        right: -115px;
    }

    .nc-footer__signup-inner {
        width: min(100% - 36px, 920px);
        padding: 50px 0 56px;
    }

    .nc-footer__signup h2 {
        font-size: clamp(1.8rem, 9vw, 2.25rem);
    }

    .nc-footer__tourism-partner {
        align-items: center;
        flex-direction: row;
        padding: 15px 18px;
    }
}

/* Keep the newsletter invitation visually connected to the page and footer. */
.nc-footer__signup {
    isolation: auto;
    background:
        linear-gradient(rgba(9, 39, 58, .47), rgba(9, 39, 58, .56)),
        url('/wp-content/uploads/2026/07/Evening-Beach-Sunsetsmooth-sand-Miminegash-Shelley-Gallant-7J9A8523-scaled.jpg') center 64% / cover no-repeat;
    border-top: 1px solid rgba(20, 52, 77, .08);
}

.nc-footer__signup::before {
    display: none;
}

.nc-footer__signup::after {
    display: none;
}

.nc-footer__signup-inner {
    position: relative;
    z-index: 1;
    width: min(820px, calc(100% - 64px));
    gap: 20px;
    padding-top: 38px;
    padding-bottom: 40px;
}

.nc-footer__acknowledgement {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: min(1400px, calc(100% - 64px));
    margin: 0 auto;
    padding: 25px 0 27px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.nc-footer__acknowledgement p {
    max-width: 1180px;
    margin: 0;
    color: rgba(255, 255, 255, .56);
    font: 400 clamp(.76rem, .9vw, .84rem)/1.7 var(--font-sans);
    text-align: left;
    text-shadow: none;
    text-wrap: pretty;
}

.nc-footer__signup h2,
.nc-footer__signup-copy p,
.nc-footer__signup-note {
    text-shadow: none;
}

.nc-footer__signup h2 {
    max-width: 760px;
    color: #fff;
    font-size: clamp(1.8rem, 2.7vw, 2.65rem);
    text-shadow: 0 2px 18px rgba(3, 22, 34, .28);
}

.nc-footer__signup-copy p {
    color: rgba(255, 255, 255, .84);
    margin-top: 8px;
    text-shadow: 0 1px 12px rgba(3, 22, 34, .25);
}

.nc-footer__signup-form {
    min-height: 60px;
    background: rgba(255, 255, 255, .97);
    border-color: rgba(255, 255, 255, .56);
    box-shadow: 0 18px 42px rgba(3, 22, 34, .28);
}

@media (max-width: 640px) {
    .nc-footer__acknowledgement {
        width: min(100% - 36px, 1400px);
        padding: 22px 0 24px;
    }

    .nc-footer__acknowledgement p {
        font-size: .74rem;
        line-height: 1.65;
    }

    .nc-footer__signup-inner {
        width: min(100% - 36px, 820px);
        gap: 22px;
        padding-top: 34px;
        padding-bottom: 36px;
    }
}

/* ---------------------------------------------------------------------------
   Newsletter signup — branded on-site Mailchimp form (inc/newsletter.php)
   --------------------------------------------------------------------------- */
.nc-mc-form {
    width: min(100%, 600px);
    margin-inline: auto;
    text-align: left;
}

.nc-mc-form__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 15px 16px;
}

.nc-mc-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    margin: 0;
}

.nc-mc-field--wide {
    grid-column: 1 / -1;
}

.nc-mc-field label {
    color: var(--nc-charcoal-blue);
    font: 700 .72rem/1.2 var(--font-sans);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.nc-mc-req {
    color: var(--nc-clay);
}

.nc-mc-field input,
.nc-mc-field select {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    padding: 13px 15px;
    color: var(--nc-charcoal-blue);
    font: 500 .95rem/1.2 var(--font-sans);
    background: #fff;
    border: 1px solid rgba(20, 52, 77, .18);
    border-radius: 8px;
    outline: 0;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.nc-mc-field select {
    padding-right: 40px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2314344d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.nc-mc-field input:focus,
.nc-mc-field select:focus {
    border-color: var(--nc-clay);
    box-shadow: 0 0 0 3px rgba(212, 103, 76, .14);
}

.nc-mc-form__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.nc-mc-form__submit {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 14px 30px;
    color: #fff;
    font: 800 .74rem/1 var(--font-sans);
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    background: var(--nc-clay);
    border: 0;
    border-radius: 7px;
    transition: background-color 160ms ease, transform 160ms ease;
}

.nc-mc-form__submit:hover {
    background: var(--nc-charcoal-blue);
}

.nc-mc-form__submit span {
    font-size: 1rem;
    transition: transform 160ms ease;
}

.nc-mc-form__submit:hover span {
    transform: translateX(3px);
}

.nc-mc-form__submit[disabled],
.nc-mc-form__submit.is-loading {
    opacity: .6;
    cursor: default;
}

.nc-mc-form__msg {
    min-height: 1em;
    margin: 14px 0 0;
    font: 600 .9rem/1.45 var(--font-sans);
}

.nc-mc-form__msg.is-success {
    color: #1c7a4a;
}

.nc-mc-form__msg.is-error {
    color: #b23c2e;
}

@media (max-width: 540px) {
    .nc-mc-form__grid {
        grid-template-columns: 1fr;
    }

    .nc-mc-form__submit {
        width: 100%;
    }
}
