:root {
    --bg: #07111b;
    --bg-soft: #0d1824;
    --panel: rgba(14, 22, 35, 0.9);
    --panel-solid: #101b2a;
    --line: rgba(174, 195, 217, 0.14);
    --text: #edf4ff;
    --muted: #9fb0c8;
    --accent: #71c7ff;
    --accent2: #2bd4b7;
    --accent-strong: #38bdf8;
    --nav-bg: rgba(8, 14, 24, 0.78);
    --nav-bg-strong: rgba(10, 18, 28, 0.96);
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
    --radius: 24px;
    --vns-surface-bg: rgba(255, 255, 255, 0.04);
    --vns-surface-bg-hover: rgba(255, 255, 255, 0.06);
    --vns-shadow-color: rgba(0, 0, 0, 0.32);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(113, 199, 255, 0.18), transparent 32%),
        radial-gradient(circle at bottom right, rgba(43, 212, 183, 0.11), transparent 26%),
        var(--bg);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.narrow {
    width: min(760px, 100%);
}

.topbar {
    border-bottom: 1px solid var(--line);
    background: rgba(4, 10, 20, 0.55);
}

.topbar-inner,
.header-inner,
.footer-bottom,
.cta-band-inner,
.split-grid,
.detail-grid {
    display: flex;
    gap: 24px;
}

.topbar-inner {
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 13px;
    color: var(--muted);
}

.topbar-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    background: var(--nav-bg);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.1rem;
}

.brand-cluster {
    position: relative;
}

.brand-mark,
.vesta-mark {
    display: inline-grid;
    place-items: center;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border: 0;
    color: transparent;
    flex: 0 0 auto;
}

.site-navigation {
    margin-left: auto;
}

.primary-menu,
.footer-menu,
.detail-specs,
.meta-list,
.card-meta {
    list-style: none;
    padding: 0;
    margin: 0;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.primary-menu a,
.header-cta,
.button,
.vesta-link,
.vesta-btn {
    border-radius: 999px;
    transition: 0.25s ease;
}

.primary-menu a {
    display: inline-flex;
    align-items: center;
    padding: 11px 15px;
    color: var(--muted);
    border: 1px solid transparent;
    font-weight: 800;
    font-size: 13px;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a {
    background: var(--vns-surface-bg);
    border-color: var(--line);
    color: var(--text);
}

.header-cta,
.button-primary,
.vesta-btn {
    padding: 11px 18px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #04111b;
    font-weight: 800;
    box-shadow: 0 18px 40px rgba(113, 199, 255, 0.2);
    font-size: 13px;
}

.header-cta-pulse {
    position: relative;
    box-shadow: 0 10px 26px rgba(113, 199, 255, 0.24);
    animation: headerCtaGlow 1.8s ease-in-out infinite;
}

.primary-menu > .menu-item-cta {
    margin-left: 6px;
}

.primary-menu > .menu-item-cta > a {
    padding: 11px 18px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #04111b;
    font-weight: 800;
    box-shadow: 0 18px 40px rgba(113, 199, 255, 0.2);
    font-size: 13px;
    position: relative;
    border-radius: 999px;
    animation: headerCtaGlow 1.8s ease-in-out infinite;
}

.primary-menu > .menu-item-cta > a:hover,
.primary-menu > .menu-item-cta.current-menu-item > a,
.primary-menu > .menu-item-cta.current-menu-ancestor > a {
    color: #04111b;
    border-color: transparent;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
}

@keyframes headerCtaGlow {
    0%, 100% {
        box-shadow: 0 8px 18px rgba(113, 199, 255, 0.18), 0 0 0 rgba(43, 212, 183, 0);
    }
    50% {
        box-shadow: 0 12px 30px rgba(113, 199, 255, 0.34), 0 0 24px rgba(43, 212, 183, 0.18);
    }
}

.button-secondary {
    padding: 14px 20px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.button-block {
    display: block;
    text-align: center;
}

.vesta-logoText {
    display: inline-block;
    font-weight: 950;
    letter-spacing: -0.03em;
    font-size: 20px;
    line-height: 1;
    color: var(--text);
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid var(--vns-surface-bg);
    background: var(--vns-surface-bg);
    box-shadow: 0 10px 30px var(--vns-shadow-color);
}

.vesta-logoText::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 18px;
    margin-left: 6px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--accent), var(--accent2));
    transform: translateY(2px);
    animation: vestaCaretBlink 1s infinite;
}

@keyframes vestaCaretBlink {
    0%, 45% { opacity: 1; }
    50%, 100% { opacity: .15; }
}

.vesta-hoverCard {
    position: absolute;
    left: 10px;
    top: 60px;
    width: 280px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--nav-bg-strong);
    box-shadow: 0 22px 60px var(--vns-shadow-color);
    opacity: 0;
    transform: translateY(6px) scale(.98);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
    z-index: 10000;
}

