@import url('https://fonts.googleapis.com/css2?family=Commissioner:wght@300;400;500;600;700&family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700;9..144,800;9..144,900&display=swap');

:root {
    --pri: #E8F4FC;
    --sec: #0E7AC4;
    --acc: #0A5A8F;
    --dark: #0F2847;
    --textDark: #0D1E2E;
    --textMid: #2C4A6A;
    --textLight: #5A7A9A;

    --accent-gradient: linear-gradient(135deg, var(--sec) 0%, var(--acc) 50%, #0C6BA3 100%);
    --hero-overlay: linear-gradient(160deg, rgba(15,40,71,0.75) 0%, rgba(15,40,71,0.25) 50%, rgba(15,40,71,0.5) 100%);

    --radius-btn: 10px;
    --radius-card: 20px;
    --shadow-card: 0 10px 40px rgba(15,40,71,0.08);
    --shadow-card-hover: 0 20px 50px rgba(15,40,71,0.12);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Commissioner', sans-serif;
    color: var(--textDark);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Fraunces', serif;
    color: var(--dark);
    line-height: 1.15;
    font-weight: 700;
}

h1 { font-size: clamp(3rem, 7vw, 6rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 700; }
h4 { font-size: 1.2rem; font-weight: 600; }

a {
    text-decoration: none;
    color: var(--acc);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--sec);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.spn-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

.spn-section {
    padding: clamp(48px, 6vw, 80px) 0;
}

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

.spn-mb-sm {
    margin-bottom: 20px;
}

.spn-mb-md {
    margin-bottom: 40px;
}

.spn-mb-lg {
    margin-bottom: 60px;
}

.spn-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-align: center;
    background-color: var(--dark);
}

.spn-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
    z-index: 1;
}

.spn-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: none;
    z-index: 0;
}

.spn-hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 clamp(16px, 5vw, 40px);
    margin: 0 auto;
}

.spn-hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.spn-hero__tagline {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 500;
    color: #fff;
    margin: 20px 0 15px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.spn-hero__subheadline {
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    color: rgba(255,255,255,0.88);
    margin: 0 0 28px;
    line-height: 1.5;
    max-width: 520px;
    margin-inline: auto;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.spn-hero__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.spn-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.spn-hero__scroll img {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.spn-dest-card {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spn-dest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.12);
}

.spn-dest-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.spn-dest-card:hover .spn-dest-card__img {
    transform: scale(1.08);
}

.spn-dest-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
}

.spn-dest-card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(16px, 4vw, 28px) clamp(16px, 4vw, 24px);
    color: #fff;
}

.spn-dest-card__country {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.8;
    margin-bottom: 6px;
}

.spn-dest-card__name {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    color: #fff;
}

.spn-section--pri-bg .spn-dest-card__country,
.spn-section--pri-bg .spn-dest-card__tag {
    color: #fff;
}

.spn-section--pri-bg .spn-dest-card__country {
    opacity: 0.9;
}

.spn-dest-card__tag {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 14px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    font-size: 0.8rem;
    backdrop-filter: blur(4px);
    background: rgba(255,255,255,0.1);
}

.spn-feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 24px;
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.spn-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.spn-feature__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    color: #fff;
}

.spn-feature__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.spn-feature__text {
    color: var(--textMid);
    line-height: 1.7;
    font-size: 0.95rem;
}

.spn-testimonial {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 28px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    position: relative;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spn-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.spn-testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 24px;
    font-size: 8rem;
    color: var(--sec);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.spn-testimonial__text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--textMid);
    margin-bottom: 24px;
    font-style: italic;
}

.spn-testimonial__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.spn-testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--sec);
    flex-shrink: 0;
}

.spn-testimonial__name {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}

.spn-testimonial__dest {
    font-size: 0.82rem;
    color: var(--acc);
    font-weight: 500;
}

.spn-testimonial__stars {
    font-size: 1rem;
    color: gold;
    margin-bottom: 10px;
}

