/* ============================================================
   sorrentotocapri.com — Brand Override CSS
   Palette allineata a thecharterpro: navy #093750 + warm beige
   ============================================================ */

:root {
    --stc-terracotta: #093750;        /* primary accent → navy charterpro */
    --stc-terracotta-dark: #062738;   /* hover darker */
    --stc-terracotta-light: #1a5878;  /* lighter navy variant */
    --stc-warm-soft: #f4f2ed;         /* beige caldo (sezioni alternate) */
    --stc-bone: #e5e1da;              /* sabbia (sezioni alternate) */
    --stc-sand: #e5e1da;
    --stc-sea: #3A6C82;
    --stc-ink: #093750;               /* navy come testo dominante */
    --stc-ink-light: #1a5878;
    --stc-body-color: #3a475b;
}

/* --- Global overrides --- */

body {
    font-family: 'Inter', 'Montserrat', sans-serif;
    color: var(--stc-body-color);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: .3s all; }
a:hover { opacity: .8; text-decoration: none; color: inherit; }

/* --- Terracotta accent colors --- */

.stc-accent { color: var(--stc-terracotta); }
.stc-accent-bg { background-color: var(--stc-terracotta); }
.stc-accent-bg:hover { background-color: var(--stc-terracotta-dark); }

.stc-warm-bg { background-color: var(--stc-warm-soft); }
.stc-bone-bg { background-color: var(--stc-bone); }
.stc-ink-bg { background-color: var(--stc-ink); }
.stc-sea-bg { background-color: var(--stc-sea); }

/* --- Buttons --- */

.btn-stc-primary {
    background-color: var(--stc-terracotta);
    border: none;
    color: #fff;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color .3s;
}
.btn-stc-primary:hover {
    background-color: var(--stc-terracotta-dark);
    color: #fff;
    opacity: 1;
}

.btn-stc-outline {
    background: transparent;
    border: 2px solid var(--stc-terracotta);
    color: var(--stc-terracotta);
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    transition: all .3s;
}
.btn-stc-outline:hover {
    background-color: var(--stc-terracotta);
    color: #fff;
    opacity: 1;
}

.btn-stc-link {
    color: var(--stc-terracotta);
    font-weight: 600;
    font-size: 15px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color .3s;
}
.btn-stc-link:hover {
    color: var(--stc-terracotta-dark);
    opacity: 1;
}

/* --- Layout --- */

.stc-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .stc-container { width: 94%; }
}

.stc-section {
    padding: 72px 0;
}

@media (max-width: 767px) {
    .stc-section { padding: 48px 0; }
}

/* --- Eyebrow text --- */

.stc-eyebrow {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--stc-terracotta);
    margin-bottom: 12px;
}

/* --- Section headings --- */

.stc-h2 {
    font-size: clamp(1.6rem, 2.2vw, 2.4rem);
    font-weight: 300;
    color: var(--stc-ink);
    line-height: 120%;
    margin-bottom: 16px;
}

.stc-subtitle {
    font-size: 16px;
    color: #5a6a7a;
    line-height: 160%;
    max-width: 640px;
}

/* --- Hero (legacy single image - preservato per altre pagine) --- */

.stc-hero {
    position: relative;
    height: 80vh;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

@media (max-width: 767px) {
    .stc-hero { height: 70vh; min-height: 480px; }
}

.stc-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.stc-hero-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 60%;
    background: linear-gradient(to top, rgba(9,55,80,.85) 0%, rgba(9,55,80,.4) 60%, transparent 100%);
}

.stc-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 48px;
}

.stc-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: #fff;
    line-height: 115%;
    margin-bottom: 16px;
}

.stc-hero .stc-hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,.85);
    line-height: 160%;
    max-width: 560px;
    margin-bottom: 24px;
}

/* ============================================================
   Hero slider 3 sezioni (Private / Semi-Private / Luxury)
   Captions verticalmente centrate. CSS-only crossfade con classi.
   Performance: ~1KB CSS, 15 LOC vanilla JS.
   ============================================================ */

.stc-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
    background: var(--stc-ink);
}

@media (max-width: 767px) {
    .stc-hero-slider { height: 95vh; min-height: 600px; }
}

/* Slides — stacked, opacity crossfade */
.stc-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    will-change: opacity;
}

.stc-hero-slide.is-active { opacity: 1; }

.stc-hero-slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.stc-hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(9,55,80,.45) 0%,
        rgba(9,55,80,.35) 35%,
        rgba(9,55,80,.55) 70%,
        rgba(9,55,80,.75) 100%);
    z-index: 1;
}