.brand-cluster.is-hover .vesta-hoverCard {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.hc-title {
    font-weight: 950;
    font-size: 13.5px;
    margin: 0 0 10px;
}

.hc-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--muted);
    margin: 4px 0;
}

.hc-row a {
    font-weight: 800;
}

.hc-links {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hc-pill {
    font-size: 11px;
    padding: 6px 8px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--vns-surface-bg);
    color: var(--muted);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: var(--text);
    font-size: 20px;
}

.hero,
.page-hero {
    position: relative;
    overflow: hidden;
}

.hero-home {
    min-height: 84vh;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.14;
}

.hero-content,
.hero-copy,
.hero-panel,
.section-heading,
.content-card,
.card-body,
.stat-card,
.info-card,
.faq-item,
.site-footer h3 {
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 420px);
    gap: 36px;
    align-items: center;
    padding: 120px 0 84px;
}

.vesta-hero-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px 700px at 20% -10%, color-mix(in srgb, var(--accent2) 24%, transparent), transparent 60%),
        radial-gradient(1000px 600px at 90% 0%, color-mix(in srgb, var(--accent) 15%, transparent), transparent 55%),
        linear-gradient(180deg, rgba(7, 17, 27, 0.22), rgba(7, 17, 27, 0.86));
    z-index: 0;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.cta-band h2 {
    font-family: "Cormorant Garamond", serif;
    line-height: 0.95;
    margin: 0;
}

.hero-copy h1 {
    font-size: clamp(3.4rem, 7vw, 6.2rem);
    max-width: 11ch;
}

.hero-panel,
.content-card,
.stat-card,
.info-card,
.faq-item {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-panel {
    padding: 28px;
}

.vesta-hero-panel {
    background: var(--nav-bg-strong);
}

.vesta-kpis {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 18px 0 20px;
}

.vesta-kpis span {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--vns-surface-bg);
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.hero-panel-label {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 800;
}

.hero-panel-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 6px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid var(--line);
    border-radius: 16px;
    margin-bottom: 18px;
}

.hero-panel-tabs button {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 12px;
}

.hero-panel-tabs button.is-active {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #04111b;
}

.hero-booking-form {
    display: grid;
    gap: 14px;
}

.hero-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.hero-field input,
.hero-field select,
.hero-field textarea {
    width: 100%;
    padding: 14px 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.22);
    color: var(--text);
    font: inherit;
}

.hero-field textarea {
    resize: vertical;
    min-height: 120px;
}

.hero-trust-box {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 16px;
    background: rgba(113, 199, 255, 0.08);
    border: 1px solid rgba(113, 199, 255, 0.18);
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.hero-trust-box i {
    color: var(--accent);
    margin-top: 2px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 12px;
    font-weight: 700;
}

.hero-text,
.section-heading p,
.content-card p,
.info-card p,
.faq-item p,
.site-footer p,
.meta-list,
.card-meta {
    color: var(--muted);
}

.page-hero {
    padding: 110px 0 50px;
    border-bottom: 1px solid var(--line);
}

.page-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
}

.page-hero-detail {
    padding-bottom: 28px;
}

.detail-specs,
.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.detail-specs span,
.card-meta li {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    font-size: 14px;
}

.section-shell {
    padding: 68px 0;
}

.section-accent {
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.04), rgba(56, 189, 248, 0));
}

.section-heading {
    margin-bottom: 28px;
    max-width: 660px;
}

.section-heading h2,
.cta-band h2 {
    font-size: clamp(2.4rem, 4vw, 4rem);
    margin-bottom: 12px;
}

.card-grid {
    display: grid;
    gap: 24px;
}

.columns-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.columns-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-card {
    overflow: hidden;
}

.card-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 22px;
}

.card-body h3 {
    margin: 0 0 10px;
    font-size: 1.35rem;
}

.card-date {
    margin-bottom: 6px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.cta-band {
    padding: 42px 0 80px;
}

.cta-band-inner {
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(12, 44, 64, 0.88));
    border: 1px solid var(--line);
}

.stats-grid,
.faq-list,
.gallery-grid {
    display: grid;
    gap: 20px;
}

.stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card,
.info-card,
.faq-item {
    padding: 24px;
}

.stat-card strong {
    display: block;
    font-size: 2.3rem;
    margin-bottom: 8px;
}

.split-grid {
    align-items: start;
}

.split-grid > *,
.detail-grid > * {
    flex: 1;
}

.detail-grid {
    align-items: start;
}

.sticky-card {
    position: sticky;
    top: 120px;
}

.meta-list li {
    margin-bottom: 10px;
}

.gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
}