.spn-newsletter {
    background: var(--accent-gradient);
    padding: 56px 32px;
    text-align: center;
    border-radius: var(--radius-card);
}

.spn-newsletter h2 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.spn-newsletter p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    max-width: 460px;
    margin-inline: auto;
    line-height: 1.6;
    font-size: 0.95rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.spn-newsletter__form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.spn-newsletter__input {
    flex: 1;
    min-width: 200px;
    padding: 16px 20px;
    border: none;
    border-radius: var(--radius-btn);
    font-size: 1rem;
    outline: none;
    font-family: 'Commissioner', sans-serif;
    color: var(--dark);
}

.spn-newsletter .spn-btn {
    min-width: 140px;
    padding: 16px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2), inset 0 0 0 1px rgba(255,255,255,0.3);
}

.spn-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    padding: 0;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

body.spn-inner-page .spn-header {
    background: #fff;
    box-shadow: 0 4px 20px rgba(15,40,71,0.12);
}
body.spn-inner-page .spn-header .spn-logo,
body.spn-inner-page .spn-header .spn-nav a,
body.spn-inner-page .spn-header #menu-toggle {
    color: var(--dark);
}
body.spn-inner-page .spn-header .spn-nav a:hover,
body.spn-inner-page .spn-header .spn-nav a.active {
    color: var(--acc);
    text-shadow: none;
}
body.spn-inner-page .spn-header .spn-logo span {
    text-shadow: none;
}

body.spn-menu-open .spn-header {
    background: transparent;
    box-shadow: none;
}

.spn-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px clamp(20px,5vw,60px);
    max-width: 1400px;
    margin: 0 auto;
}

.spn-header.scrolled {
    background: #fff;
    box-shadow: 0 4px 20px rgba(15,40,71,0.12);

}

.spn-header.scrolled .spn-logo {
    color: var(--dark);
}

.spn-header.scrolled .spn-nav a {
    color: var(--dark);
}

.spn-header:not(.scrolled) .spn-logo {
    color: #fff;
}

.spn-header:not(.scrolled) .spn-nav a {

}

.spn-logo {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.spn-logo span {
    font-size: 1.8rem;
    line-height: 1;
}

.spn-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.spn-nav a {
    font-weight: 600;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    position: relative;
    transition: color 0.3s;
}

.spn-nav a:hover,
.spn-nav a.active {
    color: var(--acc);
    text-shadow: 0 0 6px rgba(41, 128, 185, 0.4);
}

.spn-header.scrolled .spn-nav a:hover,
.spn-header.scrolled .spn-nav a.active {
    color: var(--acc);
    text-shadow: none;
}

.spn-nav__item--dropdown {
    position: relative;
}

.spn-nav__item--dropdown::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 16px;
    z-index: 99;
}

.spn-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-top: -4px;
    transform: translateX(-50%) translateY(0);
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    padding: 12px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 300;
}

.spn-nav__item--dropdown:hover .spn-nav__dropdown,
.spn-nav__item--dropdown:focus-within .spn-nav__dropdown {
    opacity: 1;
    visibility: visible;
}

.spn-header .spn-nav__dropdown li a {
    color: #0F2847;
    padding: 12px 20px;
    display: block;
    white-space: nowrap;
    font-weight: 600;
    font-size: 1rem;
}

.spn-header .spn-nav__dropdown li a:hover {
    background-color: var(--pri);
    color: var(--acc);
    border-radius: var(--radius-btn);
}

.spn-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--accent-gradient);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    text-decoration: none;
    white-space: nowrap;
    min-height: 48px;
    min-width: 120px;
    justify-content: center;
}

.spn-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.spn-btn--ghost {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    box-shadow: none;
}

.spn-btn--ghost:hover {
    background: rgba(255,255,255,0.15);
    box-shadow: none;
    transform: translateY(-2px);
}

.spn-btn--dark {
    background: var(--dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.spn-btn--dark:hover {
    background: var(--textMid);
}

.spn-section-title {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 36px;
}

.spn-section-title__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--acc);
    margin-bottom: 12px;
}