/* Captions — centered both V and H, crossfade with active slide */
.stc-hero-captions {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 5% 0;
    pointer-events: none;
}

.stc-hero-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: min(900px, 90%);
    opacity: 0;
    transition: opacity .5s ease;
    pointer-events: none;
}

.stc-hero-caption.is-active { opacity: 1; }

.stc-hero-eyebrow {
    color: #fff !important;
    margin-bottom: 18px;
    text-shadow: 0 1px 6px rgba(0,0,0,.3);
}

.stc-hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 300;
    color: #fff;
    line-height: 110%;
    margin: 0 0 18px;
    text-shadow: 0 2px 14px rgba(0,0,0,.35);
}

.stc-hero-slider .stc-hero-sub {
    font-size: clamp(15px, 1.4vw, 17px);
    color: rgba(255,255,255,.92);
    line-height: 160%;
    max-width: 620px;
    margin: 0 auto 0;
    text-shadow: 0 1px 8px rgba(0,0,0,.35);
}

/* Bottom block: trust row + search widget — constant across slides */
.stc-hero-bottom {
    position: absolute;
    bottom: 200px;
    left: 50%;
    transform: translateX(-50%);
    width: min(720px, 92%);
    pointer-events: auto;
    text-align: center;
}

.stc-hero-slider .stc-trust-row {
    justify-content: center;
    margin-bottom: 18px;
}

.stc-hero-slider .stc-trust-item {
    color: rgba(255,255,255,.95);
    font-size: 13px;
    text-shadow: 0 1px 6px rgba(0,0,0,.35);
}

.stc-hero-slider .stc-trust-item i { color: #fff; }

.stc-hero-slider .stc-search-widget {
    margin: 0 auto;
}

/* Thumbnails — 3 sezioni clickable */
.stc-hero-thumbs {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 24px;
    z-index: 4;
}

.stc-hero-thumb {
    position: relative;
    width: 200px;
    aspect-ratio: 16/10;
    background: rgba(0,0,0,.5);
    cursor: pointer;
    border: 2px solid rgba(255,255,255,.25);
    padding: 0;
    overflow: hidden;
    transition: border-color .25s, transform .25s;
    display: block;
}

.stc-hero-thumb:hover { border-color: rgba(255,255,255,.6); transform: translateY(-2px); }
.stc-hero-thumb.is-active { border-color: #fff; }

.stc-hero-thumb-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.stc-hero-thumb-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(9,55,80,.55);
    transition: background .25s;
}

.stc-hero-thumb.is-active .stc-hero-thumb-img::after,
.stc-hero-thumb:hover .stc-hero-thumb-img::after { background: rgba(9,55,80,.25); }

.stc-hero-thumb-label {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 1px 6px rgba(0,0,0,.6);
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .stc-hero-bottom { bottom: 170px; }
    .stc-hero-thumb { width: 130px; }
    .stc-hero-thumb-label { font-size: 12px; letter-spacing: 1px; }
}

@media (max-width: 767px) {
    .stc-hero-caption { transform: translate(-50%, -65%); }
    .stc-hero-bottom { bottom: 140px; width: 94%; }
    .stc-hero-slider .stc-trust-row {
        flex-direction: column; gap: 6px; align-items: center; margin-bottom: 14px;
    }
    .stc-hero-thumbs { gap: 10px; bottom: 18px; }
    .stc-hero-thumb { width: 95px; }
    .stc-hero-thumb-label { font-size: 11px; letter-spacing: .5px; }
}

/* --- Trust row --- */

.stc-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
}

.stc-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.9);
    font-size: 14px;
    font-weight: 500;
}

.stc-trust-item i {
    color: var(--stc-terracotta-light);
    font-size: 16px;
}

@media (max-width: 767px) {
    .stc-trust-row { flex-direction: column; gap: 10px; }
}

/* --- Search widget --- */

.stc-search-widget {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    max-width: 600px;
}

.stc-search-widget input,
.stc-search-widget select {
    flex: 1;
    padding: 14px 16px;
    border: none;
    background: rgba(255,255,255,.95);
    color: var(--stc-ink);
    font-size: 15px;
    font-weight: 500;
    outline: none;
}