.gallery-grid img {
    border-radius: 18px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.prose-shell {
    max-width: 760px;
}

.prose-shell p {
    color: var(--muted);
    line-height: 1.8;
}

.site-footer {
    padding: 72px 0 28px;
    border-top: 1px solid var(--line);
    background: rgba(4, 10, 20, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 28px;
    padding: 10px 0 28px;
}

.footer-menu li + li {
    margin-top: 10px;
}

.vesta-foot-right {
    display: grid;
    gap: 22px;
}

.vesta-panel {
    padding: 24px;
    border: 1px solid var(--line);
    background: var(--vns-surface-bg);
    border-radius: 24px;
    box-shadow: 0 24px 70px var(--vns-shadow-color);
}

.vesta-h {
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.footer-subtitle {
    font-size: 18px;
    margin-bottom: 12px;
}

.vesta-p {
    line-height: 1.75;
}

.vesta-note {
    margin-top: 18px;
    padding: 16px;
    border-left: 3px solid var(--accent);
    border-radius: 16px;
    background: color-mix(in srgb, var(--accent) 6%, transparent);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.footer-cta-row {
    margin-top: 18px;
}

.footer-mini-btn,
.vf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 14px;
    border: 0;
    cursor: pointer;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #04111b;
}

.vesta-footer-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vesta-footer-menu-list li + li {
    margin-top: 10px;
}

.vesta-footer-menu-list a {
    color: var(--muted);
    font-weight: 700;
}

.footer-bottom {
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.footer-powered {
    font-size: 13px;
}

.vesta-blog {
    padding: 40px 0 90px;
}

.vb-hero {
    text-align: center;
    margin-bottom: 40px;
}

.vb-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 950;
    letter-spacing: -2px;
    margin: 0 0 14px;
    font-family: "Cormorant Garamond", serif;
}

.vb-desc {
    max-width: 720px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
}

.vb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 26px;
}

.vb-card {
    display: flex;
    flex-direction: column;
}

.vb-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.vb-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vb-meta {
    font-size: 12px;
    font-weight: 800;
    color: var(--muted);
    margin-bottom: 8px;
}

.vb-excerpt {
    flex: 1;
    color: var(--muted);
    line-height: 1.6;
}

.vb-read {
    color: color-mix(in srgb, var(--accent) 90%, transparent);
    font-weight: 900;
}

.vb-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.vb-pagination .page-numbers {
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--vns-surface-bg-hover);
    color: var(--text);
    font-weight: 900;
    font-size: 13px;
}

.vb-pagination .current {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #04111b;
    border: none;
}

.vesta-post {
    padding: 34px 0 90px;
}

.vp-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin: 16px 0 32px;
}

.vp-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--vns-surface-bg);
}

.vp-meta-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.vp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--vns-surface-bg-hover);
    color: var(--muted);
    font-weight: 800;
    font-size: 11px;
}

.vp-hero,
.vp-body {
    border: 1px solid var(--line);
    background: var(--vns-surface-bg);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 24px 70px var(--vns-shadow-color);
}

.vp-title {
    font-size: clamp(28px, 5vw, 52px);
    line-height: 1.1;
    letter-spacing: -1.5px;
    font-weight: 950;
    margin: 0 0 16px;
}

.vp-excerpt {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.vp-cover {
    margin-top: 24px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.vp-body {
    margin-top: 24px;
}

.contact-page-shell {
    padding-top: 46px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 26px;
    align-items: start;
}

.contact-stack {
    display: grid;
    gap: 20px;
}

.contact-card,
.contact-form-card {
    padding: 28px;
}

.contact-intro {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 22px;
}

.contact-location-list {
    display: grid;
    gap: 16px;
}

.contact-location-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.contact-location-item h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.contact-location-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    color: var(--accent);
}

.contact-highlight {
    margin-top: 20px;
    padding: 18px 20px;
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(113, 199, 255, 0.12), rgba(43, 212, 183, 0.08));
    border: 1px solid rgba(113, 199, 255, 0.18);
}

.contact-highlight-label {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.contact-highlight strong {
    font-size: 26px;
    letter-spacing: -0.03em;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-mock-form {
    display: grid;
    gap: 14px;
}

@media (max-width: 1100px) {
    .columns-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-content,
    .detail-grid,
    .split-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .menu-toggle {
        display: inline-flex;
    }

    .site-navigation {
        display: none;
        width: 100%;
        margin: 12px 0 0;
    }

    .site-navigation.is-open {
        display: block;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .primary-menu {
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: rgba(12, 19, 34, 0.92);
    }

    .primary-menu > .menu-item-cta {
        margin-left: 0;
    }

    .hero-content,
    .stats-grid,
    .columns-3,
    .columns-4,
    .gallery-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .cta-band-inner,
    .footer-bottom,
    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-highlight {
        flex-direction: column;
        align-items: flex-start;
    }

    .vp-hero,
    .vp-body {
        padding: 24px 20px;
    }
}