.spn-section-title h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
}

.spn-section-title p {
    color: var(--textMid);
    margin-top: 16px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.spn-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1px;
    background: rgba(0,0,0,0.08);
    border-radius: var(--radius-card);
    overflow: hidden;
    margin-top: clamp(40px, 6vw, 80px);
}

.spn-stat {
    background: #fff;
    padding: 40px 24px;
    text-align: center;
}

.spn-stat__number {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--acc);
    line-height: 1;
}

.spn-stat__label {
    font-size: 0.85rem;
    color: var(--textMid);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.spn-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.spn-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spn-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    animation: fadeIn 0.3s ease;
}

.spn-popup__box {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
    z-index: 1;
    box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}

.spn-popup__icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.spn-popup__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.spn-popup__msg {
    font-size: 1rem;
    color: var(--textMid);
    line-height: 1.6;
    margin-bottom: 24px;
}

@keyframes popIn {
    from{opacity:0;transform:scale(0.8) translateY(30px)}
    to{opacity:1;transform:scale(1) translateY(0)}
}

@keyframes fadeIn {
    from{opacity:0}
    to{opacity:1}
}

@keyframes bounce {
    0%,100%{transform:translateX(-50%) translateY(0)}
    50%{transform:translateX(-50%) translateY(-10px)}
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.spn-grid-2 > .reveal:nth-child(1){transition-delay:0.1s}
.spn-grid-2 > .reveal:nth-child(2){transition-delay:0.2s}
.spn-grid-3 > .reveal:nth-child(1){transition-delay:0.1s}
.spn-grid-3 > .reveal:nth-child(2){transition-delay:0.2s}
.spn-grid-3 > .reveal:nth-child(3){transition-delay:0.3s}
.spn-grid-4 > .reveal:nth-child(1){transition-delay:0.1s}
.spn-grid-4 > .reveal:nth-child(2){transition-delay:0.2s}
.spn-grid-4 > .reveal:nth-child(3){transition-delay:0.3s}
.spn-grid-4 > .reveal:nth-child(4){transition-delay:0.4s}
.spn-grid-dest > .reveal:nth-child(1){transition-delay:0.1s}
.spn-grid-dest > .reveal:nth-child(2){transition-delay:0.2s}
.spn-grid-dest > .reveal:nth-child(3){transition-delay:0.3s}
.spn-grid-dest > .reveal:nth-child(4){transition-delay:0.4s}
.spn-grid-dest > .reveal:nth-child(5){transition-delay:0.5s}
.reveal-group > *:nth-child(1){transition-delay:0.1s}
.reveal-group > *:nth-child(2){transition-delay:0.2s}
.reveal-group > *:nth-child(3){transition-delay:0.3s}
.reveal-group > *:nth-child(4){transition-delay:0.4s}
.reveal-group > *:nth-child(5){transition-delay:0.5s}
.reveal-group > *:nth-child(6){transition-delay:0.6s}

#mobile-nav {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 1100;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 80px 24px 24px;
    padding-bottom: max(24px, env(safe-area-inset-bottom));
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
    overflow-y: auto;
}

#mobile-nav.open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

#mobile-nav > a {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
    padding: 12px 16px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#mobile-nav > a:hover,
#mobile-nav > a.active {
    color: var(--sec);
}

.spn-mobile-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.spn-mobile-dropdown > a {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    padding: 12px 16px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.spn-mobile-dropdown > a:hover {
    color: var(--sec);
}

.spn-mobile-dropdown__menu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.spn-mobile-dropdown__menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.2s;
    min-height: 48px;
}

.spn-mobile-dropdown__menu li a:hover {
    color: var(--sec);
}

#menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    color: #fff;
}

body:not(.spn-menu-open) .spn-header.scrolled #menu-toggle {
    color: var(--dark);
}

body.spn-menu-open .spn-header #menu-toggle {
    color: #fff;
}

#menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: all 0.3s;
}

#menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

#menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

#menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media(max-width:767px) {
    #menu-toggle {
        display: flex;
        position: relative;
        z-index: 1002;
        flex-shrink: 0;
    }
    .spn-header__inner .spn-nav {
        display: none;
    }
    .spn-header__inner {
        padding: 16px clamp(16px, 4vw, 24px);
        gap: 12px;
        max-width: 100%;
    }
    .spn-logo {
        font-size: clamp(1.2rem, 4.5vw, 1.5rem);
        min-width: 0;
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .spn-hero h1 {
        font-size: clamp(1.75rem, 7vw, 2.85rem);
        word-break: break-word;
        overflow-wrap: anywhere;
    }
    .spn-hero__tagline {
        font-size: clamp(1.15rem, 4vw, 1.65rem);
    }
    .spn-hero__subheadline {
        font-size: clamp(0.95rem, 3.5vw, 1.15rem);
        padding: 0 4px;
    }
    .spn-hero__actions {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
    .spn-hero__actions .spn-btn {
        width: 100%;
        max-width: 280px;
    }
    .spn-section {
        padding: clamp(48px, 10vw, 80px) 0;
    }
    .spn-dest-card:has(.spn-dest-card__img) {
        aspect-ratio: 3/4;
        min-height: 260px;
    }
    .spn-dest-card:has(.spn-dest-card__img) .spn-dest-card__img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .spn-newsletter__input {
        min-width: 0;
        width: 100%;
    }
    .spn-grid-4 {
        grid-template-columns: 1fr;
    }
    #mobile-nav {
        width: 100%;
        max-width: 100%;
        left: 0;
        right: 0;
        box-sizing: border-box;
    }
    .spn-container {
        max-width: 100%;
        box-sizing: border-box;
    }
    .spn-cta-section {
        margin-left: clamp(12px, 3vw, 20px);
        margin-right: clamp(12px, 3vw, 20px);
        box-sizing: border-box;
    }
    .spn-hero .spn-hero-content h1,
    .spn-hero .spn-hero-content h2 {
        word-break: break-word;
        overflow-wrap: anywhere;
    }
    .spn-hero .spn-hero-title {
        font-size: clamp(1.5rem, 6vw, 2.35rem);
        word-break: break-word;
        overflow-wrap: anywhere;
    }
    .spn-inner-page .spn-hero .spn-hero__content h1 {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
        word-break: break-word;
        overflow-wrap: anywhere;
    }
    .spn-legal-content {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .spn-testimonial-quote {
        overflow-wrap: anywhere;
    }
}

.spn-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 20px clamp(16px, 4vw, 40px);
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    z-index: 8888;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}

.spn-cookie.show {
    transform: translateY(0);
}

.spn-cookie__text {
    flex: 1;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    font-size: 0.9rem;
    min-width: 0;
}

.spn-cookie__actions {
    display: flex;
    gap: 10px;
}

.spn-cookie .spn-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-width: auto;
    min-height: auto;
    box-shadow: none;
    border: 1px solid rgba(255,255,255,0.3);
}

.spn-cookie .spn-btn--ghost {
    background: rgba(255,255,255,0.1);
}

.spn-cookie .spn-btn--ghost:hover {
    background: rgba(255,255,255,0.2);
}

.spn-footer {
    background: var(--dark);
    color: #fff;
    padding: 48px clamp(20px,5vw,48px) 24px;
    position: relative;
    border-top: 3px solid var(--acc);
}

.spn-footer__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 32px;
}

.spn-footer__brand {
    flex-shrink: 0;
}

.spn-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.spn-footer__logo:hover {
    opacity: 0.9;
}

.spn-footer__tagline {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    margin-top: 8px;
    margin-bottom: 0;
}

.spn-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 40px;
}

.spn-footer__group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spn-footer__label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 2px;
}

.spn-footer__group a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.spn-footer__group a:hover {
    color: #fff;
}

.spn-footer__contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 28px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    max-width: 1200px;
    margin: 0 auto 24px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
}