.stc-search-widget input { min-width: 180px; }
.stc-search-widget select { min-width: 140px; border-left: 1px solid #ddd; cursor: pointer; }

.stc-search-widget .btn-stc-primary {
    white-space: nowrap;
    padding: 14px 24px;
    font-size: 14px;
}

@media (max-width: 575px) {
    .stc-search-widget {
        flex-direction: column;
    }
    .stc-search-widget select { border-left: none; border-top: 1px solid #ddd; }
    .stc-search-widget .btn-stc-primary { width: 100%; }
}

/* --- The Day section --- */

.stc-day-prose p {
    font-size: 16px;
    line-height: 170%;
    color: var(--stc-body-color);
    margin-bottom: 16px;
}

.stc-map-placeholder {
    background: var(--stc-bone);
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    border: 1px dashed #ccc;
}

/* --- Steps (How Hotel Pickup Works) --- */

.stc-steps {
    display: flex;
    gap: 0;
    align-items: flex-start;
    counter-reset: step;
}

.stc-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 12px;
}

.stc-step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--stc-warm-soft);
    color: var(--stc-terracotta);
    font-size: 24px;
    margin: 0 auto 16px;
}

.stc-step-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--stc-ink);
    margin-bottom: 8px;
}

.stc-step-desc {
    font-size: 14px;
    color: #5a6a7a;
    line-height: 150%;
}

/* Connector line between steps */
.stc-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 32px;
    right: -2px;
    width: calc(100% - 88px);
    height: 2px;
    background: #ddd;
    transform: translateX(50%);
}

@media (max-width: 767px) {
    .stc-steps { flex-direction: column; gap: 24px; }
    .stc-step { display: flex; align-items: flex-start; text-align: left; gap: 16px; padding: 0; }
    .stc-step-icon { margin: 0; flex-shrink: 0; }
    .stc-step:not(:last-child)::after { display: none; }
}

/* --- Boat cards --- */

.stc-boat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 991px) { .stc-boat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .stc-boat-grid { grid-template-columns: 1fr; } }

.stc-boat-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s;
}

.stc-boat-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.1); }

.stc-boat-card-img {
    position: relative;
    overflow: hidden;
}

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

.stc-pickup-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--stc-terracotta);
    color: #fff;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    z-index: 2;
}

.stc-boat-card-body {
    padding: 16px;
    flex: 1;
}

.stc-boat-card-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--stc-ink);
    margin-bottom: 6px;
}

.stc-boat-card-specs {
    font-size: 13px;
    color: #7a818c;
    margin-bottom: 10px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.stc-boat-card-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--stc-terracotta);
    font-variant-numeric: tabular-nums;
}

.stc-boat-card-cta {
    display: block;
    padding: 10px 16px;
    background: var(--stc-ink);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-align: center;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: background .3s;
}

.stc-boat-card-cta:hover {
    background: var(--stc-ink-light);
    color: #fff;
    opacity: 1;
}

/* --- Why Us cards --- */

.stc-why-card {
    padding: 32px 24px;
    background: var(--stc-bone);
    height: 100%;
}

.stc-why-card i {
    font-size: 28px;
    color: var(--stc-terracotta);
    margin-bottom: 16px;
    display: block;
}

.stc-why-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--stc-ink);
    margin-bottom: 10px;
}

.stc-why-card p {
    font-size: 15px;
    color: #5a6a7a;
    line-height: 160%;
}

/* --- Itinerary cards --- */

.stc-itin-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stc-itin-card-body {
    padding: 20px;
    flex: 1;
}

.stc-itin-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--stc-ink);
    margin-bottom: 6px;
}

.stc-itin-card-duration {
    font-size: 13px;
    font-weight: 600;
    color: var(--stc-terracotta);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.stc-itin-card-desc {
    font-size: 14px;
    color: #5a6a7a;
    line-height: 155%;
}

/* --- FAQ accordion --- */

.stc-faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.stc-faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--stc-ink);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.stc-faq-header i {
    transition: transform .3s;
    font-size: 14px;
    color: #999;
}

.stc-faq-header[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.stc-faq-body {
    padding: 0 0 18px;
    font-size: 15px;
    color: #5a6a7a;
    line-height: 165%;
}

/* --- Reviews --- */

.stc-review-card {
    background: var(--stc-bone);
    padding: 28px;
}

.stc-review-stars {
    color: var(--stc-terracotta);
    font-size: 14px;
    margin-bottom: 12px;
}

.stc-review-text {
    font-size: 15px;
    color: var(--stc-ink);
    line-height: 165%;
    margin-bottom: 16px;
    font-style: italic;
}

.stc-review-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--stc-body-color);
}