.spn-footer__copy {
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .spn-footer__wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }
    .spn-footer__nav {
        width: 100%;
    }
    .spn-footer__contact {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
}

.spn-form-group {
    margin-bottom: 14px;
}

.spn-form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spn-form-group input,
.spn-form-group textarea,
.spn-form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #eee;
    border-radius: var(--radius-btn);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--dark);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.spn-form-group input:focus,
.spn-form-group textarea:focus,
.spn-form-group select:focus {
    outline: none;
    border-color: var(--acc);
    box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
}

.spn-form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.spn-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(16px, 3vw, 32px);
}

.spn-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(16px, 3vw, 32px);
}

.spn-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(12px, 2vw, 24px);
}

.spn-grid-dest {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(16px, 3vw, 32px);
}

.spn-grid-attractions {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(16px, 3vw, 24px);
}

.spn-grid-info-card {
    background-color: #fff;
    padding: 24px;
    border-radius: var(--radius-card);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 16px;
}

.spn-grid-info-card__icon {
    font-size: 2rem;
    color: var(--acc);
    flex-shrink: 0;
}

.spn-grid-info-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.spn-grid-info-card__text {
    font-size: 0.9rem;
    color: var(--textMid);
}

.spn-section-wave {
    position: relative;
    height: 80px;
    width: 100%;
    overflow: hidden;
    margin-bottom: -1px;
    z-index: 10;
}

.spn-section-wave--pri-to-white {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23FFFFFF' fill-opacity='1' d='M0,160L48,176C96,192,192,224,288,229.3C384,235,480,213,576,192C672,171,768,149,864,154.7C960,160,1056,192,1152,197.3C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom;
}

.spn-section-wave--white-to-pri {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23F0F8FF' fill-opacity='1' d='M0,160L48,176C96,192,192,224,288,229.3C384,235,480,213,576,192C672,171,768,149,864,154.7C960,160,1056,192,1152,197.3C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom;
}

.spn-section--white-bg { background-color: #fff; }
.spn-section--pri-bg { background-color: var(--pri); }

@media(min-width:640px) {
    .spn-grid-4 {
        grid-template-columns: repeat(2,1fr);
    }
}
@media(min-width:768px) {
    .spn-grid-2{
        grid-template-columns:repeat(2,1fr);
    }
    .spn-grid-3{
        grid-template-columns:repeat(2,1fr);
    }
    .spn-grid-dest{
        grid-template-columns:repeat(2,1fr);
    }
    .spn-grid-attractions {
        grid-template-columns: repeat(2,1fr);
    }
}
.spn-contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.spn-page-contact .spn-hero {
    min-height: 36vh;
}

.spn-page-contact .spn-hero__content {
    padding: 72px 20px 48px;
}

.spn-page-contact .spn-section {
    padding-top: 40px;
    padding-bottom: 56px;
}

.spn-contact-form h3,
.spn-contact-details h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.spn-contact-form p,
.spn-contact-details > p {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--textMid);
}

.spn-contact-details .spn-feature {
    padding: 14px 18px;
    margin-bottom: 12px;
}

.spn-contact-details .spn-feature:last-child {
    margin-bottom: 0;
}

.spn-contact-details .spn-feature__icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
}

.spn-contact-details .spn-feature__title {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.spn-contact-details .spn-feature__text {
    font-size: 0.88rem;
    line-height: 1.5;
}

@media(min-width:1024px) {
    .spn-grid-3{
        grid-template-columns:repeat(3,1fr);
    }
    .spn-grid-4{
        grid-template-columns:repeat(4,1fr);
    }
    .spn-grid-dest{
        grid-template-columns:repeat(4,1fr);
    }
    .spn-header__inner {
        padding: 20px 60px;
    }
    .spn-contact__grid {
        grid-template-columns: 1.4fr 1fr;
        gap: 40px;
    }
}

@media(max-width:480px) {
    .spn-newsletter__form {
        flex-direction: column;
    }
    .spn-newsletter .spn-btn {
        width: 100%;
    }
}

.spn-header .spn-nav.spn-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px clamp(20px, 5vw, 60px);
}