/* --- Contact CTA --- */

.stc-contact-section {
    background: var(--stc-ink);
    color: #fff;
    text-align: center;
}

.stc-contact-section h2 {
    color: #fff;
}

.stc-contact-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.stc-contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.9);
    font-size: 16px;
    font-weight: 500;
}

.stc-contact-method i {
    font-size: 20px;
    color: var(--stc-terracotta-light);
}

.stc-contact-method a {
    color: #fff;
}

.stc-contact-hours {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255,255,255,.6);
}

/* --- Shared alternative --- */

.stc-shared-section {
    background: var(--stc-warm-soft);
}

/* --- Mobile sticky CTA --- */

.stc-mobile-cta {
    position: fixed;
    z-index: 1050;
    left: 0;
    bottom: 0;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: space-between;
    background: var(--stc-terracotta);
    padding: 12px 20px;
    color: #fff;
}

.stc-mobile-cta-price {
    font-size: 15px;
    font-weight: 600;
}

.stc-mobile-cta-btn {
    background: #fff;
    color: var(--stc-terracotta);
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
}

@media (max-width: 767px) {
    .stc-mobile-cta { display: flex; }
    body { padding-bottom: 60px; }
}

/* --- Header/Nav --- */

.stc-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1040;
    background: rgba(14,30,46,.95);
    backdrop-filter: blur(6px);
    transition: background .3s;
}

.stc-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 68px;
}

.stc-logo {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.stc-logo small {
    display: block;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
}

.stc-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.stc-nav a {
    color: rgba(255,255,255,.8);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.stc-nav a:hover { color: #fff; opacity: 1; }

.stc-nav-phone {
    color: var(--stc-terracotta-light) !important;
    font-weight: 600 !important;
}

.stc-hamburger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 991px) {
    .stc-nav { display: none; }
    .stc-hamburger { display: block; }
}

/* Mobile drawer */
.stc-mobile-nav {
    position: fixed;
    top: 0; right: -280px;
    width: 280px;
    height: 100%;
    background: var(--stc-ink);
    z-index: 1060;
    transition: right .3s;
    padding: 80px 30px 30px;
}

.stc-mobile-nav.open { right: 0; }

.stc-mobile-nav a {
    display: block;
    color: rgba(255,255,255,.85);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.stc-mobile-nav-close {
    position: absolute;
    top: 20px; right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.stc-mobile-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,.5);
    z-index: 1055;
}

.stc-mobile-overlay.open { display: block; }

/* --- Footer --- */

.stc-footer {
    background: var(--stc-ink);
    color: rgba(255,255,255,.7);
    padding: 48px 0 24px;
}

.stc-footer a { color: rgba(255,255,255,.7); }
.stc-footer a:hover { color: #fff; opacity: 1; }

.stc-footer-brand {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.stc-footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,.4);
    margin-bottom: 20px;
}

.stc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stc-footer-links li { margin-bottom: 8px; }
.stc-footer-links a { font-size: 14px; }

.stc-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 36px;
    padding-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,.4);
    text-align: center;
}

.stc-footer-network {
    font-size: 13px;
    color: rgba(255,255,255,.5);
}

.stc-footer-network a {
    color: var(--stc-terracotta-light);
    font-weight: 600;
}

/* --- Utility --- */

.stc-text-center { text-align: center; }
.stc-mb-0 { margin-bottom: 0; }
.stc-sand-bg { background-color: var(--stc-sand); }

/* ============================================================
   Lightweight slider (CSS scroll-snap, no Slick, no jQuery)
   Performance-first: ~1KB CSS, ~30 LOC vanilla JS init
   ============================================================ */

.stc-slider-section {
    padding: 80px 0 64px;
    text-align: center;
}

@media (max-width: 767px) {
    .stc-slider-section { padding: 56px 0 48px; }
}

.stc-slider-intro {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.stc-slider-intro-icon {
    max-width: 110px;
    margin: 0 auto 16px;
}

.stc-slider-intro-icon img { width: 100%; height: auto; display: block; }

.stc-slider-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.stc-slider-intro-title {
    font-size: clamp(1.8rem, 2.6vw, 2.6rem);
    font-weight: 700;
    line-height: 100%;
    color: var(--stc-ink);
    text-align: right;
}

.stc-slider-intro-title small {
    display: block;
    font-size: 60%;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--stc-body-color);
}

.stc-slider-intro-text {
    text-align: left;
    font-size: 15px;
    line-height: 165%;
    color: var(--stc-body-color);
}