.spn-header .spn-nav.spn-container .spn-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Fraunces', serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.spn-header.scrolled .spn-nav.spn-container .spn-logo {
    color: var(--dark);
}

.spn-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.spn-nav-links .spn-nav-link {
    font-weight: 600;
    font-size: 1rem;
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    transition: color 0.2s;
}

.spn-header.scrolled .spn-nav-links .spn-nav-link {
    color: var(--textMid);
}

.spn-nav-links .spn-nav-link:hover,
.spn-nav-links .spn-nav-link.spn-active {
    color: var(--sec);
}

.spn-header.scrolled .spn-nav-links .spn-nav-link:hover,
.spn-header.scrolled .spn-nav-links .spn-nav-link.spn-active {
    color: var(--acc);
}

.spn-dropdown {
    position: relative;
}

.spn-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    padding: 12px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
    z-index: 100;
}

.spn-dropdown:hover .spn-dropdown-menu,
.spn-dropdown:focus-within .spn-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.spn-header .spn-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #0F2847;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.spn-header .spn-dropdown-menu a:hover {
    background: var(--pri);
    color: var(--acc);
}

.spn-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 201;
    color: #fff;
}

.spn-header.scrolled .spn-hamburger {
    color: var(--dark);
}

.spn-hamburger-line {
    display: block;
    width: 26px;
    height: 2px;
    background: currentColor;
    transition: transform 0.3s, opacity 0.3s;
}

.spn-hamburger.active .spn-hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.spn-hamburger.active .spn-hamburger-line:nth-child(2) {
    opacity: 0;
}

.spn-hamburger.active .spn-hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
    .spn-header .spn-nav.spn-container {
        padding: 16px clamp(16px, 4vw, 24px);
    }

    .spn-header .spn-nav.spn-container .spn-logo {
        font-size: clamp(1.2rem, 4.5vw, 1.45rem);
    }

    .spn-header .spn-nav.spn-container .spn-nav-links {
        position: fixed;
        inset: 0;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 80px 24px max(24px, env(safe-area-inset-bottom));
        z-index: 199;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
        overflow-y: auto;
    }

    .spn-header .spn-nav.spn-container .spn-nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .spn-header .spn-nav.spn-container .spn-nav-links .spn-nav-link {
        font-size: clamp(1.25rem, 4.5vw, 1.5rem);
        color: #fff;
        padding: 14px 20px;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .spn-dropdown-menu {
        position: static;
        transform: none;
        background: rgba(255,255,255,0.08);
        margin-top: 8px;
        margin-left: 20px;
        display: none;
        padding: 8px 0;
    }

    .spn-dropdown.open .spn-dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .spn-dropdown-menu a {
        color: #fff;
        padding: 12px 20px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .spn-hamburger {
        display: flex;
    }
}

.spn-wave-divider {
    display: block;
    width: 100%;
    height: 0;
    line-height: 0;
}

.spn-wave-divider svg {
    width: 100%;
    height: 80px;
    display: block;
}

.spn-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px clamp(20px, 5vw, 60px) 32px;
}

.spn-footer-col .spn-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    margin-bottom: 8px;
}

.spn-footer-tagline {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.spn-footer-address {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    word-break: break-word;
}

.spn-footer-address p {
    margin-bottom: 8px;
}

.spn-footer-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 20px;
}

.spn-footer-link {
    display: block;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.spn-footer-link:hover {
    color: #fff;
}

.spn-footer-bottom {
    padding: 24px clamp(20px, 5vw, 60px);
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
    max-width: 1280px;
    margin: 0 auto;
}

.spn-footer-bottom p {
    margin: 0;
}

@media (max-width: 767px) {
    .spn-footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.spn-section.spn-container .spn-section-title:first-child {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.spn-legal-content {
    margin-top: 24px;
}

.spn-legal-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 36px;
    margin-bottom: 12px;
}

.spn-legal-content h2:first-child {
    margin-top: 0;
}

.spn-legal-content p {
    color: var(--textMid);
    line-height: 1.8;
    margin-bottom: 16px;
    word-wrap: break-word;
}

.spn-hero .spn-hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
    z-index: 1;
}

.spn-hero .spn-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: clamp(80px, 18vw, 100px) clamp(16px, 4vw, 24px) clamp(60px, 12vw, 80px);
}