.stc-slider-intro-text a {
    display: inline-block;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--stc-ink);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--stc-ink);
    padding-bottom: 2px;
}

.stc-slider-intro-text a:hover { opacity: .7; }

@media (max-width: 767px) {
    .stc-slider-intro-grid { grid-template-columns: 1fr; gap: 16px; }
    .stc-slider-intro-title,
    .stc-slider-intro-text { text-align: center; }
}

.stc-slider-category {
    font-size: 18px;
    font-weight: 700;
    color: var(--stc-ink);
    margin: 0 0 24px;
    letter-spacing: .5px;
}

.stc-slider {
    position: relative;
}

.stc-slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 5% 16px;
    -webkit-overflow-scrolling: touch;
}

.stc-slider-track::-webkit-scrollbar { display: none; }

.stc-slider-card {
    flex: 0 0 calc((100% / 3) - 14px);
    scroll-snap-align: start;
    background: #fff;
    padding: 14px;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
    text-align: left;
    color: inherit;
}

.stc-slider-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(9,55,80,.08);
    color: inherit;
    opacity: 1;
}

@media (max-width: 991px) {
    .stc-slider-card { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 575px) {
    .stc-slider-card { flex: 0 0 85%; }
    .stc-slider-track { padding: 8px 7.5% 16px; }
}

.stc-slider-card-img {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--stc-bone);
}

.stc-slider-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.stc-slider-card:hover .stc-slider-card-img img { transform: scale(1.05); }

.stc-slider-card-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--stc-ink);
    margin: 14px 0 6px;
}

.stc-slider-card-meta {
    display: flex;
    gap: 14px;
    font-size: 14px;
    color: var(--stc-body-color);
    margin-bottom: 8px;
}

.stc-slider-card-meta i { margin-right: 4px; color: var(--stc-ink-light); }

.stc-slider-card-price {
    text-align: right;
    font-size: 16px;
    font-weight: 700;
    color: var(--stc-ink);
}

.stc-slider-card-price small {
    font-size: 13px;
    font-weight: 400;
    color: var(--stc-body-color);
    margin-right: 4px;
}

.stc-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--stc-ink);
    color: #fff;
    border: 0;
    z-index: 5;
    cursor: pointer;
    font-size: 16px;
    transition: background .25s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stc-slider-arrow:hover { background: var(--stc-ink-light); }
.stc-slider-prev { left: 12px; }
.stc-slider-next { right: 12px; }

@media (max-width: 575px) { .stc-slider-arrow { display: none; } }

/* ============================================================
   Footer charterpro-style (3+3 cols)
   ============================================================ */

.stc-footer-cp {
    background: var(--stc-warm-soft);
    color: var(--stc-body-color);
    padding: 64px 0 32px;
}

.stc-footer-cp .stc-footer-row {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

.stc-footer-cp .stc-footer-logo img {
    width: 50%;
    max-width: 180px;
    height: auto;
}

.stc-footer-cp .stc-footer-about {
    margin-top: 28px;
    font-size: 14px;
    line-height: 165%;
}

.stc-footer-cp .stc-footer-social {
    margin-top: 24px;
    font-size: 18px;
}

.stc-footer-cp .stc-footer-social a {
    display: inline-block;
    margin-right: 14px;
    color: var(--stc-ink);
    transition: opacity .2s;
}

.stc-footer-cp .stc-footer-social a:hover { opacity: .65; }

.stc-footer-cp .stc-footer-col-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--stc-ink);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.stc-footer-cp .stc-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 200%;
}

.stc-footer-cp .stc-footer-list a { color: var(--stc-body-color); }
.stc-footer-cp .stc-footer-list a:hover { color: var(--stc-ink); opacity: 1; }

.stc-footer-cp .stc-footer-contact {
    font-size: 14px;
    line-height: 200%;
}

.stc-footer-cp .stc-footer-contact a { color: var(--stc-body-color); }
.stc-footer-cp .stc-footer-contact a:hover { color: var(--stc-ink); }

.stc-footer-cp .stc-footer-bottom-bar {
    width: 85%;
    max-width: 1200px;
    margin: 48px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(9,55,80,.12);
    text-align: center;
    font-size: 13px;
    color: var(--stc-body-color);
}

@media (max-width: 767px) {
    .stc-footer-cp .stc-footer-row { width: 92%; }
    .stc-footer-cp .stc-footer-bottom-bar { width: 92%; }
}