.spn-hero .spn-hero-flag {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
    line-height: 1;
}

.spn-hero .spn-hero-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.spn-hero .spn-hero-tagline {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.spn-hero[style*="background-image"] {
    background-size: cover;
    background-position: center;
    min-height: 55vh;
}

.spn-section-text {
    color: var(--textMid);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-top: 12px;
}

.spn-bg-alt {
    background-color: var(--pri);
}

.spn-card {
    background: #fff;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.spn-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.spn-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
}

.spn-dest-card .spn-card-img {
    aspect-ratio: 16/9;
    max-height: 200px;
    object-fit: cover;
}

.spn-dest-card .spn-card-body {
    padding: 14px 18px;
}

.spn-dest-card .spn-badge {
    font-size: 0.7rem;
    margin-bottom: 6px;
}

.spn-dest-card .spn-card-title {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.spn-dest-card .spn-card-text {
    font-size: 0.88rem;
    line-height: 1.5;
}

.spn-grid-2.spn-attractions-cards {
    gap: clamp(14px, 2.5vw, 22px);
}

.spn-card-body {
    padding: clamp(16px, 4vw, 24px);
}

.spn-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--acc);
    margin-bottom: 10px;
}

.spn-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.25;
}

.spn-card-text {
    font-size: 0.95rem;
    color: var(--textMid);
    line-height: 1.65;
}

.spn-card.spn-testimonial .spn-testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.spn-card .spn-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--sec);
    flex-shrink: 0;
}

.spn-testimonial-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
}

.spn-testimonial-dest {
    font-size: 0.85rem;
    color: var(--acc);
    display: block;
    margin-top: 2px;
}

.spn-testimonial-quote {
    font-style: italic;
    color: var(--textMid);
    line-height: 1.75;
    margin: 0;
}

.spn-stars {
    color: #E8B923;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.spn-rating-summary p {
    margin: 0;
    font-weight: 600;
}

.spn-info-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 16px;
    padding: clamp(24px, 4vw, 32px) 0;
}

.spn-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}

.spn-info-item .spn-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.spn-info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spn-info-text strong {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--textLight);
}

.spn-info-text span {
    font-weight: 600;
    color: var(--dark);
}

.spn-cta-section {
    background: var(--accent-gradient);
    padding: clamp(48px, 10vw, 80px) clamp(20px, 5vw, 24px);
    text-align: center;
    border-radius: var(--radius-card);
    margin: 0 clamp(16px, 4vw, 60px) clamp(48px, 10vw, 80px);
}

.spn-cta-title {
    color: #fff;
    margin-bottom: 24px;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.spn-cta-section .spn-btn {
    background: #fff;
    color: var(--dark);
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.spn-cta-section .spn-btn:hover {
    background: var(--pri);
    color: var(--dark);
}

.spn-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 20px clamp(16px, 4vw, 40px);
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    z-index: 8888;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

.spn-cookie-banner.show {
    transform: translateY(0);
}

.spn-cookie-banner p {
    flex: 1;
    min-width: 0;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.spn-cookie-btns {
    display: flex;
    gap: 12px;
}

.spn-cookie-banner .spn-btn:last-child {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
}

.spn-cookie-banner .spn-btn:last-child:hover {
    background: rgba(255,255,255,0.1);
}

.spn-section.spn-container[style*="padding-top: 140px"] {
    padding-bottom: 80px;
}

@media (max-width: 767px) {
    section.spn-section.spn-container[style*="padding-top"] {
        padding-top: 100px !important;
        padding-bottom: 48px !important;
    }
}
