button, .modal-close-btn, .gallery-arrow {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
}

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

html {
    scroll-behavior: smooth;
    margin: 0 !important; padding: 0 !important;
    width: 100%; overflow-x: hidden;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2B2B2B;
    overflow-x: hidden;
    background: #fff;
    margin: 0 !important; padding: 0 !important;
}

img { max-width: 100%; height: auto; }
a   { text-decoration: none !important; color: inherit; }
/* Prevent WordPress/theme global a:hover opacity from affecting logo */
a:hover img, a:focus img, a:active img { opacity: 1 !important; filter: none !important; }

#page, .site, .ast-container, .site-content, .ast-separate-container,
.entry-content, article, main, #content, .content-area, .site-main,
.hentry, .entry, .post, .page, .single, .archive,
.wp-site-blocks, .has-global-padding {
    margin: 0 !important; padding: 0 !important;
    max-width: 100% !important; width: 100% !important;
    background: transparent !important;
}

.ast-separate-container .ast-article-single,
.ast-separate-container .ast-article-post,
.ast-plain-container .site-content > .ast-container,
.ast-page-builder-template .site-content > .ast-container,
.ast-page-builder-template .entry-content {
    max-width: 100% !important; padding: 0 !important; margin: 0 !important;
}

.elementor, .elementor-section, .elementor-section-boxed,
.elementor-container, .elementor-column-wrap, .elementor-widget-wrap,
.elementor-widget, .elementor-widget-html, .elementor-html-container {
    margin: 0 !important; padding: 0 !important;
    max-width: 100% !important; width: 100% !important;
}

.elementor-section {
    margin-left: 0 !important; margin-right: 0 !important;
    padding-left: 0 !important; padding-right: 0 !important;
}

.entry-title, .page-title, .ast-page-title { display: none !important; }

.myh-placeholder {
    background: linear-gradient(135deg, #D4DCE8, #E2EAF4);
    display: flex; align-items: center; justify-content: center;
    border: 2px dashed #B0BCC8;
    position: relative; width: 100%;
}
.myh-placeholder::before {
    content: attr(data-label);
    font-family: 'Lato', sans-serif;
    font-weight: 700; font-size: 0.72rem;
    color: #7A8CA0; text-transform: uppercase;
    letter-spacing: 1.5px; text-align: center;
    padding: 0 1.5rem; white-space: pre-line; line-height: 1.8;
}

.header {
    position: fixed; top: 0; left: 0; right: 0;
    background: var(--helm-primary, #6b7d8d);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.12);
    z-index: 1000;
    padding: 0;
    width: 100%; margin: 0;
}

.nav-container {
    max-width: 1400px; margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    display: flex; justify-content: space-between; align-items: center;
}

.logo {
    display: flex; align-items: center;
    text-decoration: none !important;
    cursor: pointer; gap: 0;
    font-size: 0;
    opacity: 1 !important;
    transition: none !important;
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}
.logo:hover,
.logo:focus,
.logo:active,
.logo:visited {
    text-decoration: none !important;
    opacity: 1 !important;
    color: var(--helm-nav-link, #FFFFFF) !important;
    outline: none !important;
    box-shadow: none !important;
    filter: none !important;
    transform: none !important;
    background: none !important;
    border: none !important;
}
.logo:hover .logo-img,
.logo:focus .logo-img,
.logo:active .logo-img {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
}
.logo-wordmark {
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--helm-nav-link, #FFFFFF);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.logo span { color: var(--helm-nav-link, #FFFFFF); }
.logo-img {
    width: auto;
    max-width: 260px;
    height: auto;
    display: block !important;
    object-fit: contain;
    transition: none !important;
    flex-shrink: 0;
}
/* Hide broken image icon completely */
.logo-img:-moz-broken { display: none !important; }
.logo-img[src=""] { display: none !important; }
.logo-img[data-broken="1"] { display: none !important; width: 0 !important; height: 0 !important; }
img.logo-img::before { content: none !important; display: none !important; }
img.logo-img::after { content: none !important; display: none !important; }

.header .logo-img {
    width: auto !important;
    max-width: 260px !important;
    height: auto !important;
    display: block !important;
    filter: none !important;
    -webkit-filter: none !important;
}

.nav-menu {
    display: flex; list-style: none;
    gap: 2.25rem; margin: 0; padding: 0;
}
.nav-menu li { list-style: none; }
.nav-menu a {
    font-family: 'Lato', sans-serif;
    color: var(--helm-nav-link, #FFFFFF); font-weight: 600;
    padding: 0.3rem 0; display: block; font-size: 1rem;
    position: relative; text-decoration: none !important;
    transition: color 0.25s;
}
.nav-menu a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--helm-nav-hover, #C9A96E); transition: width 0.3s;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--helm-nav-hover, #C9A96E); }
.nav-menu a:hover::after { width: 100%; }
.header .nav-menu a:hover,
.nav-container .nav-menu a:hover { color: var(--helm-nav-hover, #C9A96E) !important; text-decoration: none !important; }

.cta-button {
    background: var(--helm-btn, #5688D7) !important; color: var(--helm-btn-text, #fff) !important;
    padding: 0.5rem 1.5rem !important; border-radius: 6px !important;
    font-family: 'Lato', sans-serif !important;
    font-weight: 700 !important; font-size: 0.8125rem !important;
    text-transform: uppercase !important; letter-spacing: 0.5px !important;
    display: inline-flex !important; align-items: center !important;
    margin-right: 1rem !important; transition: all 0.3s !important;
}
.cta-button:hover { background: var(--helm-btn-hover, #4070BE) !important; color: var(--helm-btn-text, #fff) !important; transform: translateY(-2px) !important; }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; }
.mobile-toggle span { width: 28px; height: 3px; background: var(--helm-nav-link,#FFFFFF); border-radius: 3px; display: block; }

.hero {
    position: relative; min-height: 100vh; display: flex;
    align-items: flex-start; justify-content: center;
    overflow: visible !important;
    padding-top: 120px !important; padding-bottom: 6rem !important;
}
.hero-video-wrapper {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden; z-index: 1;
}
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(7,55,99,0.85), rgba(11,83,148,0.75), rgba(0,189,255,0.65));
    z-index: 2; pointer-events: none;
}
.hero-content {
    position: relative; z-index: 3; text-align: center; color: white;
    max-width: 1100px; width: 100%; padding: 3rem 2rem 2rem; margin: 0 auto;
}
.hero h1, .hero-content h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.5rem; margin: 0 0 1.5rem; font-weight: 800; line-height: 1.2;
    text-shadow: 3px 3px 15px rgba(0,0,0,0.4); color: white;
}
.hero p, .hero-content > p {
    font-family: 'Lato', sans-serif;
    font-size: 1.25rem; margin-bottom: 3rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
    font-weight: 300; color: white; opacity: 0.95;
    max-width: 700px; margin-left: auto; margin-right: auto;
}

.hv-hero { position: relative; width: 100%; height: 100vh; height: -webkit-fill-available; height: 100dvh; min-height: 600px; overflow: hidden; background: #0A1828; }
.hv-hero-ph { height: 100% !important; position: absolute; inset: 0; }

.search-box {
    background: white !important; padding: 2.5rem !important;
    border-radius: 20px !important; box-shadow: 0 25px 70px rgba(0,0,0,0.35) !important;
    max-width: 950px !important; margin: 0 auto !important;
    position: relative !important; z-index: 10 !important; overflow: visible !important;
}
.search-title { font-family: 'Lato', sans-serif; color: #1A202C; font-size: 1.375rem; font-weight: 700; margin-bottom: 1.5rem; text-align: left; }
.search-form { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 1.25rem !important; overflow: visible !important; }
.form-group { display: flex !important; flex-direction: column !important; overflow: visible !important; }
.form-label {
    font-family: 'Lato', sans-serif !important; font-size: 0.75rem !important; font-weight: 600 !important;
    color: #5A6C7D !important; text-transform: uppercase !important; letter-spacing: 0.5px !important;
    margin-bottom: 8px !important; display: flex !important; align-items: center !important; gap: 6px !important; line-height: 1.4 !important;
}
.search-box .search-form .form-group .search-select,
.search-box .search-select, select.search-select {
    -webkit-appearance: none !important; -moz-appearance: none !important; appearance: none !important;
    display: block !important; width: 100% !important; height: 44px !important; min-height: 44px !important;
    box-sizing: border-box !important; padding: 14px 42px 14px 16px !important;
    font-family: 'Lato', sans-serif !important; font-size: 15px !important; font-weight: 500 !important;
    line-height: 1.4 !important; color: #1A2332 !important;
    background-color: white !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231A2332' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important; background-position: right 14px center !important; background-size: 16px !important;
    border: 2px solid #E1E8ED !important; border-radius: 8px !important;
    cursor: pointer !important; transition: border-color 0.2s, box-shadow 0.2s !important;
}
.search-box .search-select:hover { border-color: #1A202C !important; }
.search-box .search-select:focus { outline: none !important; border-color: #1A202C !important; box-shadow: 0 0 0 3px rgba(26,32,44,0.1) !important; }
.search-button {
    grid-column: 1 / -1; margin-top: 0.75rem;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 36px; background: var(--helm-btn, #5688D7); color: white; border-radius: 50px;
    font-family: 'Lato', sans-serif; font-size: 1rem; font-weight: 700;
    cursor: pointer; border: none; transition: all 0.2s; width: 100%;
}
.search-button:hover { background: var(--helm-btn-hover, #4070BE); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }

.section { padding: 5rem 0; }
.section-white { background: #fff; }
.section-white.features-section, .section-white.steps-section { background: #F8F9FA; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2.5rem; color: #1A2332; margin-bottom: 1rem; font-weight: 800; }
.section-header p { font-family: 'Lato', sans-serif; font-size: 1.125rem; color: #5A6C7D; max-width: 600px; margin: 0 auto; }

.categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.category-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: all 0.3s; }
.category-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,0.15); }
.category-image { height: 240px; background-size: cover; background-position: center; }
.category-content { padding: 2.5rem; }
.category-content h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.5rem; margin-bottom: 0.75rem; color: #1A2332; font-weight: 700; }
.category-content p { font-family: 'Lato', sans-serif; color: #5A6C7D; margin-bottom: 1.75rem; line-height: 1.8; font-size: 0.9375rem; }
.category-link {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--helm-btn, #5688D7); color: white !important;
    padding: 12px 24px; border-radius: 50px;
    font-family: 'Lato', sans-serif; font-size: 0.9375rem; font-weight: 700; transition: all 0.3s;
}
.category-link:hover { background: var(--helm-btn-hover, #4070BE); transform: translateX(3px); }

.yacht-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.yacht-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: all 0.3s; }
.yacht-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,0.15); }
.yacht-image { width: 100%; height: 260px; background-size: cover; background-position: center; position: relative; }
.yacht-badge { position: absolute; top: 12px; left: 12px; font-family: 'Lato', sans-serif; font-size: 0.78rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.8px; padding: 6px 16px; border-radius: 20px; }
.featured-badge { background: #F7E6CA !important; color: #1A2332 !important; }
.popular-badge  { background: #00172D !important; color: white !important; }
.yacht-info { padding: 1.5rem; }
.yacht-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.25rem; font-weight: 700; color: #1A2332; margin-bottom: 4px; }
.yacht-location { font-family: 'Lato', sans-serif; font-size: 0.875rem; color: #5A6C7D; margin-bottom: 1rem; display: flex; align-items: center; gap: 4px; }
.yacht-specs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; padding: 1.25rem 0; border-top: 1px solid #E1E8ED; border-bottom: 1px solid #E1E8ED; margin-bottom: 1.25rem; }
.spec-box { display: flex; align-items: center; gap: 10px; padding: 0.4rem 0.6rem; }
.spec-box svg { color: var(--helm-card-btn, #111111); flex-shrink: 0; }
.spec-text { display: flex; flex-direction: column; line-height: 1.3; }
.spec-value { font-family: 'Lato', sans-serif; font-size: 0.9375rem; font-weight: 700; color: #1A2332; }
.spec-label { font-family: 'Lato', sans-serif; font-size: 0.7rem; font-weight: 600; color: #5A6C7D; text-transform: uppercase; letter-spacing: 0.5px; }
.yacht-footer { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; flex-wrap: nowrap; }
.yacht-price { font-family: 'Lato', sans-serif; font-size: 1.5rem; font-weight: 800; color: #1A2332; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.yacht-price span { font-family: 'Lato', sans-serif; font-size: 0.875rem; font-weight: 400; color: #5A6C7D; }
.inquire-button { font-family: 'Lato', sans-serif; padding: 10px 22px; background: var(--helm-card-btn, #111111) !important; color: var(--helm-btn-text, white) !important; border-radius: 8px; font-size: 0.875rem; font-weight: 700; cursor: pointer; border: none; white-space: nowrap; flex-shrink: 0; transition: background 0.2s; }
.inquire-button:hover { background: var(--helm-card-btn-hover, #333333) !important; }

.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.feature-box { text-align: center; padding: 2.5rem 1.75rem; background: white; border-radius: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); border: 2px solid transparent; transition: all 0.3s; }
.feature-box:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(10,77,140,0.15); border-color: var(--helm-btn, #5688D7); }
.feature-icon { width: 90px; height: 90px; background: linear-gradient(135deg, var(--helm-primary,#5688D7), var(--helm-btn,#4070BE)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; box-shadow: 0 8px 25px rgba(10,77,140,0.3); }
.feature-icon svg { color: white; width: 40px; height: 40px; }
.feature-box h3 { font-family: 'Lato', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; color: #1A2332; }
.feature-box p  { font-family: 'Lato', sans-serif; color: #5A6C7D; line-height: 1.7; font-size: 0.9375rem; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.step { text-align: center; padding: 2.5rem 2rem; background: white; border-radius: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); border: 2px solid transparent; transition: all 0.3s; }
.step:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(10,77,140,0.15); border-color: var(--helm-btn, #5688D7); }
.step-number { width: 72px; height: 72px; background: linear-gradient(135deg, var(--helm-primary,#5688D7), var(--helm-btn,#4070BE)); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Lato', sans-serif; font-size: 2rem; font-weight: 800; margin: 0 auto 1.5rem; box-shadow: 0 8px 25px rgba(10,77,140,0.3); }
.step h3 { font-family: 'Lato', sans-serif; font-size: 1.375rem; font-weight: 700; color: #1A2332; margin-bottom: 1rem; }
.step p  { font-family: 'Lato', sans-serif; color: #5A6C7D; line-height: 1.8; font-size: 0.9375rem; }

.video-section { position: relative; height: 70vh; min-height: 500px; overflow: hidden; }
.video-container { position: relative; width: 100%; height: 100%; }
.featured-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.video-section .hero-video-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.video-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(7,55,99,0.88), rgba(11,83,148,0.78)); display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; text-align: center; padding: 2rem; }
.video-overlay h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 3rem; font-weight: 900; margin-bottom: 1rem; color: white; text-shadow: 0 6px 20px rgba(0,0,0,0.75); }
.video-overlay p  { font-family: 'Lato', sans-serif; font-size: 1.25rem; color: white; opacity: 0.95; text-shadow: 0 4px 16px rgba(0,0,0,0.65); }

.cta-section-final { padding: 5rem 0; text-align: center; background: #fff; }
.cta-section-final h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2.5rem; font-weight: 800; color: #1A2332; margin-bottom: 1rem; }
.cta-section-final p  { font-family: 'Lato', sans-serif; font-size: 1.125rem; color: #5A6C7D; margin-bottom: 3rem; }
.cta-buttons-center { display: flex; justify-content: center; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 40px; background: var(--helm-btn, #5688D7); color: white !important; border-radius: 6px; font-family: 'Lato', sans-serif; font-size: 1rem; font-weight: 700; border: none; cursor: pointer; transition: all 0.2s; }
.btn-primary:hover { background: var(--helm-btn-hover, #4070BE); transform: translateY(-2px); }

.hv-eyebrow { font-family: 'Lato', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--helm-btn, #5688D7); display: block; margin-bottom: 0.6rem; }
.hv-h2, .hv-search-h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.6rem, 2.5vw, 2.25rem); font-weight: 700; color: #1A202C; line-height: 1.2; }
.hv-search-h2 { font-size: clamp(1.85rem, 2.8vw, 2.4rem); }
.hv-search-section { background: #F6F7F9; padding: 4rem 0 3.5rem; border-top: 1px solid #E8E9EB; }
.hv-search-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.hv-search-heading { text-align: center; margin-bottom: 2.5rem; }
.hv-search-eyebrow { font-family: 'Lato', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--helm-btn, #5688D7); display: block; margin-bottom: 0.6rem; }
.hv-search-sub { font-family: 'Lato', sans-serif; font-size: 0.925rem; color: #5A6C7D; }
.hv-filter-bar { background: white; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); padding: 1.5rem 2rem; }
.hv-filter-grid { display: grid; grid-template-columns: repeat(5, 1fr) auto; gap: 0.75rem; align-items: end; }
.hv-filter-item { display: flex; flex-direction: column; }
.hv-filter-label { font-family: 'Lato', sans-serif; font-size: 0.7rem; font-weight: 700; color: #1A202C; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.4rem; }
.hv-filter-select-wrap { position: relative; display: flex; align-items: center; }
.hv-filter-icon { position: absolute; left: 0.7rem; color: #1A202C; pointer-events: none; z-index: 1; }
.hv-filter-select {
    -webkit-appearance: none !important; appearance: none !important;
    display: block !important; width: 100% !important; height: 42px !important;
    box-sizing: border-box !important; padding: 0 2.5rem 0 2.25rem !important;
    font-family: 'Lato', sans-serif !important; font-size: 0.8rem !important; font-weight: 600 !important;
    color: #1A202C !important; background-color: white !important;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230F2038' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important; background-position: right 0.75rem center !important; background-size: 12px !important;
    border: 1.5px solid #E8E9EB !important; border-radius: 6px !important;
    cursor: pointer !important; transition: border-color 0.2s !important;
}
.hv-filter-select:hover, .hv-filter-select:focus { border-color: #1A202C !important; outline: none !important; }
.hv-filter-btn { height: 42px !important; padding: 0 1.5rem !important; background: var(--helm-card-btn, #111111) !important; color: var(--helm-btn-text, white) !important; border: none !important; border-radius: 6px !important; font-family: 'Lato', sans-serif !important; font-size: 0.8rem !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: 0.5px !important; white-space: nowrap !important; cursor: pointer !important; transition: all 0.2s !important; display: flex !important; align-items: center !important; gap: 0.4rem !important; }
.hv-filter-btn:hover { background: var(--helm-card-btn-hover, #333333) !important; transform: translateY(-2px) !important; }
.hv-search-btn { height: 42px !important; padding: 0 1.5rem !important; background: var(--helm-card-btn, #111111) !important; color: var(--helm-btn-text, white) !important; border: none !important; border-radius: 6px !important; font-family: 'Lato', sans-serif !important; font-size: 0.8rem !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: 0.5px !important; white-space: nowrap !important; cursor: pointer !important; transition: all 0.2s !important; display: flex !important; align-items: center !important; gap: 0.4rem !important; }
.hv-search-btn:hover { background: var(--helm-card-btn-hover, #333333) !important; transform: translateY(-2px) !important; }
.hv-sec-row-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.25rem; flex-wrap: wrap; gap: 1rem; }
.hv-all-link { font-family: 'Lato', sans-serif; font-size: 0.875rem; font-weight: 700; color: var(--helm-btn, #5688D7); white-space: nowrap; transition: color 0.25s; }
.hv-all-link:hover { color: var(--helm-primary,#5688D7); }
.hv-svc-btn { display: inline-flex; align-items: center; justify-content: center; padding: 11px 28px; background: var(--helm-card-btn, #111111); color: #fff; border: none; border-radius: 6px; font-family: 'Lato', sans-serif; font-size: 0.9375rem; font-weight: 700; cursor: pointer; transition: all 0.25s; white-space: nowrap; }
.hv-svc-btn:hover { background: var(--helm-card-btn-hover, #333333); transform: translateY(-2px); }

.hv-cvid-overlay .hv-svc-btn { padding: 1rem 2.5rem; font-size: 1rem; border-radius: 8px; }

.hv-fallback { display: none; position: absolute; inset: 0; background-size: cover; background-position: center; }

.hv-svc-section { background: #ffffff; padding: 5rem 0; border-top: 1px solid #F0F2F5; width: 100%; }
.hv-svc-inner { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.hv-svc-inner > .hv-h2 { margin-bottom: 2.75rem; }
.hv-svc-3col { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-bottom: 2.5rem; width: 100%; }
.hv-svc-card { display: flex; flex-direction: column; border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.07); transition: box-shadow 0.25s, transform 0.25s; }
.hv-svc-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.12); transform: translateY(-5px); }
.hv-svc-img { width: 100%; height: 260px; background-size: cover; background-position: center; transition: transform 0.4s ease; flex-shrink: 0; background-color: #D4DCE8; }
.hv-svc-card:hover .hv-svc-img { transform: scale(1.04); }
.hv-svc-body { padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.hv-svc-body h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.5rem; font-weight: 800; color: #1A202C; margin: 0; }
.hv-svc-body p { font-family: 'Lato', sans-serif; font-size: 0.9rem; color: #5A6C7D; line-height: 1.75; margin: 0; flex: 1; }
.hv-svc-body .hv-svc-btn { margin-top: auto; align-self: flex-start; }

.hv-mgmt-wrap { width: 100%; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 28px rgba(0,0,0,0.09); }
.hv-mgmt-hero { position: relative; width: 100%; height: 380px; background-size: cover; background-position: center; background-color: #0A1828; display: flex; flex-direction: column; justify-content: flex-end; }
.hv-mgmt-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(10,20,40,0.88) 0%,rgba(10,20,40,0.15) 65%); }
.hv-mgmt-content { position: relative; z-index: 1; padding: 2.5rem; width: 100%; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; height: 100%; gap: 1.25rem; }
.hv-mgmt-text-block { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; }
.hv-mgmt-text-block h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2rem; font-weight: 800; color: white; margin: 0.25rem 0 0.75rem; }
.hv-mgmt-text-block p { font-family: 'Lato', sans-serif; font-size: 0.95rem; color: rgba(255,255,255,0.85); line-height: 1.75; margin: 0; max-width: 520px; }
.hv-mgmt-cta-btn { display: inline-flex; align-items: center; padding: 0.75rem 1.75rem; background: var(--helm-btn, #5688D7); color: white !important; border-radius: 6px; font-family: 'Lato', sans-serif; font-size: 0.875rem; font-weight: 700; text-decoration: none; transition: background 0.2s; }
.hv-mgmt-cta-btn:hover { background: var(--helm-btn-hover, #4070BE); }
.hv-mgmt-subs { display: grid; grid-template-columns: repeat(4,1fr); background: #F8F9FA; border-top: 1px solid #E8E9EB; }
.hv-msub { padding: 1.75rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start; border-right: 1px solid #E8E9EB; transition: background 0.2s; }
.hv-msub:last-child { border-right: none; }
.hv-msub-active:hover { background: #EFF6FF; cursor: pointer; }
.hv-msub-soon { opacity: 0.6; }
.hv-msub-icon { width: 42px; height: 42px; border-radius: 8px; background: white; border: 1.5px solid #1A202C; display: flex; align-items: center; justify-content: center; color: #1A202C; flex-shrink: 0; }
.hv-msub-icon svg { color: #1A202C; stroke: #1A202C; }
.hv-msub-text h4 { font-family: 'Lato', sans-serif; font-size: 0.875rem; font-weight: 700; color: #1A202C; margin: 0 0 0.35rem; display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; line-height: 1.3; }
.hv-msub-text p { font-family: 'Lato', sans-serif; font-size: 0.8rem; color: #5A6C7D; line-height: 1.6; margin: 0 0 0.75rem; }
.hv-msub-btn { font-size: 0.875rem !important; padding: 0.75rem 1.5rem !important; }
.hv-cs-tag { background: #FEF3C7; color: #92400E; font-family: 'Lato', sans-serif; font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 0.15rem 0.45rem; border-radius: 10px; white-space: nowrap; }

.hv-listings-section { background: #F8F9FA; padding: 5rem 0; width: 100%; border-top: 1px solid #F0F2F5; }
.hv-pkg-section { background: #ffffff; padding: 5rem 0; width: 100%; border-top: 1px solid #F0F2F5; }
.hv-listings-inner { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.hv-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; width: 100%; }

.hv-yacht-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: box-shadow 0.25s, transform 0.25s; display: flex; flex-direction: column; }
.hv-yacht-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.13); transform: translateY(-4px); }
.hv-card-body { padding: 1.4rem 1.4rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.hv-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.9rem; gap: 0.5rem; }
.hv-card-name { font-family: 'Lato', sans-serif; font-size: 1.05rem; font-weight: 700; color: #1A202C; margin: 0 0 0.2rem; line-height: 1.3; }
.hv-card-loc { display: flex; align-items: center; gap: 4px; font-family: 'Lato', sans-serif; font-size: 0.78rem; color: #6F767E; margin: 0; }
.hv-card-loc svg { color: var(--helm-card-btn, #111111); flex-shrink: 0; }
.hv-card-type { font-family: 'Lato', sans-serif; font-size: 0.65rem; font-weight: 700; color: var(--helm-btn, #5688D7); background: #EFF6FF; padding: 0.2rem 0.55rem; border-radius: 20px; white-space: nowrap; flex-shrink: 0; text-transform: uppercase; letter-spacing: 0.5px; }
.hv-specs-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-bottom: 1rem; padding: 1rem 0 0.5rem; border-top: 1px solid #E8E9EB; }
.hv-spec-box { display: flex; flex-direction: row; align-items: center; gap: 0.6rem; }
.hv-spec-box svg { color: var(--helm-card-btn, #111111); flex-shrink: 0; }
.hv-spec-val { font-family: 'Lato', sans-serif; font-size: 1rem; font-weight: 700; color: #1A202C; display: block; line-height: 1.1; }
.hv-spec-lbl { font-family: 'Lato', sans-serif; font-size: 0.65rem; color: #9CA3AF; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; margin-top: 1px; display: block; }
.hv-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; margin-top: auto; }
.hv-card-price { font-family: 'Lato', sans-serif; font-size: 1.75rem; font-weight: 800; color: #1A2332; }
.hv-price-per { font-family: 'Lato', sans-serif; font-size: 0.85rem; font-weight: 500; color: #6F767E; }
.hv-view-btn { padding: 10px 22px !important; background: var(--helm-card-btn, #111111) !important; background-image: none !important; color: var(--helm-btn-text, #fff) !important; border: none !important; border-radius: 8px !important; font-family: 'Lato', sans-serif !important; font-size: 0.875rem !important; font-weight: 700 !important; cursor: pointer !important; transition: background 0.2s !important; }
.hv-view-btn:hover { background: var(--helm-card-btn-hover, #333333) !important; }

.hv-dest-section { overflow: hidden; background: #F8F9FA; padding: 5rem 0 4rem; border-top: 1px solid #F0F2F5; width: 100%; }
.hv-dest-head { display: flex; justify-content: space-between; align-items: flex-end; padding: 0 2rem; max-width: 1400px; margin: 0 auto 2.5rem; flex-wrap: wrap; gap: 1rem; }
.hv-dest-head-text .hv-h2 { margin-bottom: 0; }
.hv-dest-hint { display: flex; align-items: center; gap: 0.6rem; font-family: 'Lato', sans-serif; font-size: 0.78rem; font-weight: 600; color: var(--helm-btn, #5688D7); opacity: 0.8; }
.hv-hint-icon { display: flex; align-items: center; }
.hv-dest-strip { position: relative; width: 100%; overflow: visible; padding: 0.5rem 0 1rem; box-sizing: border-box; cursor: default; }
.hv-dest-track { display: flex; gap: 1.5rem; will-change: transform; padding-left: 2rem; }
.hv-dslide { flex-shrink: 0; width: 360px; border-radius: 14px; overflow: hidden; text-decoration: none; background: white; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: box-shadow 0.3s, transform 0.3s; display: block; }
.hv-dslide:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.14); transform: translateY(-6px); }
.hv-dslide-img { height: 240px; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.hv-dslide:hover .hv-dslide-img { transform: scale(1.05); }
.hv-dslide-info { padding: 1.5rem; background: white; }
.hv-dbadge { display: inline-block; font-family: 'Lato', sans-serif; font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--helm-btn, #5688D7); background: #EFF6FF; padding: 0.25rem 0.65rem; border-radius: 20px; margin-bottom: 0.65rem; }
.hv-dslide-info h3 { font-family: 'Lato', sans-serif; font-size: 1.1rem; font-weight: 700; color: #1A202C; margin: 0 0 0.3rem; }
.hv-dslide-info p { font-family: 'Lato', sans-serif; font-size: 0.82rem; color: #5A6C7D; margin: 0; line-height: 1.5; }
.hv-dest-prog-wrap { height: 3px; background: #E8E9EB; margin: 1.5rem 2rem 0; border-radius: 2px; overflow: hidden; }
.hv-dest-prog-bar { height: 100%; background: var(--helm-btn, #5688D7); border-radius: 2px; width: 0%; transition: width 0.1s linear; }
.hv-dest-guide-btn { display: inline-block; font-family: 'Lato', sans-serif; padding: 0.875rem 2rem; background: transparent; color: var(--helm-btn, #5688D7) !important; border: 2px solid var(--helm-btn, #5688D7); border-radius: 6px; font-size: 0.875rem; font-weight: 700; text-decoration: none; transition: all 0.2s; }
.hv-dest-guide-btn:hover { background: var(--helm-btn, #5688D7); color: white !important; }

.hv-why-section { background: white; padding: 5rem 0; border-top: 1px solid #F0F2F5; width: 100%; }
.hv-why-inner { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.hv-why-intro { font-family: 'Lato', sans-serif; font-size: 0.95rem; color: #5A6C7D; line-height: 1.8; margin: 1rem 0 2rem; max-width: 480px; }
.hv-why-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.hv-why-item { display: flex; gap: 1rem; align-items: flex-start; }
.hv-why-check { width: 26px; height: 26px; border-radius: 50%; background: var(--helm-btn, #5688D7); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.hv-why-check svg { color: white !important; stroke: white !important; }
.hv-why-item strong { display: block; font-family: 'Lato', sans-serif; font-size: 0.9rem; font-weight: 700; color: #1A202C; margin-bottom: 0.2rem; }
.hv-why-item p { font-family: 'Lato', sans-serif; font-size: 0.84rem; color: #5A6C7D; line-height: 1.65; margin: 0; }
.hv-why-right { position: relative; }
.hv-why-photo-main { width: 100%; height: 390px; border-radius: 14px; background-size: cover; background-position: center; background-color: #D4DCE8; }
.hv-why-photo-sm { position: absolute; bottom: -1.5rem; left: -1.5rem; width: 50%; height: 200px; border-radius: 12px; background-size: cover; background-position: center; background-color: #C5D0DC; border: 4px solid white; box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.hv-why-photo-mobile { display: none; width: 100%; height: 280px; border-radius: 12px; background-size: cover; background-position: center; background-color: #D4DCE8; margin: 1.5rem 0; }

.hv-cvid { position: relative; width: 100%; height: 480px; overflow: hidden; background: #0A1828; border-top: 1px solid rgba(255,255,255,0.05); }
.hv-cvid-video { position: absolute; inset: 0; width: 100%; height: 100%; }
.hv-cvid-fallback { display: none; position: absolute; inset: 0; background-size: cover; background-position: center; }
.hv-cvid-overlay { position: absolute; inset: 0; background: rgba(10,20,40,0.6); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.hv-cvid-overlay h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.8rem,3.5vw,2.75rem); font-weight: 800; color: white; margin: 0; letter-spacing: -0.5px; text-shadow: 0 2px 16px rgba(0,0,0,0.35); }

.page-title-block { padding: 2.5rem 0 1.5rem; text-align: center; }
.page-title-heading { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2.25rem; font-weight: 800; color: #1A202C; margin: 0 0 0.5rem; line-height: 1.2; }
.page-title-sub { font-family: 'Lato', sans-serif; font-size: 1rem; color: #6F767E; margin: 0; font-weight: 400; }

.filter-professional { background: white; padding: 1.5rem 0; margin-top: 72px; border-bottom: 1px solid #E8E9EB; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.listings-pro-section + .filter-professional { margin-top: 0 !important; }
.filter-pro-container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

.filter-pro-grid-single { display: flex; align-items: flex-end; gap: 0.8rem; flex-wrap: wrap; }
.filter-pro-item { flex: 1; min-width: 140px; display: flex; flex-direction: column; }
.filter-pro-label { font-family: 'Lato', sans-serif; font-size: 0.7rem; font-weight: 700; color: #000; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.4rem; }
.filter-pro-select-wrapper { position: relative; display: flex; align-items: center; }
.filter-pro-icon { position: absolute; left: 0.7rem; color: #000; pointer-events: none; z-index: 1; }
.filter-pro-select-wrapper .filter-pro-select,
.filter-pro-item .filter-pro-select,
select.filter-pro-select {
    -webkit-appearance: none !important; -moz-appearance: none !important; appearance: none !important;
    display: block !important; width: 100% !important; height: 40px !important; min-height: 40px !important;
    box-sizing: border-box !important; padding: 0 2.2rem 0 2.2rem !important;
    font-family: 'Lato', sans-serif !important; font-size: 0.8rem !important; font-weight: 600 !important;
    line-height: 1.4 !important; color: #000 !important;
    background-color: white !important;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23000000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important; background-position: right 0.7rem center !important; background-size: 12px !important;
    border: 1.5px solid #E8E9EB !important; border-radius: 6px !important;
    cursor: pointer !important; transition: border-color 0.2s !important;
}
.filter-pro-select:hover { border-color: #1A202C !important; }
.filter-pro-select:focus { outline: none !important; border-color: #1A202C !important; box-shadow: 0 0 0 3px rgba(26,32,44,0.1) !important; }
.more-filters-btn { height: 40px !important; padding: 0 1.2rem !important; background: #F8F9FA !important; border: 1.5px solid #E8E9EB !important; border-radius: 6px !important; font-family: 'Lato', sans-serif !important; font-size: 0.75rem !important; font-weight: 700 !important; color: #000 !important; cursor: pointer !important; display: flex !important; align-items: center !important; gap: 0.4rem !important; text-transform: uppercase !important; letter-spacing: 0.5px !important; transition: all 0.2s !important; white-space: nowrap !important; flex-shrink: 0 !important; -webkit-appearance: none !important; appearance: none !important; }
.more-filters-btn:hover { border-color: #1A202C !important; color: #1A202C !important; background: white !important; }
.filter-search-btn-inline { height: 40px !important; padding: 0 1.5rem !important; background: var(--helm-card-btn, #111111) !important; color: var(--helm-btn-text, white) !important; border: none !important; border-radius: 6px !important; font-family: 'Lato', sans-serif !important; font-size: 0.8rem !important; font-weight: 700 !important; cursor: pointer !important; display: flex !important; align-items: center !important; gap: 0.5rem !important; text-transform: uppercase !important; letter-spacing: 0.5px !important; transition: all 0.2s !important; white-space: nowrap !important; flex-shrink: 0 !important; -webkit-appearance: none !important; appearance: none !important; }
.filter-search-btn-inline svg { stroke: white !important; fill: none !important; }
.filter-search-btn-inline:hover { transform: translateY(-2px) !important; box-shadow: 0 6px 16px rgba(0,0,0,0.15) !important; background: var(--helm-card-btn-hover, #333333) !important; }

.advanced-filters-dropdown { margin-top: 1.25rem; padding: 1.25rem; background: #F8F9FA; border-radius: 8px; border: 1px solid #E8E9EB; }
.advanced-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.advanced-group { display: flex; flex-direction: column; }
.advanced-title { font-family: 'Lato', sans-serif; font-size: 0.7rem; font-weight: 700; color: #000; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.7rem; }
.checkbox-list, .radio-list { display: flex; flex-direction: column; gap: 0.5rem; }
.checkbox-item, .radio-item { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; font-family: 'Lato', sans-serif; font-size: 0.8rem; color: #000; font-weight: 500; }
.checkbox-item input[type="checkbox"],
.radio-item input[type="radio"] { width: 15px; height: 15px; cursor: pointer; accent-color: #1A202C; }

.listings-pro-section { padding: 2.5rem 2rem 4rem; background: #FAFBFC; }
.listings-pro-container { max-width: 1400px; margin: 0 auto; }
.controls-bar { margin-bottom: 2rem; }
.controls-left { display: flex; align-items: center; gap: 1.5rem; }
.control-group { display: flex; align-items: center; gap: 0.6rem; }
.control-label { font-family: 'Lato', sans-serif; font-size: 0.8rem; font-weight: 700; color: #000; text-transform: uppercase; letter-spacing: 0.5px; }
.controls-bar .control-select, select.control-select {
    padding: 8px 2rem 8px 0.8rem !important; border: 1.5px solid #E8E9EB !important; border-radius: 6px !important;
    font-family: 'Lato', sans-serif !important; font-size: 0.85rem !important; color: #000 !important; font-weight: 600 !important;
    line-height: 1.4 !important; height: 36px !important; min-height: 36px !important;
    background-color: white !important;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23000000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important; background-position: right 0.7rem center !important; background-size: 12px !important;
    -webkit-appearance: none !important; appearance: none !important;
    cursor: pointer !important; transition: border-color 0.2s !important;
}
.controls-bar .control-select:hover { border-color: #1A202C !important; }
.yacht-count-display { font-family: 'Lato', sans-serif; font-size: 0.85rem; color: #000; font-weight: 500; margin-left: 0.5rem; }
.yacht-count-display strong { font-weight: 700; }

.yacht-grid-pro { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
.yacht-card-pro { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.08); transition: all 0.3s; }
.yacht-card-pro:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(0,0,0,0.15); }
.yacht-image-pro { position: relative; width: 100%; height: 260px; background-size: cover; background-position: center; background-repeat: no-repeat; overflow: hidden; }
.yacht-image-pro .myh-placeholder { position: absolute; inset: 0; height: 100%; }
.yacht-badge-pro { position: absolute; top: 1rem; left: 1rem; padding: 0.4rem 0.9rem; border-radius: 20px; font-family: 'Lato', sans-serif; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.yacht-badge-pro.featured-badge { background: #F7E6CA !important; color: #1A2332 !important; }
.yacht-badge-pro.popular-badge  { background: #00172D !important; color: white !important; }
.yacht-wishlist-pro { position: absolute; top: 1rem; right: 1rem; width: 38px; height: 38px; background: transparent !important; background-color: transparent !important; box-shadow: none !important; border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; padding: 0; outline: none !important; }
.yacht-card-pro:hover .yacht-wishlist-pro { opacity: 1; }
.yacht-wishlist-pro svg { width: 20px !important; height: 20px !important; stroke: #FF6B6B !important; fill: none !important; stroke-width: 2.5 !important; }
.yacht-wishlist-pro:hover { transform: scale(1.15); }
.yacht-wishlist-pro.active svg { fill: #FF6B6B !important; }
.yacht-body-pro { padding: 1.5rem; }
.yacht-header-pro { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.yacht-name-pro { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.15rem; font-weight: 700; color: #1A202C; margin: 0 0 0.3rem; }
.yacht-location-pro { font-family: 'Lato', sans-serif; font-size: 0.85rem; color: #6F767E; margin: 0; }
.yacht-type-pro { font-family: 'Lato', sans-serif; padding: 0.3rem 0.7rem; background: #F1F3F4; border-radius: 4px; font-size: 0.7rem; font-weight: 700; color: var(--helm-primary,#5688D7); text-transform: uppercase; letter-spacing: 0.5px; }
.yacht-specs-pro { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid #F1F3F4; }
.spec-pro { display: flex; align-items: center; gap: 0.5rem; font-family: 'Lato', sans-serif; font-size: 0.85rem; color: #4A4A4A; font-weight: 500; width: 100%; }
.spec-pro svg { color: var(--helm-card-btn, #111111); flex-shrink: 0; }
.yacht-footer-pro { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; flex-wrap: nowrap; }
.yacht-price-pro { display: flex; flex-direction: column; flex: 1; min-width: 0; overflow: hidden; }
.price-amount { font-family: 'Lato', sans-serif; font-size: 1.5rem; font-weight: 800; color: #1A2332; }
.price-period { font-family: 'Lato', sans-serif; font-size: 0.75rem; color: #6F767E; font-weight: 500; }
.yacht-view-btn { font-family: 'Lato', sans-serif; padding: 10px 22px; background: var(--helm-card-btn, #111111) !important; color: var(--helm-btn-text, #fff) !important; border: none; border-radius: 8px; font-size: 0.875rem; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.yacht-view-btn:hover { background: var(--helm-card-btn-hover, #333333) !important; }
.load-more-pro { text-align: center; padding-top: 2rem; }
.load-more-btn-pro { font-family: 'Lato', sans-serif; padding: 0.9rem 2.5rem; background: white; color: var(--helm-primary,#5688D7); border: 2px solid var(--helm-primary,#5688D7); border-radius: 8px; font-size: 0.9rem; font-weight: 700; cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.2s; }
.load-more-btn-pro:hover { background: var(--helm-primary,#5688D7); color: white; }
.load-info-pro { font-family: 'Lato', sans-serif; margin-top: 1rem; font-size: 0.85rem; color: #6F767E; }

.page-header-simple { background: linear-gradient(135deg, var(--helm-primary,#5688D7), var(--helm-btn,#4070BE)); padding: 4rem 2rem 3rem; margin-top: 72px; text-align: center; }
.page-header-content h1 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 3rem; font-weight: 800; color: white; margin-bottom: 1rem; }
.page-header-content p  { font-family: 'Lato', sans-serif; font-size: 1.25rem; color: white; opacity: 0.95; }

.yacht-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-start; justify-content: center; overflow-y: auto; padding: 1rem; }
.yacht-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.65); }
.yacht-modal-content { position: relative; background: white; border-radius: 16px; width: 100%; max-width: 1100px; margin: auto; overflow: hidden; box-shadow: 0 40px 120px rgba(0,0,0,0.5); z-index: 1; }
.modal-close-btn { position: absolute; top: 1rem; right: 1rem; z-index: 10; width: 40px; height: 40px; background: rgba(255,255,255,0.95); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important; transition: transform 0.2s; }
.modal-close-btn:hover { transform: scale(1.1); }
.modal-gallery-wrapper { position: relative; width: 100%; height: 560px; overflow: hidden; background: #0A1828; }
.modal-gallery { position: relative; width: 100%; height: 100%; background-size: cover; background-position: center center; background-repeat: no-repeat; transition: background-image 0.3s ease; }
.modal-gallery img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 0.45s ease; }
.modal-gallery-item { width: 100%; height: 100%; background-size: cover; background-position: center center; background-repeat: no-repeat; }
.gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 48px; height: 48px; background: rgba(255,255,255,0.9); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; }
.gallery-arrow:hover { background: white; transform: translateY(-50%) scale(1.08); }
.gallery-arrow-left  { left: 1rem; }
.gallery-arrow-right { right: 1rem; }
.gallery-indicators { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.4rem; }
.gallery-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: background 0.2s, transform 0.2s; }
.gallery-dot.active { background: white; transform: scale(1.3); }

.gallery-indicator { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: background 0.2s, transform 0.2s; }
.gallery-indicator.active { background: white; transform: scale(1.3); }
.modal-body { padding: 2rem 2.5rem 2.5rem; }

.modal-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; flex-wrap: wrap; gap: 0.5rem; }
.modal-header h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.75rem; font-weight: 800; color: #1A202C; margin: 0 0 0.3rem; }
.modal-builder { font-family: 'Lato', sans-serif; font-size: 0.9rem; color: #6F767E; margin: 0; }
.modal-price-block { text-align: right; }
.modal-price-amount { font-family: 'Lato', sans-serif; font-size: 1.75rem; font-weight: 800; color: #1A202C; display: block; }
.modal-price-period { font-family: 'Lato', sans-serif; font-size: 0.8rem; color: #6F767E; }
.modal-location-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; font-family: 'Lato', sans-serif; font-size: 0.9rem; color: #5A6C7D; }
.modal-specs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.75rem; }
.modal-spec-box { display: flex; align-items: center; gap: 0.75rem; background: #F8F9FA; border-radius: 10px; padding: 0.9rem 1rem; }
.modal-spec-box svg { color: var(--helm-card-btn, #111111); flex-shrink: 0; }
.modal-spec-label { font-family: 'Lato', sans-serif; font-size: 0.7rem; font-weight: 700; color: #6F767E; text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 0.2rem; }
.modal-spec-value { font-family: 'Lato', sans-serif; font-size: 0.95rem; font-weight: 800; color: #1A202C; display: block; }
.modal-section { margin-bottom: 1.75rem; }
.modal-section h3 { font-family: 'Lato', sans-serif; font-size: 1rem; font-weight: 800; color: #1A202C; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.9rem; padding-bottom: 0.6rem; border-bottom: 2px solid #F1F3F4; }
.modal-section p { font-family: 'Lato', sans-serif; font-size: 0.95rem; color: #4A4A4A; line-height: 1.75; }
.modal-tech-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
.modal-tech-item { font-family: 'Lato', sans-serif; display: flex; gap: 0.5rem; font-size: 0.875rem; padding: 0.4rem 0; border-bottom: 1px solid #F8F9FA; }
.modal-tech-item strong { color: #1A202C; font-weight: 700; min-width: 120px; }
.modal-tech-item span { color: #4A4A4A; }
.modal-amenities-grid, .modal-toys-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.modal-amenity-item { display: flex; align-items: center; gap: 0.5rem; font-family: 'Lato', sans-serif; font-size: 0.875rem; color: #4A4A4A; }
.modal-amenity-item svg { color: var(--helm-card-btn, #111111); flex-shrink: 0; }
.modal-charter-btn { display: flex; align-items: center; justify-content: center; width: 100%; padding: 0.75rem 1.75rem; background: var(--helm-btn, #5688D7); color: white; border: none; border-radius: 8px; font-family: 'Lato', sans-serif; font-size: 0.875rem; font-weight: 700; cursor: pointer; transition: background 0.2s, transform 0.2s; margin-top: 1rem; }
.modal-charter-btn:hover { background: var(--helm-btn-hover, #4070BE); transform: translateY(-2px); }
.modal-title-block { flex: 1; min-width: 0; }

/* ── Popup card redesign ── */
.popup-header-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; flex-wrap: wrap; gap: 0.5rem; }
.popup-title-col { flex: 1; min-width: 0; }
.popup-price-col { text-align: right; flex-shrink: 0; }
.popup-title { font-family: 'Inter', 'Lato', sans-serif; font-size: 1.75rem; font-weight: 700; color: #0A1828; margin: 0 0 0.3rem; line-height: 1.2; letter-spacing: -0.3px; }
.popup-subtitle { font-family: 'Lato', sans-serif; font-size: 14px; color: #666; margin: 0; }
.popup-price { font-family: 'Inter', 'Lato', sans-serif; font-size: 1.6rem; font-weight: 700; color: #0A1828; display: block; letter-spacing: -0.2px; line-height: 1.1; }
.popup-price-period { font-family: 'Lato', sans-serif; font-size: 12px; color: #888; display: block; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 3px; }
.popup-description { font-family: 'Lato', sans-serif; font-size: 15px; line-height: 1.75; color: #444; margin: 0 0 1.5rem; }
.popup-section-title { font-family: 'Lato', sans-serif; font-size: 22px; font-weight: 600; color: #111; margin: 0 0 14px; padding-bottom: 10px; border-bottom: 2px solid #f1f3f4; text-transform: none; letter-spacing: 0; }
.popup-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; margin-bottom: 4px; }
.popup-card { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 20px 14px; background: #fdfdfd; border-radius: 14px; box-shadow: 0 2px 10px rgba(0,0,0,0.07); text-align: center; transition: transform 0.25s ease, box-shadow 0.25s ease; cursor: default; border: 1px solid #f0f0f0; }
.popup-card:hover { transform: translateY(-5px); box-shadow: 0 8px 22px rgba(0,0,0,0.13); }
.popup-card i { font-size: 26px; color: #111; line-height: 1; }
.popup-card h4 { font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 600; margin: 0; color: #111; }
.popup-card p { font-family: 'Lato', sans-serif; font-size: 13px; margin: 0; color: #444; }
.popup-info-list { margin: 4px 0 8px 20px; padding: 0; list-style: disc; }
.popup-info-list li { font-family: 'Lato', sans-serif; font-size: 14px; color: #222; margin-bottom: 7px; line-height: 1.6; }
.popup-itinerary { display: flex; flex-direction: column; gap: 0; }
.popup-day-block { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #eee; }
.popup-day-block:last-child { border-bottom: none; margin-bottom: 0; }
.popup-day-block h4 { font-family: 'Lato', sans-serif; font-size: 16px; font-weight: 600; margin: 0 0 6px; color: #111; }
.popup-day-block p { font-family: 'Lato', sans-serif; font-size: 14px; line-height: 1.75; margin: 0; color: #444; }
.popup-cta-btn { display: block; width: 100%; padding: 0.75rem 1.75rem; background: var(--helm-btn, #5688D7); color: white; border: none; border-radius: 8px; font-family: 'Lato', sans-serif; font-size: 0.875rem; font-weight: 700; cursor: pointer; transition: background 0.2s, transform 0.2s; margin-top: 1.5rem; text-align: center; }
.popup-cta-btn:hover { background: var(--helm-btn-hover, #4070BE); transform: translateY(-2px); }
.modal-yacht-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.6rem; font-weight: 800; color: #0A1828; margin: 0 0 .25rem; line-height: 1.2; }
.modal-yacht-sub { font-family: 'Lato', sans-serif; font-size: .85rem; color: #6B7C8D; margin: 0; }
.modal-price { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.5rem; font-weight: 800; color: var(--helm-primary, #5688D7); }
.modal-price-per { font-family: 'Lato', sans-serif; font-size: .8rem; color: #8A9299; }
.modal-spec-val { display: block; font-family: 'Lato', sans-serif; font-size: 1rem; font-weight: 800; color: #0A1828; }
.modal-spec-lbl { display: block; font-family: 'Lato', sans-serif; font-size: .68rem; color: #8A9299; text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }
.modal-cta-row { padding: 1.5rem 0 .5rem; text-align: center; }

.gallery-dots { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); display: flex; gap: .4rem; }

#modal-condition { display: inline-block; padding: 0.2rem 0.7rem; border-radius: 4px; font-family: 'Lato', sans-serif; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; }

.package-includes { margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid #F1F3F4; }
.include-item { font-family: 'Lato', sans-serif; font-size: 0.85rem; color: #4A4A4A; margin-bottom: 0.5rem; display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.5; }
.pkg-duration-tag { position: absolute; bottom: 0.85rem; left: 0.85rem; background: rgba(15,32,56,0.82); color: white; font-family: 'Lato', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; padding: 0.35rem 0.85rem; border-radius: 20px; }
.pkg-type-badge { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 20px; font-family: 'Lato', sans-serif; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 0.65rem; }
.pkg-inclusions-preview { margin-bottom: 1.25rem; }
.pkg-inc-row { display: flex; align-items: center; gap: 0.5rem; font-family: 'Lato', sans-serif; font-size: 0.8rem; color: #4A4A4A; margin-bottom: 0.35rem; }
.pkg-inc-row svg { color: #10B981; flex-shrink: 0; }
.pkg-specs-grid { grid-template-columns: repeat(3, 1fr) !important; }
.pkg-itinerary { display: flex; flex-direction: column; gap: 1.1rem; }
.itinerary-day { display: flex; gap: 1.25rem; align-items: flex-start; }
.itinerary-day-num { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--helm-primary,#5688D7); color: white; display: flex; align-items: center; justify-content: center; font-family: 'Lato', sans-serif; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; }
.itinerary-day-content h4 { font-family: 'Lato', sans-serif; font-size: 0.9rem; font-weight: 700; color: #1A202C; margin-bottom: 0.25rem; }
.itinerary-day-content p { font-family: 'Lato', sans-serif; font-size: 0.875rem; color: #4A4A4A; line-height: 1.65; margin: 0; }
.pkg-yacht-card { background: #F8F9FA; border-radius: 10px; padding: 1.25rem; }
.pkg-yacht-card h4 { font-family: 'Lato', sans-serif; font-size: 0.9rem; font-weight: 800; color: #1A202C; margin-bottom: 1rem; }
.pkg-yacht-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
.pys-item { display: flex; align-items: center; gap: 0.5rem; font-family: 'Lato', sans-serif; font-size: 0.8rem; color: #4A4A4A; }
.pys-item svg { color: var(--helm-card-btn, #111111); flex-shrink: 0; }
#pkg-modal .modal-amenity-item svg { color: #10B981; }

.dg-stats-bar { background: #fff; border-bottom: 1px solid #E8E9EB; padding: 1.5rem 2rem; }
.dg-stats-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.dg-stat { display: flex; flex-direction: column; align-items: center; text-align: center; min-width: 80px; }
.dg-stat-num { font-family: 'Lato', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--helm-btn, #5688D7); line-height: 1; margin-bottom: 0.25rem; }
.dg-stat-label { font-family: 'Lato', sans-serif; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: #6F767E; }
.dg-stat-sep { width: 1px; height: 38px; background: #E8E9EB; }
.dg-section { background: #F4F6F8; padding: 2.5rem 2rem 4.5rem; }
.dg-container { max-width: 1400px; margin: 0 auto; display: flex; flex-direction: column; gap: 3rem; }
.dg-block { display: grid; grid-template-columns: 52% 48%; grid-template-rows: auto 1fr; grid-template-areas: "info photos" "lower photos"; background: #fff; border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,0.07); overflow: hidden; opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.dg-block.dg-visible { opacity: 1; transform: translateY(0); }
.dg-block-flip { grid-template-columns: 48% 52%; grid-template-areas: "photos info" "photos lower"; }
.dg-block-flip .dg-photos { order: 0; }
.dg-info { grid-area: info; padding: 3.5rem 3.5rem 1.5rem; display: flex; flex-direction: column; }
.dg-badge { display: inline-block; padding: 0.4rem 1rem; border-radius: 50px; font-family: 'Lato', sans-serif; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.1rem; width: fit-content; }
.badge-popular { background: #FEF3C7; color: #92400E; border: 1px solid #FDE68A; }
.badge-diving  { background: #EFF6FF; color: #1E40AF; border: 1px solid #BFDBFE; }
.badge-whale   { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.badge-unesco  { background: #F5F3FF; color: #5B21B6; border: 1px solid #DDD6FE; }
.badge-remote  { background: #F0F9FF; color: #0369A1; border: 1px solid #BAE6FD; }
.dg-name    { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2.25rem; font-weight: 800; color: #1A202C; margin: 0 0 0.4rem; line-height: 1.2; }
.dg-tagline { font-family: 'Lato', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--helm-btn, #5688D7); margin: 0 0 1.2rem; }
.dg-accent-line { width: 44px; height: 3px; background: var(--helm-btn, #5688D7); border-radius: 2px; margin-bottom: 1.5rem; }
.dg-body { margin-bottom: 2rem; }
.dg-body p { font-family: 'Lato', sans-serif; font-size: 0.9rem; color: #3A3A3A; line-height: 1.85; margin-bottom: 1rem; }
.dg-body p:last-child { margin-bottom: 0; }
.dg-rows { display: flex; flex-direction: column; border-top: 2px solid #E8EEF4; margin-bottom: 1.75rem; margin-top: 0.5rem; }
.dg-row { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid #EEF2F6; }
.dg-row-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 26px; margin-top: 2px; color: var(--helm-btn, #5688D7); font-size: 14px; opacity: 1; }
.dg-row > div { display: flex; flex-direction: column; gap: 0.3rem; }
.dg-row strong { font-family: 'Lato', sans-serif; font-size: 0.75rem; font-weight: 700; color: #1A202C; text-transform: uppercase; letter-spacing: 1px; }
.dg-row p { font-family: 'Lato', sans-serif; font-size: 0.875rem; color: #4A5868; line-height: 1.6; margin: 0; }
.dg-lower { grid-area: lower; margin-top: 0; padding: 0 3.5rem 3.5rem; display: flex; flex-direction: column; justify-content: flex-end; }
.dg-plan-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.75rem; background: var(--helm-btn, #5688D7); color: white !important; font-family: 'Lato', sans-serif; font-size: 0.9375rem; font-weight: 700; text-decoration: none !important; border-radius: 6px; border: 2px solid var(--helm-btn, #5688D7); transition: all 0.25s; width: fit-content; letter-spacing: 0.3px; }
.dg-plan-btn:hover { background: var(--helm-btn-hover, #4070BE); color: white !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.dg-map-link { display: inline-flex; align-items: center; gap: 0.3rem; margin-left: 0.6rem; font-size: 0.75rem; font-weight: 700; color: var(--helm-btn, #5688D7); text-decoration: none; border: 1px solid var(--helm-btn, #5688D7); border-radius: 4px; padding: 0.1rem 0.5rem; white-space: nowrap; transition: background 0.2s, color 0.2s; vertical-align: middle; }
.dg-map-link:hover { background: var(--helm-btn, #5688D7); color: #fff; }
.dg-photos { grid-area: photos; background: #F4F6F8; padding: 1.25rem; display: flex; align-items: center; }
.dg-gallery-inner { display: flex; flex-direction: column; gap: 0.45rem; width: 100%; }
.dg-photo-cell { width: 100%; height: 200px; border-radius: 8px; overflow: hidden; box-shadow: 0 3px 14px rgba(0,0,0,0.11); flex-shrink: 0; }
.dg-photo-cell img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.5s ease; }
.dg-photo-cell:hover img { transform: scale(1.03); }
.dg-photo-cell .myh-placeholder { height: 100%; border-radius: 0; border: none; }
.dg-cta-section { background: #fff; border-top: 1px solid #E8E9EB; padding: 5rem 2rem; text-align: center; }
.dg-cta-inner { max-width: 680px; margin: 0 auto; }
.dg-cta-inner h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2.25rem; font-weight: 800; color: #1A202C; margin-bottom: 1rem; }
.dg-cta-inner p  { font-family: 'Lato', sans-serif; font-size: 1.1rem; color: #5A6C7D; line-height: 1.75; margin-bottom: 2.5rem; }
.dg-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.dg-cta-primary { padding: 14px 40px; background: var(--helm-btn, #5688D7); color: white !important; border-radius: 6px; font-family: 'Lato', sans-serif; font-size: 1rem; font-weight: 700; border: 2px solid var(--helm-btn, #5688D7); transition: all 0.25s; }
.dg-cta-primary:hover { background: var(--helm-btn-hover, #4070BE); color: white !important; transform: translateY(-2px); }
.dg-cta-secondary { padding: 14px 40px; background: transparent; color: var(--helm-btn, #5688D7) !important; border-radius: 6px; font-family: 'Lato', sans-serif; font-size: 1rem; font-weight: 700; border: 2px solid var(--helm-btn, #5688D7); transition: all 0.25s; text-decoration: none; display: inline-block; }
.dg-cta-secondary:hover { background: var(--helm-btn, #5688D7); color: white !important; transform: translateY(-2px); }

.ab-page { background: #F8F9FA; }
.ab-eyebrow { display: block; font-family: 'Lato', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--helm-btn, #5688D7); margin-bottom: 0.8rem; }
.ab-rule { width: 38px; height: 3px; background: linear-gradient(90deg, var(--helm-primary,#5688D7), var(--helm-btn,#4070BE)); border-radius: 2px; margin: 1rem 0 1.75rem; }
.ab-container { max-width: 1180px; margin: 0 auto; padding: 0 2.5rem; }
.ab-section { padding: 5.5rem 0; }
.ab-section:nth-child(odd)  { background: #fff; }
.ab-section:nth-child(even) { background: #F8F9FA; }
.ab-anim { opacity: 0; transform: translateY(32px); transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1); }
.ab-anim-delay-1 { transition-delay: 0.12s; }
.ab-anim-delay-2 { transition-delay: 0.22s; }
.ab-anim-delay-3 { transition-delay: 0.32s; }
.ab-vis { opacity: 1 !important; transform: translateY(0) !important; }
.ab-hero-img-section { background: #1C2D3E; overflow: hidden; line-height: 0; }
.ab-hero-img-wrap { position: relative; width: 100%; aspect-ratio: 16/6; overflow: hidden; }
.ab-hero-img { width: 100%; height: 110%; object-fit: cover; object-position: center 40%; display: block; will-change: transform; }
.ab-hero-img-wrap .myh-placeholder { height: 100%; position: absolute; inset: 0; }
.ab-hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 55%, rgba(15,32,56,0.55) 100%); display: flex; align-items: flex-end; padding: 2rem 3rem; }
.ab-hero-caption { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.72); font-family: 'Lato', sans-serif; font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; }
.ab-hero-caption-line { display: block; width: 30px; height: 1px; background: rgba(255,255,255,0.45); }
.ab-who { background: #fff; }
.ab-who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; justify-content: center; }
.ab-who-img { position: relative; border-radius: 14px; overflow: hidden; height: 320px; margin-top: 1.5rem; }
.ab-who-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ab-who-img-placeholder { position: absolute; inset: 0; background: linear-gradient(135deg, #e8ecef, #d0d8e4); display: flex; align-items: center; justify-content: center; color: #6F767E; font-size: 0.8rem; font-family: 'Lato', sans-serif; text-align: center; padding: 1rem; }
.ab-who-left h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2rem; font-weight: 800; color: #1A202C; line-height: 1.22; margin: 0; }
.ab-who-right .ab-lead { font-family: 'Lato', sans-serif; font-size: 1.1rem; font-weight: 500; color: #1A2332; line-height: 1.75; margin: 0 0 1.2rem; }
.ab-who-right p { font-family: 'Lato', sans-serif; font-size: 0.95rem; color: #4A5568; line-height: 1.88; margin: 0 0 1rem; }
.ab-approach { background: #F8F9FA; }
.ab-split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; justify-content: center; }
.ab-split-text h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.85rem; font-weight: 800; color: #1A202C; line-height: 1.22; margin: 0; }
.ab-split-text p { font-family: 'Lato', sans-serif; font-size: 0.95rem; color: #4A5568; line-height: 1.88; margin: 0 0 1rem; }
.ab-split-img { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 16px 60px rgba(10,77,140,0.12); }
.ab-split-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s ease; }
.ab-split-img:hover img { transform: scale(1.04); }
.ab-split-img .myh-placeholder { height: 100%; position: absolute; inset: 0; }
.ab-img-tag { display: none !important; } 
.ab-commitments { background: #fff; }
.ab-commit-header { margin-bottom: 3.5rem; }
.ab-commit-header h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.85rem; font-weight: 800; color: #1A202C; margin: 0 0 0.75rem; }
.ab-commit-sub { font-family: 'Lato', sans-serif; font-size: 0.975rem; color: #5A6C7D; line-height: 1.75; max-width: 580px; margin: 0; }
.ab-commit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.ab-commit-card { padding: 2rem 1.75rem; border: 1.5px solid #E4E9F0; border-radius: 12px; background: #fff; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; }
.ab-commit-card:hover { border-color: var(--helm-btn, #5688D7); box-shadow: 0 8px 32px rgba(86,136,215,0.1); transform: translateY(-4px); }
.ab-commit-num { font-family: 'Lato', sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; color: var(--helm-btn, #5688D7); margin-bottom: 1.1rem; }
.ab-commit-card h3 { font-family: 'Lato', sans-serif; font-size: 0.975rem; font-weight: 700; color: #1A202C; margin: 0 0 0.85rem; line-height: 1.4; }
.ab-commit-card p { font-family: 'Lato', sans-serif; font-size: 0.875rem; color: #4A5568; line-height: 1.82; margin: 0; }
.ab-img-break { position: relative; overflow: hidden; }
.ab-img-break-wrap { position: relative; aspect-ratio: 16/6; overflow: hidden; }
.ab-img-break-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; object-position: center 60%; filter: brightness(0.55); }
.ab-img-break-wrap .myh-placeholder { height: 100%; position: absolute; inset: 0; }
.ab-img-break-text { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 2rem 4rem; }
.ab-img-break-text p { max-width: 780px; text-align: center; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.3rem; font-weight: 500; color: white; line-height: 1.7; font-style: italic; margin: 0; }
.ab-why { background: #F8F9FA; }
.ab-why-header { margin-bottom: 3rem; }
.ab-why-header h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.85rem; font-weight: 800; color: #1A202C; margin: 0; }
.ab-why-list { display: flex; flex-direction: column; border: 1.5px solid #E4E9F0; border-radius: 12px; overflow: hidden; background: #fff; }
.ab-why-item { display: grid; grid-template-columns: 220px 1fr; border-bottom: 1.5px solid #E4E9F0; transition: background 0.2s; }
.ab-why-item:last-child { border-bottom: none; }
.ab-why-item:hover { background: #FAFBFE; }
.ab-why-label { padding: 2rem 2.25rem; font-family: 'Lato', sans-serif; font-size: 0.85rem; font-weight: 800; color: var(--helm-btn, #5688D7); text-transform: uppercase; letter-spacing: 0.8px; border-right: 1.5px solid #E4E9F0; display: flex; align-items: center; background: #F5F8FD; }
.ab-why-text  { padding: 2rem 2.25rem; font-family: 'Lato', sans-serif; font-size: 0.925rem; color: #4A5568; line-height: 1.85; display: flex; align-items: center; }
.ab-cta { background: #fff; border-top: 1.5px solid #E4E9F0; padding: 5.5rem 2rem; text-align: center; }
.ab-cta-inner { max-width: 600px; margin: 0 auto; }
.ab-cta-inner h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2rem; font-weight: 800; color: #1A202C; margin: 0 0 1rem; line-height: 1.2; }
.ab-cta-inner p { font-family: 'Lato', sans-serif; font-size: 1rem; color: #5A6C7D; line-height: 1.8; margin: 0 0 2.5rem; }
.ab-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.ab-btn-primary { padding: 14px 40px; background: var(--helm-btn,#5688D7); color: white !important; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 1rem; border-radius: 6px; transition: all 0.2s; }
.ab-btn-primary:hover { background: var(--helm-btn-hover,#083D70); transform: translateY(-2px); }
.ab-btn-secondary { padding: 14px 40px; background: transparent; color: var(--helm-btn,#5688D7) !important; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 1rem; border-radius: 6px; border: 2px solid var(--helm-btn,#5688D7); transition: all 0.2s; }
.ab-btn-secondary:hover { background: var(--helm-btn,#5688D7); color: white !important; transform: translateY(-2px); }

.ct-info-bar { background: #fff; border-bottom: 1px solid #E8E9EB; padding: 1rem 2rem; }
.ct-info-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.ct-info-item { display: flex; align-items: center; gap: 0.5rem; font-family: 'Lato', sans-serif; font-size: 0.875rem; font-weight: 600; color: #1A202C; }
.ct-info-item svg { color: var(--helm-btn, #5688D7); flex-shrink: 0; }
.ct-info-sep { width: 1px; height: 24px; background: #E8E9EB; }
.ct-main { background: #F8F9FA; padding: 3rem 2rem 5rem; overflow: visible !important; }
.ct-container { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 3rem; align-items: stretch; }
.ct-form-card { background: #fff; border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,0.07); padding: 3rem; max-width: 760px; width: 100%; margin: 0 auto; overflow: visible !important; }
.ct-form-header { margin-bottom: 2.25rem; }
.ct-form-header h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.75rem; font-weight: 800; color: #1A202C; margin-bottom: 0.4rem; }
.ct-form-header p { font-family: 'Lato', sans-serif; font-size: 0.9rem; color: #6F767E; line-height: 1.6; }
.ct-form { display: flex; flex-direction: column; gap: 1.5rem; overflow: visible !important; }
.ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.ct-field { display: flex; flex-direction: column; gap: 0.45rem; }
.ct-field label { font-family: 'Lato', sans-serif; font-size: 0.82rem; font-weight: 700; color: #1A202C; text-transform: uppercase; letter-spacing: 0.6px; }
.ct-req { color: var(--helm-btn, #5688D7); }
.ct-field input,
.ct-field textarea { font-family: 'Lato', sans-serif; padding: 0.875rem 1rem; border: 1.5px solid #E0E4EA; border-radius: 8px; font-size: 0.95rem; color: #1A202C; background: #fff; transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.ct-field input:focus,
.ct-field textarea:focus { border-color: var(--helm-btn, #5688D7); box-shadow: 0 0 0 3px rgba(var(--helm-btn-rgb,86,136,215),0.12); }
.ct-field textarea { resize: vertical; line-height: 1.7; }
.ct-submit-btn { -webkit-appearance: none !important; -moz-appearance: none !important; appearance: none !important; filter: none !important; box-shadow: none !important; display: flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 1rem 2rem; width: 100%; margin-top: 0.5rem; background: var(--helm-btn, #5688D7) !important; background-image: none !important; color: white !important; border: none !important; border-radius: 8px; font-family: 'Lato', sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; }
.ct-submit-btn:hover { background: var(--helm-btn-hover, #4070BE) !important; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(86,136,215,0.3) !important; }
.ct-faq-card { background: #fff; border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,0.07); padding: 3rem; }
.ct-faq-header { margin-bottom: 2rem; }
.ct-faq-header h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.75rem; font-weight: 800; color: #1A202C; margin-bottom: 0.4rem; }
.ct-faq-header p { font-family: 'Lato', sans-serif; font-size: 0.9rem; color: #6F767E; }
.ct-faq-list { display: flex; flex-direction: column; }
.ct-faq-item { border-bottom: 1px solid #F1F3F4; }
.ct-faq-item:last-child { border-bottom: none; }
.ct-faq-btn { -webkit-appearance: none !important; -moz-appearance: none !important; appearance: none !important; filter: none !important; box-shadow: none !important; width: 100% !important; display: flex !important; justify-content: space-between !important; align-items: center !important; gap: 1rem !important; padding: 1.1rem 0 !important; background: transparent !important; background-image: none !important; border: none !important; cursor: pointer !important; text-align: left !important; outline: none !important; }
.ct-faq-btn span { font-family: 'Lato', sans-serif; font-size: 0.9rem; font-weight: 600; color: #1A202C; line-height: 1.5; }
.ct-faq-icon { color: var(--helm-btn, #5688D7); flex-shrink: 0; transition: transform 0.25s ease; }
.ct-faq-item.open .ct-faq-icon { transform: rotate(180deg); }

.ct-faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.ct-faq-item.open .ct-faq-body { max-height: none; }
.ct-faq-body p { font-family: 'Lato', sans-serif; font-size: 0.875rem; color: #5A6C7D; line-height: 1.75; padding-bottom: 1rem; margin: 0; }
.cdd-wrap { position: relative; user-select: none; overflow: visible !important; pointer-events: all !important; }
.cdd-selected { display: flex !important; align-items: center !important; justify-content: space-between !important; padding: 0.875rem 1rem !important; border: 1.5px solid #E0E4EA !important; border-radius: 8px !important; background: #fff !important; cursor: pointer !important; font-family: 'Lato', sans-serif !important; font-size: 0.95rem !important; color: #1A202C !important; transition: border-color 0.2s !important; box-sizing: border-box !important; min-height: 50px !important; pointer-events: all !important; position: relative !important; z-index: 1 !important; }
.cdd-selected:hover,
.cdd-wrap.cdd-open .cdd-selected { border-color: var(--helm-btn, #5688D7) !important; box-shadow: 0 0 0 3px rgba(86,136,215,0.12) !important; }
.cdd-selected svg { flex-shrink: 0 !important; color: var(--helm-btn, #5688D7) !important; transition: transform 0.2s !important; margin-left: 0.5rem !important; }
.cdd-wrap.cdd-open .cdd-selected svg { transform: rotate(180deg) !important; }
.cdd-text { font-family: 'Lato', sans-serif !important; color: #1A202C !important; font-size: 0.95rem !important; font-weight: 400 !important; flex: 1 !important; }
.cdd-list { display: none !important; position: absolute !important; top: calc(100% + 4px) !important; left: 0 !important; right: 0 !important; background: #fff !important; border: 1.5px solid #5688D7 !important; border-radius: 8px !important; box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important; z-index: 99999 !important; max-height: 260px !important; overflow-y: auto !important; pointer-events: all !important; }
.cdd-wrap.cdd-open .cdd-list { display: block !important; }
.cdd-option { padding: 0.75rem 1rem !important; font-family: 'Lato', sans-serif !important; font-size: 0.95rem !important; color: #1A202C !important; cursor: pointer !important; border-bottom: 1px solid #F1F3F4 !important; background: #fff !important; transition: background 0.15s !important; pointer-events: all !important; }
.cdd-option:last-child { border-bottom: none !important; }
.cdd-option:hover { background: #F0F5FF !important; color: var(--helm-primary,#5688D7) !important; }
.cdd-option.cdd-active { background: #EEF3FF !important; color: var(--helm-primary,#5688D7) !important; font-weight: 600 !important; }

.footer { background: var(--helm-footer, #6b7d8d) !important; color: var(--helm-footer-text, #FFFFFF); padding: 0.75rem 0 0 !important; width: 100%; margin: 0; }
.footer-desc-row { max-width: 1400px; margin: 0 auto; padding: 0 2rem 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.1); }
.footer-desc-inner h3 { font-family: 'Lato', sans-serif; color: var(--helm-footer-text, #FFFFFF) !important; font-size: 1.15rem; font-weight: 700; margin: 0 0 0.5rem; }
.footer-desc-inner p  { font-family: 'Lato', sans-serif; color: var(--helm-footer-text, #FFFFFF) !important; font-size: 0.95rem; line-height: 1.6; margin: 0 0 0.3rem; }

.footer--compact { padding: 0.2rem 0 0 !important; }
.footer-content { max-width: 1400px; margin: 0 auto; padding: 1.4rem 2rem 0.3rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 1.75rem; align-items: start; }
.footer-content--4col { grid-template-columns: 2fr 1fr 1fr 1fr; }
.footer-section h3 { font-family: 'Lato', sans-serif; color: var(--helm-footer-text, #FFFFFF) !important; font-size: 0.95rem; font-weight: 700; margin: 0 0 0.45rem; padding-bottom: 0.25rem; border-bottom: 1px solid rgba(0,0,0,0.1); }
.footer-section p  { font-family: 'Lato', sans-serif; color: var(--helm-footer-text, #FFFFFF) !important; font-size: 0.88rem; line-height: 1.55; margin: 0 0 0.3rem; }
.footer-section p + p { margin-top: 0.5rem; }
.footer-contact-link { color: var(--helm-footer-text, #FFFFFF) !important; text-decoration: none !important; transition: color 0.2s; }
.footer-contact-link:hover { color: #000 !important; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.18rem; }
.footer-links li { list-style: none; }
.footer-links a { font-family: 'Lato', sans-serif; color: var(--helm-footer-text, #FFFFFF) !important; font-size: 0.88rem; font-weight: 500; text-decoration: none !important; position: relative; display: inline-block; width: fit-content; padding-bottom: 2px; transition: color 0.2s; }
.footer-links a::after { content: '' !important; position: absolute !important; bottom: 0 !important; left: 0 !important; width: 0 !important; height: 2px !important; background: #000000 !important; transition: width 0.25s ease !important; display: block !important; }
.footer-links a:hover { color: #000000 !important; }
.footer-links a:hover::after { width: 100% !important; }

.footer-social-list { gap: 0.45rem !important; }
.footer-social-link { display: flex !important; align-items: center; gap: 0.5rem; color: var(--helm-footer-text, #FFFFFF) !important; text-decoration: none !important; font-size: 0.88rem; font-weight: 500; transition: color 0.2s, transform 0.2s; }
.footer-social-link:hover { color: #000 !important; transform: translateX(3px); }
.footer-social-link::after { display: none !important; }
.footer-social-icon { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; background: rgba(0,0,0,0.07); border-radius: 50%; flex-shrink: 0; transition: background 0.2s; }
.footer-social-link:hover .footer-social-icon { background: rgba(0,0,0,0.14); }

.footer-bottom--clean { text-align: center; padding: 0.4rem 2rem; border-top: 1px solid rgba(0,0,0,0.13); }
.footer-bottom--clean p { font-family: 'Lato', sans-serif; color: var(--helm-footer-text, #FFFFFF) !important; font-size: 0.83rem; margin: 0; }

@media (max-width: 1200px) {
    .yacht-grid-pro { grid-template-columns: repeat(2, 1fr); }
    .advanced-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-commit-grid { grid-template-columns: repeat(2, 1fr); }
    .dg-block { grid-template-columns: 1fr; grid-template-areas: "info" "photos" "lower"; }
    .dg-block-flip { grid-template-columns: 1fr; grid-template-areas: "info" "photos" "lower"; }
    .dg-block-flip .dg-photos { order: 0; }
    .dg-photos { min-height: 340px; grid-area: photos; }
    .dg-gallery-inner { flex-direction: row; flex-wrap: wrap; }
    .dg-photo-cell { width: calc(50% - 0.25rem); height: 160px; }
}

@media (max-width: 1024px) {
    .hero h1, .hero-content h1 { font-size: 2.5rem; }
    .search-form { grid-template-columns: repeat(2, 1fr); }
    .categories { grid-template-columns: repeat(2, 1fr); }
    .features { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .footer-content--4col { grid-template-columns: repeat(2, 1fr); }
    .yacht-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-who-grid { grid-template-columns: 1fr; gap: 2rem; }
    .ab-split-grid { grid-template-columns: 1fr; gap: 3rem; }
    .ab-commit-grid { grid-template-columns: repeat(2, 1fr); }
    .hv-filter-grid { grid-template-columns: repeat(3, 1fr); }

    
    .hv-svc-3col { gap: 1.5rem; }
    .hv-mgmt-subs { grid-template-columns: repeat(2,1fr); }
    .hv-cards-grid { grid-template-columns: repeat(2,1fr); }
    .hv-why-inner { grid-template-columns: 1fr; gap: 3rem; }
    .hv-why-photo-sm { display: none; }
    .hv-why-right { display: none; }
    .hv-why-photo-mobile { display: block; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed; top: 60px; left: -100%;
        width: 280px; height: calc(100vh - 60px);
        background: var(--helm-primary, #6b7d8d); flex-direction: column;
        padding: 2rem; gap: 1.5rem;
        transition: left 0.3s; z-index: 999;
        box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    }
    .nav-menu.active { left: 0; }
    .nav-menu a, .nav-menu li a { color: var(--helm-nav-link, #FFFFFF) !important; }
    .nav-menu a:hover, .nav-menu li a:hover { color: var(--helm-nav-hover, #C9A96E) !important; }
    .nav-menu a.active, .nav-menu li a.active { color: var(--helm-nav-active, #C9A96E) !important; }
    .mobile-toggle { display: flex; }
    .cta-button { display: none !important; }

    .hero { padding-top: 80px !important; padding-bottom: 3rem !important; }
    .hero h1, .hero-content h1 { font-size: 2rem; }
    .hero p, .hero-content > p { font-size: 1rem; }
    .search-box { padding: 1.5rem; }
    .search-form { grid-template-columns: 1fr; }
    .section { padding: 3rem 0; }
    .section-header h2 { font-size: 1.875rem; }
    .categories { grid-template-columns: 1fr; gap: 2rem; }
    .yacht-grid { grid-template-columns: 1fr; }
    .features { grid-template-columns: 1fr; gap: 2rem; }
    .steps { grid-template-columns: 1fr; gap: 2rem; }
    .video-section { height: 50vh; min-height: 350px; }
    .video-overlay h2 { font-size: 2rem; }
    .video-overlay p { font-size: 1rem; }
    .footer-content { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .footer-content--4col { grid-template-columns: repeat(2, 1fr); }

    .filter-pro-grid-single { flex-direction: column; }
    .filter-pro-item { width: 100%; }
    .yacht-grid-pro { grid-template-columns: 1fr; }
    .advanced-grid { grid-template-columns: 1fr; }
    .controls-left { flex-direction: column; align-items: stretch; gap: 1rem; }
    .page-title-heading { font-size: 1.6rem; }
    .page-title-block { padding: 1.75rem 0 1.25rem; }
    .page-header-content h1 { font-size: 2rem; }
    .page-header-content p { font-size: 1rem; }

    .dg-block { grid-template-columns: 1fr; grid-template-areas: "info" "photos" "lower"; }
    .dg-block-flip { grid-template-columns: 1fr; grid-template-areas: "info" "photos" "lower"; }
    .dg-block-flip .dg-photos { order: 0; }
    .dg-info { padding: 2rem 1.5rem 1rem; }
    .dg-lower { padding: 0 1.5rem 2rem; }
    .dg-name { font-size: 1.75rem; }
    .dg-gallery-inner { flex-direction: row; flex-wrap: wrap; }
    .dg-photo-cell { width: calc(50% - 0.25rem); height: 140px; }

    .ab-who-grid { grid-template-columns: 1fr; gap: 2rem; }
    .ab-split-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .ab-commit-grid { grid-template-columns: 1fr; }
    .ab-why-item { grid-template-columns: 1fr; }
    .ab-why-label { border-right: none; border-bottom: 1.5px solid #E4E9F0; padding: 1.25rem 1.5rem; }
    .ab-why-text  { padding: 1.25rem 1.5rem; }
    .ab-cta-btns { flex-direction: column; align-items: center; }
    .ab-container { padding: 0 1.25rem; }
    .ab-section { padding: 3.5rem 0; }
    .ab-img-break-text { padding: 1.5rem; }
    .ab-img-break-text p { font-size: 1rem; }

    .ct-main { padding: 2rem 1rem 3rem; }
    .ct-form-card, .ct-faq-card { padding: 2rem 1.5rem; }
    .ct-row { grid-template-columns: 1fr; }
    .ct-info-inner { gap: 1rem; }
    .ct-info-sep { display: none; }

    .modal-specs-grid { grid-template-columns: repeat(2, 1fr); }
    .modal-amenities-grid, .modal-toys-grid { grid-template-columns: repeat(2, 1fr); }
    .modal-tech-grid { grid-template-columns: 1fr; }
    .modal-body { padding: 1.5rem; }
    .modal-gallery-wrapper { height: 300px; }
    
    .yacht-footer, .yacht-footer-pro { flex-wrap: wrap; gap: 0.5rem; }

    .hv-filter-grid { grid-template-columns: 1fr; }
    .dg-stats-inner { gap: 1.5rem; }
    .dg-stat-sep { display: none; }

    
    .hv-svc-3col { grid-template-columns: 1fr; }
    .hv-cards-grid { grid-template-columns: 1fr; }
    .hv-mgmt-subs { grid-template-columns: 1fr; }
    .hv-msub { border-right: none; border-bottom: 1px solid #E8E9EB; }
    .hv-dslide { width: 280px; }
    .hv-sec-row-head { flex-direction: column; align-items: flex-start; }
    .hv-dest-head { flex-direction: column; align-items: flex-start; }
    .hv-cvid { height: 360px; }
    .hv-why-inner { grid-template-columns: 1fr; gap: 3rem; }
    .hv-why-photo-sm { display: none; }
    .hv-why-right { display: none; }
    .hv-why-photo-mobile { display: block; }
}

@media (max-width: 480px) {
    .dg-photo-cell { width: 100%; }
    .popup-card-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 10px; }
    .popup-title { font-size: 1.45rem; }
    .popup-price { font-size: 1.3rem; }
    
    .modal-header { flex-direction: column; align-items: flex-start; }
    
    .modal-specs-grid { grid-template-columns: 1fr; }
    
    .yacht-footer, .yacht-footer-pro { flex-wrap: wrap; gap: 0.5rem; }
}

@media (min-width: 481px) and (max-width: 767px) {
    
    .nav-menu {
        position: fixed; top: 60px; left: -100%;
        width: 280px; height: calc(100dvh - 60px);
        background: var(--helm-primary, #6b7d8d); flex-direction: column;
        padding: 2rem; gap: 1.5rem;
        transition: left 0.3s; z-index: 999;
        box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    }
    .nav-menu.active { left: 0; }
    .nav-menu a, .nav-menu li a { color: var(--helm-nav-link, #FFFFFF) !important; }
    .nav-menu a:hover, .nav-menu li a:hover { color: var(--helm-nav-hover, #C9A96E) !important; }
    .nav-menu a.active, .nav-menu li a.active { color: var(--helm-nav-active, #C9A96E) !important; }
    .mobile-toggle { display: flex; }
    .cta-button { display: none !important; }

    
    .hero h1, .hero-content h1 { font-size: 2rem; }
    .hero p, .hero-content > p  { font-size: 1rem; }
    .section { padding: 3rem 0; }

    
    .yacht-grid-pro    { grid-template-columns: repeat(2, 1fr); }
    .advanced-grid     { grid-template-columns: repeat(2, 1fr); }
    .yacht-grid        { grid-template-columns: repeat(2, 1fr); }
    .search-form       { grid-template-columns: 1fr 1fr; }
    .features          { grid-template-columns: repeat(2, 1fr); }
    .categories        { grid-template-columns: repeat(2, 1fr); }
    .ab-commit-grid    { grid-template-columns: repeat(2, 1fr); }

    
    .footer-content { grid-template-columns: 1fr; gap: 1.25rem; }
    .footer-content--4col { grid-template-columns: 1fr; }
    .footer-social-list { flex-direction: row !important; flex-wrap: wrap; gap: 0.75rem !important; }
    .footer-social-link { gap: 0.4rem; }

    
    .filter-pro-item { width: calc(50% - 0.4rem); }

    
    .modal-specs-grid     { grid-template-columns: repeat(2, 1fr); }
    .modal-body           { padding: 1.5rem; }
    .modal-gallery-wrapper { height: 260px; }

    
    .hv-svc-3col    { grid-template-columns: repeat(2, 1fr); }
    .hv-cards-grid  { grid-template-columns: repeat(2, 1fr); }
    .hv-mgmt-subs   { grid-template-columns: repeat(2, 1fr); }
    .hv-why-inner   { grid-template-columns: 1fr; }
    .hv-why-photo-sm { display: none; }
    .hv-why-right { display: none; }
    .hv-why-photo-mobile { display: block; }

    
    .page-title-heading { font-size: 1.6rem; }
    .page-header-content h1 { font-size: 2rem; }

    
    .ab-split-grid  { grid-template-columns: 1fr; }
    .ab-who-grid    { grid-template-columns: 1fr; }
    .ab-commit-grid { grid-template-columns: repeat(2, 1fr); }

    
    .ct-row { grid-template-columns: 1fr; }

    
    .yacht-grid-pro.one-col .yacht-footer,
    .yacht-footer-pro { flex-wrap: wrap; gap: 0.5rem; }
}

.legal-meta-bar {
    background: #F4F6F9;
    border-top: 1px solid #E5E9EF;
    border-bottom: 1px solid #E5E9EF;
    padding: 0.75rem 2rem;
}
.legal-meta-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
}
.legal-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.8125rem;
    color: #6F767E;
    font-weight: 400;
}
.legal-meta-item svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.legal-page-wrap {
    background: #fff;
    padding: 3rem 2rem 5rem;
}
.legal-container {
    max-width: 860px;
    margin: 0 auto;
}

.legal-toc {
    background: #F8F9FC;
    border: 1px solid #E8ECF2;
    border-radius: 4px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 3rem;
}
.legal-toc-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--helm-primary,#5688D7);
    margin: 0 0 0.875rem;
}
.legal-toc-list {
    margin: 0;
    padding-left: 1.25rem;
    columns: 2;
    column-gap: 2rem;
}
.legal-toc-list li {
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    color: #4A5568;
    margin-bottom: 0.35rem;
    break-inside: avoid;
}
.legal-toc-list a {
    color: #4A5568;
    text-decoration: none;
    transition: color 0.2s;
}
.legal-toc-list a:hover {
    color: var(--helm-primary,#5688D7);
}

.legal-intro-block {
    background: #F8F9FC;
    border: 1px solid #E8ECF2;
    border-radius: 4px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 2.5rem;
}
.legal-intro-block p {
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #2C3E50;
    margin: 0 0 0.75rem;
}
.legal-intro-block p:last-child { margin-bottom: 0; }

.legal-section {
    margin-bottom: 2.75rem;
    padding-bottom: 2.75rem;
    border-bottom: 1px solid #EAEEF4;
}
.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.625rem;
    font-weight: 700;
    color: #1A202C;
    margin: 0 0 1rem;
    line-height: 1.25;
    scroll-margin-top: 90px;
}
.legal-h3 {
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--helm-primary,#5688D7);
    margin: 1.5rem 0 0.625rem;
    letter-spacing: 0.01em;
}

.legal-section p {
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.85;
    color: #3A4555;
    margin: 0 0 1rem;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a {
    color: var(--helm-primary,#5688D7);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}
.legal-section a:hover { color: #1A202C; }

.legal-list {
    margin: 0.5rem 0 1rem 0;
    padding-left: 0;
    list-style: none;
}
.legal-list li {
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #3A4555;
    padding: 0.3rem 0 0.3rem 1.5rem;
    position: relative;
    border-bottom: 1px solid #F2F4F8;
}
.legal-list li:last-child { border-bottom: none; }
.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 5px;
    height: 5px;
    background: var(--helm-primary,#5688D7);
    border-radius: 50%;
    opacity: 0.6;
}

.legal-contact-block {
    background: #F4F7FB;
    border: 1px solid #E0E8F0;
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
    margin: 1rem 0 1.25rem;
}
.legal-contact-block p {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #3A4555;
    margin: 0 0 0.3rem !important;
}
.legal-contact-block p:last-child { margin-bottom: 0 !important; }
.legal-contact-block a {
    color: var(--helm-primary,#5688D7);
    text-decoration: none;
}
.legal-contact-block a:hover { text-decoration: underline; }

.legal-footnote {
    font-size: 0.8125rem !important;
    color: #8A95A3 !important;
    font-style: italic;
    margin-top: 1.5rem !important;
}

@media (max-width: 768px) {
    .legal-toc-list { columns: 1; }
    .legal-meta-inner { gap: 0.75rem; }
    .legal-h2 { font-size: 1.375rem; }
    .legal-page-wrap { padding: 2rem 1.25rem 3rem; }
}
@media (max-width: 480px) {
    .legal-toc { padding: 1.25rem; }
    .legal-intro-block { padding: 1.25rem; }
    .legal-meta-bar { padding: 0.75rem 1.25rem; }
}

/* ══════════════════════════════════════════════
   MVD — Professional View Details Modal
══════════════════════════════════════════════ */

/* Hero section */
.mvd-hero { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: 1.5rem 1.75rem 0; flex-wrap: wrap; }
.mvd-hero-left { flex: 1; min-width: 0; }
.mvd-badge { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; background: #E8F5E9; color: #2E7D32; margin-bottom: .5rem; }
.mvd-badge-pkg { background: #EDE7F6; color: #6A1B9A; }
.mvd-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.75rem; font-weight: 800; color: #0A1828; margin: 0 0 .25rem; line-height: 1.2; }
.mvd-subtitle { font-family: 'Lato', sans-serif; font-size: .875rem; color: #6B7C8D; margin: 0 0 .5rem; }
.mvd-location { display: flex; align-items: center; gap: 5px; font-family: 'Lato', sans-serif; font-size: .82rem; color: #5A6C7D; }
.mvd-price-block { text-align: right; flex-shrink: 0; }
.mvd-price { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.75rem; font-weight: 800; color: var(--helm-primary, #5688D7); line-height: 1; }
.mvd-price-period { font-family: 'Lato', sans-serif; font-size: .75rem; color: #8A9299; margin-top: 3px; text-transform: uppercase; letter-spacing: .5px; }

/* Stats bar */
.mvd-stats-bar { display: flex; align-items: center; gap: 0; background: #F5F7FA; border-top: 1px solid #E8EBF0; border-bottom: 1px solid #E8EBF0; margin: 1rem 0 0; padding: .75rem 1.75rem; flex-wrap: wrap; }
.mvd-stat { display: flex; flex-direction: column; align-items: center; flex: 1; min-width: 60px; padding: .25rem .5rem; }
.mvd-stat-val { font-family: 'Lato', sans-serif; font-size: 1rem; font-weight: 800; color: #0A1828; line-height: 1.2; }
.mvd-stat-lbl { font-family: 'Lato', sans-serif; font-size: .68rem; color: #8A9299; text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }
.mvd-stat-div { width: 1px; height: 32px; background: #DDE1E7; flex-shrink: 0; }

/* Unit toggle */
.mvd-unit-toggle { display: flex; align-items: center; gap: 6px; padding: .625rem 1.75rem 0; }
.mvd-unit-label { font-family: 'Lato', sans-serif; font-size: .78rem; color: #8A9299; }
.mvd-unit-btn { font-family: 'Lato', sans-serif; font-size: .75rem; font-weight: 600; padding: 3px 10px; border-radius: 4px; border: 1px solid #D1D9E0; background: white; color: #5A6C7D; cursor: pointer; transition: all .15s; }
.mvd-unit-btn.active { background: var(--helm-primary, #5688D7); color: white; border-color: var(--helm-primary, #5688D7); }

/* Sections */
.mvd-section { padding: 1.25rem 1.75rem 0; }
.mvd-section-title { font-family: 'Lato', sans-serif; font-size: .7rem; font-weight: 800; color: #8A9299; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 .875rem; padding-bottom: .5rem; border-bottom: 1px solid #EEF0F3; }
.mvd-description { font-family: 'Lato', sans-serif; font-size: .9rem; color: #374151; line-height: 1.75; margin: 0; }

/* Spec table */
.mvd-spec-table { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.mvd-spec-row { display: flex; justify-content: space-between; align-items: center; padding: .5rem 0; border-bottom: 1px solid #F3F4F6; }
.mvd-spec-row:last-child { border-bottom: none; }
.mvd-spec-label { font-family: 'Lato', sans-serif; font-size: .8rem; color: #6B7C8D; }
.mvd-spec-val { font-family: 'Lato', sans-serif; font-size: .8rem; font-weight: 700; color: #1A2332; }
.mvd-spec-table .mvd-spec-row { padding-right: 1rem; }
.mvd-spec-table > div:nth-child(even) .mvd-spec-row { padding-right: 0; padding-left: 1rem; border-left: 1px solid #F3F4F6; }

/* Checklist */
.mvd-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: .375rem; }
.mvd-check-item { display: flex; align-items: center; gap: 8px; font-family: 'Lato', sans-serif; font-size: .82rem; color: #374151; }
.mvd-check-item svg { flex-shrink: 0; color: var(--helm-primary, #5688D7); }

/* Itinerary */
.mvd-itinerary { display: flex; flex-direction: column; gap: .75rem; }
.mvd-itin-day { display: flex; gap: 1rem; align-items: flex-start; }
.mvd-itin-num { font-family: 'Lato', sans-serif; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: white; background: var(--helm-primary, #5688D7); padding: 4px 8px; border-radius: 4px; white-space: nowrap; flex-shrink: 0; }
.mvd-itin-body { flex: 1; }
.mvd-itin-title { font-family: 'Lato', sans-serif; font-size: .85rem; font-weight: 700; color: #1A2332; display: block; }
.mvd-itin-desc { font-family: 'Lato', sans-serif; font-size: .8rem; color: #6B7C8D; margin: .25rem 0 0; line-height: 1.5; }

/* Yacht card inside package modal */
.mvd-yacht-card { background: #F5F7FA; border-radius: 8px; padding: 1rem 1.25rem; }
.mvd-yacht-specs { }
.mvd-ys-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.1rem; font-weight: 800; color: #0A1828; margin-bottom: .625rem; display: flex; align-items: center; gap: 8px; }
.mvd-ys-type { font-family: 'Lato', sans-serif; font-size: .72rem; font-weight: 600; background: #E3ECF7; color: #2C5282; padding: 2px 8px; border-radius: 20px; }
.mvd-ys-stats { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.mvd-ys-stat { display: flex; flex-direction: column; }
.mvd-ys-stat strong { font-family: 'Lato', sans-serif; font-size: .9rem; font-weight: 800; color: #1A2332; }
.mvd-ys-stat span { font-family: 'Lato', sans-serif; font-size: .68rem; color: #8A9299; text-transform: uppercase; letter-spacing: .5px; }

/* CTA button */
.mvd-cta-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: calc(100% - 3.5rem); margin: 1.5rem 1.75rem; padding: .875rem 1.5rem; background: var(--helm-primary, #5688D7); color: white; border: none; border-radius: 8px; font-family: 'Lato', sans-serif; font-size: .9rem; font-weight: 700; letter-spacing: .5px; cursor: pointer; transition: background .2s; }
.mvd-cta-btn:hover { background: var(--helm-btn-hover, #4070BE); }
.mvd-cta-gold { background: #C9A96E; }
.mvd-cta-gold:hover { background: #B8955A; }

/* Responsive */
@media (max-width: 600px) {
    .mvd-hero { padding: 1rem 1.25rem 0; }
    .mvd-stats-bar { padding: .625rem 1.25rem; gap: 0; }
    .mvd-stat { min-width: 50px; }
    .mvd-stat-val { font-size: .875rem; }
    .mvd-section { padding: 1rem 1.25rem 0; }
    .mvd-spec-table { grid-template-columns: 1fr; }
    .mvd-spec-table > div:nth-child(even) .mvd-spec-row { padding-left: 0; border-left: none; }
    .mvd-checklist { grid-template-columns: 1fr; }
    .mvd-cta-btn { width: calc(100% - 2.5rem); margin: 1.25rem; }
    .mvd-title { font-size: 1.4rem; }
    .mvd-price { font-size: 1.4rem; }
}

/* ── Liveaboard-style popup sections ── */
.la-divider { height: 1px; background: #e8eaed; margin: 0; }
.la-accordion-wrap { }
.la-accordion { }
.la-accordion-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', 'Lato', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1A2332;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    box-shadow: none !important;
    outline: none;
    line-height: 1;
    transition: color 0.15s;
}
.la-accordion-btn:hover { color: #444; }
.la-chevron { flex-shrink: 0; transition: transform 0.25s ease; color: #555; }
.la-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
    padding-bottom: 0;
    opacity: 0;
}
.la-accordion-body.la-open {
    max-height: 3200px;
    padding-bottom: 24px;
    opacity: 1;
}
.la-check-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 16px;
}
.la-check-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-family: 'Lato', sans-serif;
    font-size: 14.5px;
    color: #222;
    line-height: 1.5;
}
.la-check-item svg { flex-shrink: 0; margin-top: 2px; }
.la-food-note {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 16px 0 0;
}
.la-specs-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid #e8eaed;
    border-radius: 6px;
    overflow: hidden;
}
.la-spec-row {
    display: flex;
    justify-content: space-between;
    padding: 11px 16px;
    border-bottom: 1px solid #e8eaed;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
}
.la-spec-row:nth-last-child(-n+2) { border-bottom: none; }
.la-spec-lbl { font-family: 'Lato', sans-serif; font-weight: 700; color: #6B7280; font-size: 13px; text-transform: uppercase; letter-spacing: 0.3px; }
.la-spec-val { font-family: 'Lato', sans-serif; font-weight: 700; color: #1A2332; }
.la-layout-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.la-layout-figure {
    margin: 0;
    padding: 0;
}
.la-layout-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    border: 1px solid #e8eaed;
    object-fit: contain;
    background: #f8f9fa;
}
.la-layout-label {
    font-family: 'Inter', 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 8px;
    text-align: center;
}
.la-cabin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.la-cabin-card {
    border: 1px solid #e0e2e6;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
}
.la-cabin-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.12); transform: translateY(-2px); }
.la-cabin-thumb {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #d4dce8;
}
.la-cabin-card-label {
    padding: 12px 14px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #3a6bb5;
    background: white;
}
.la-itinerary { display: flex; flex-direction: column; gap: 0; }
.la-itin-day {
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}
.la-itin-day:last-child { border-bottom: none; }
.la-itin-day-header {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}
.la-itin-day-desc {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #444;
    margin: 0;
}

.la-itin-segment {
    margin-top: 10px;
    padding: 10px 12px;
    background: #f8f9fa;
    border-radius: 6px;
}

.la-itin-seg-lbl {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--helm-primary, #5688D7);
    margin-bottom: 4px;
}

.la-itin-segment p {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #444;
    margin: 0;
}

.la-itin-tip {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 12px;
    background: #fffbea;
    border-left: 3px solid #f0b429;
    border-radius: 0 6px 6px 0;
}

.la-itin-tip-icon {
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.la-itin-tip p {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    line-height: 1.65;
    color: #555;
    margin: 0;
}

/* ── Cabin detail sub-modal ── */
.la-cabin-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem;
    overflow-y: auto;
}
.la-cabin-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
}
.la-cabin-modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 900px;
    margin: auto;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.la-cabin-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    background: rgba(255,255,255,0.92);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
    transition: background 0.15s, color 0.15s;
}
.la-cabin-close:hover { background: white; color: #000; }
.la-cabin-modal-body {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 420px;
}
.la-cabin-gallery-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 0 12px;
}
.la-cabin-img {
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    background-color: #d4dce8;
    transition: background-image 0.3s ease;
}
.la-cabin-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.92);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18) !important;
    transition: background 0.2s;
}
.la-cabin-arrow:hover { background: white; }
.la-cabin-arrow-left { left: 12px; }
.la-cabin-arrow-right { right: 12px; }
.la-cabin-counter {
    position: absolute;
    bottom: 12px;
    left: 14px;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: white;
    background: rgba(0,0,0,0.45);
    padding: 3px 8px;
    border-radius: 4px;
}
.la-cabin-info {
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow-y: auto;
    max-height: 440px;
}
.la-cabin-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: #111;
    margin: 0;
}
.la-cabin-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}
.la-cabin-feat-item {
    font-family: 'Lato', sans-serif;
    font-size: 13.5px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
}
.la-cabin-desc {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #444;
    margin: 0;
}
.la-cabin-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid #e8eaed;
    padding-top: 16px;
    margin-top: auto;
    flex-wrap: wrap;
}
.la-cabin-cta-hint {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: #666;
    flex: 1;
    min-width: 140px;
}
.la-cabin-select-btn {
    background: #4a7c30;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 11px 20px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    box-shadow: none !important;
}
.la-cabin-select-btn:hover { background: #3d6828; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .la-check-grid { grid-template-columns: repeat(2, 1fr); }
    .la-cabin-grid { grid-template-columns: 1fr 1fr; }
    .la-specs-table { grid-template-columns: 1fr; }
    .la-spec-row:nth-last-child(-n+2) { border-bottom: 1px solid #e8eaed; }
    .la-spec-row:last-child { border-bottom: none; }
    .la-accordion-btn { font-size: 0.875rem; padding: 16px 0; }
    .la-cabin-modal-body { grid-template-columns: 1fr; }
    .la-cabin-img { height: 240px; }
    .la-cabin-info { max-height: none; }
    .la-layout-img { width: calc(50% - 8px); }
}
@media (max-width: 480px) {
    .la-check-grid { grid-template-columns: 1fr; }
    .la-cabin-grid { grid-template-columns: 1fr; }
    .la-cabin-cta-row { flex-direction: column; align-items: flex-start; }
    .la-cabin-select-btn { width: 100%; text-align: center; }
}

/* ── Modal download link ── */
.la-download-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 0 2px;
}
.la-download-link {
    font-family: 'Lato', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--helm-btn, #5688D7);
    text-decoration: underline !important;
    text-underline-offset: 3px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
    cursor: pointer;
}
.la-download-link:hover { color: var(--helm-primary, #4070BE); }
.la-download-link svg { flex-shrink: 0; }

/* ── Gear Rental section ── */
.la-gear-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}
.la-gear-item {
    display: flex;
    flex-direction: column;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}
.la-gear-name {
    font-weight: 700;
    color: #111;
    margin-bottom: 2px;
}
.la-gear-price {
    font-size: 13px;
    color: #555;
}

/* ── Buy Yacht unique sections ── */
.la-survey-block {
    background: #f8f9fb;
    border: 1px solid #e4e8ed;
    border-radius: 8px;
    padding: 16px 18px;
    font-family: 'Lato', sans-serif;
}
.la-survey-block p {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    margin: 0 0 10px;
}
.la-survey-block p:last-child { margin: 0; }
.la-survey-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    background: #EFF6FF;
    color: #1D4ED8;
    margin-bottom: 10px;
}
.la-finance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.la-finance-item {
    background: #f8f9fb;
    border: 1px solid #e4e8ed;
    border-radius: 8px;
    padding: 14px 16px;
    font-family: 'Lato', sans-serif;
}
.la-finance-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.la-finance-item span {
    font-size: 13px;
    color: #555;
    line-height: 1.55;
}
.la-viewing-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f0f5ff;
    border: 1px solid #c7d9f5;
    border-radius: 8px;
    padding: 14px 18px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}
.la-viewing-cta svg { flex-shrink: 0; color: var(--helm-btn, #5688D7); }

/* ── Travel Package unique sections ── */
.la-pkg-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.la-pkg-meta-item {
    background: #f8f9fb;
    border: 1px solid #e4e8ed;
    border-radius: 8px;
    padding: 12px 14px;
    font-family: 'Lato', sans-serif;
}
.la-pkg-meta-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #888;
    margin-bottom: 4px;
}
.la-pkg-meta-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    line-height: 1.45;
}
.la-meeting-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f8f9fb;
    border: 1px solid #e4e8ed;
    border-radius: 8px;
    padding: 14px 16px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #444;
    line-height: 1.65;
}
.la-meeting-point svg { flex-shrink: 0; margin-top: 2px; color: var(--helm-btn, #5688D7); }
.la-season-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.la-season-tag {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    background: #EFF6FF;
    color: #1D4ED8;
    border: 1px solid #BFDBFE;
}
.la-season-tag.peak {
    background: #FEF3C7;
    color: #92400E;
    border-color: #FDE68A;
}
.la-visa-note {
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    border-radius: 8px;
    padding: 14px 16px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #78350F;
    line-height: 1.7;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.la-visa-note svg { flex-shrink: 0; margin-top: 2px; color: #D97706; }

@media (max-width: 480px) {
    .la-gear-grid { grid-template-columns: 1fr; }
    .la-finance-grid { grid-template-columns: 1fr; }
    .la-pkg-meta-grid { grid-template-columns: 1fr; }
    .popup-title { font-size: 1.8rem; }
    .popup-price { font-size: 1.6rem; }
}

.la-cabin-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.la-cabin-meta-tag {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #555;
    background: #f1f3f5;
    border-radius: 4px;
    padding: 4px 10px;
}
.la-dl-sep {
    color: #ccc;
    margin: 0 4px;
    line-height: 1;
    align-self: center;
}


/* ─────────────────────────────────────────────────────────
   ARTICLES — Archive & Single page styles
───────────────────────────────────────────────────────── */

/* Filter row */
.myh-art-search-filter-row { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; max-width: 1400px; margin: 0 auto; padding: 0.85rem 0; }
.myh-art-search-wrap { position: relative; flex: 0 0 240px; }
.myh-art-search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: #6F767E; pointer-events: none; }
.myh-art-search-input { width: 100%; height: 40px; padding: 0 14px 0 38px; font-family: 'Lato', sans-serif; font-size: 0.83rem; color: #1A202C; background: #F6F7F9; border: 1px solid #E8E9EB; border-radius: 6px; outline: none; transition: border-color 0.2s; }
.myh-art-search-input:focus { border-color: #1A202C; background: #fff; }
.myh-art-search-input::placeholder { color: #9AA5B1; }

/* Filter tabs */
.myh-art-tabs { display: flex; align-items: center; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; border-bottom: 1px solid #E8E9EB; margin-bottom: -1px; }
.myh-art-tabs::-webkit-scrollbar { display: none; }
.myh-art-tab { display: flex; align-items: center; gap: 5px; padding: 0.7rem 1.1rem; font-family: 'Lato', sans-serif; font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: #6F767E; background: none; border: none; border-bottom: 3px solid transparent; cursor: pointer; white-space: nowrap; transition: color 0.2s, border-color 0.2s; margin-bottom: -1px; }
.myh-art-tab:hover { color: #1A202C; }
.myh-art-tab.active { color: var(--tab-color, #1A202C); border-bottom-color: var(--tab-color, #1A202C); }
.myh-art-tab-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.myh-art-tab-count { display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; font-size: 0.58rem; font-weight: 700; line-height: 1; transition: background 0.2s; }
.myh-art-tab:not(.active) .myh-art-tab-count { background: #E8E9EB !important; color: #6F767E !important; }

/* Category dot in card */
.myh-art-cat-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin-right: 4px; flex-shrink: 0; vertical-align: middle; }
.myh-art-eyebrow-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin-right: 5px; flex-shrink: 0; vertical-align: middle; }

/* Archive body */
.myh-art-body { max-width: 1400px; margin: 0 auto; padding: 3rem 2rem 5rem; }

/* Featured article */
.myh-art-featured { display: grid; grid-template-columns: 1fr 1fr; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 28px rgba(0,0,0,0.09); border: 1px solid #E8E9EB; margin-bottom: 3rem; background: #fff; transition: box-shadow 0.25s, transform 0.25s; }
.myh-art-featured:hover { box-shadow: 0 14px 44px rgba(0,0,0,0.13); transform: translateY(-3px); }
.myh-art-feat-img { position: relative; min-height: 360px; background: var(--helm-primary, #6b7d8d) center/cover no-repeat; overflow: hidden; }
.myh-art-feat-badge { position: absolute; top: 20px; left: 20px; background: #C9A96E; color: #1A2332; font-family: 'Lato', sans-serif; font-size: 0.6rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; }
.myh-art-feat-body { padding: 2.75rem 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.myh-art-eyebrow { display: flex; align-items: center; font-family: 'Lato', sans-serif; font-size: 0.63rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.75rem; }
.myh-art-feat-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.4rem, 2vw, 1.9rem); font-weight: 700; color: #1A2332; line-height: 1.2; margin: 0 0 1rem; }
.myh-art-feat-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.myh-art-feat-title a:hover { color: var(--helm-accent-link, #5688D7); }
.myh-art-feat-excerpt { font-family: 'Lato', sans-serif; font-size: 0.9rem; color: #5A6C7D; line-height: 1.75; margin: 0 0 1.5rem; }
.myh-art-meta-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.75rem; flex-wrap: wrap; }
.myh-art-date { font-family: 'Lato', sans-serif; font-size: 0.78rem; color: #6F767E; }
.myh-art-read-time { display: flex; align-items: center; gap: 4px; font-family: 'Lato', sans-serif; font-size: 0.75rem; color: #6F767E; }
.myh-art-read-btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; background: var(--helm-card-btn, #111111); color: #fff !important; border-radius: 7px; font-family: 'Lato', sans-serif; font-size: 0.83rem; font-weight: 700; text-decoration: none !important; transition: background 0.2s; width: fit-content; }
.myh-art-read-btn:hover { background: var(--helm-card-btn-hover, #333333) !important; }
.myh-art-read-btn svg { transition: transform 0.2s; flex-shrink: 0; }
.myh-art-read-btn:hover svg { transform: translateX(3px); }

/* Section labels */
.myh-art-section-label { font-family: 'Lato', sans-serif; font-size: 0.63rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #6F767E; padding-bottom: 0.75rem; border-bottom: 1px solid #E8E9EB; margin-bottom: 1.75rem; }

/* Grid — 2 columns */
.myh-art-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; margin-bottom: 3rem; }

/* Article card */
.myh-art-card { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid #E8E9EB; box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: box-shadow 0.25s, transform 0.25s; display: flex; flex-direction: column; }
.myh-art-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,0.11); transform: translateY(-3px); }
.myh-art-card-img-link { display: block; }
.myh-art-card-img { height: 210px; position: relative; overflow: hidden; background: var(--helm-primary, #6b7d8d); }
.myh-art-card-img-inner { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.4s ease; }
.myh-art-card:hover .myh-art-card-img-inner { transform: scale(1.05); }
.myh-art-card-pill { position: absolute; bottom: 12px; left: 12px; color: #fff; font-family: 'Lato', sans-serif; font-size: 0.58rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }
.myh-art-card-body { padding: 1.35rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.myh-art-card-cat { display: flex; align-items: center; font-family: 'Lato', sans-serif; font-size: 0.6rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.45rem; }
.myh-art-card-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.15rem; font-weight: 700; color: #1A2332; line-height: 1.3; margin: 0 0 0.6rem; }
.myh-art-card-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.myh-art-card-title a:hover { color: var(--helm-accent-link, #5688D7); }
.myh-art-card-excerpt { font-family: 'Lato', sans-serif; font-size: 0.83rem; color: #5A6C7D; line-height: 1.65; margin-bottom: 1rem; flex: 1; }
.myh-art-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 0.85rem; border-top: 1px solid #E8E9EB; }
.myh-art-card-meta { display: flex; align-items: center; gap: 4px; font-family: 'Lato', sans-serif; font-size: 0.72rem; color: #6F767E; }
.myh-art-card-arrow { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--helm-card-btn, #111111); color: #fff; flex-shrink: 0; transition: background 0.2s; text-decoration: none; }
.myh-art-card:hover .myh-art-card-arrow { background: var(--helm-card-btn-hover, #333333); }

/* List articles */
.myh-art-list { display: flex; flex-direction: column; }
.myh-art-list-item { display: flex; align-items: center; gap: 1.1rem; padding: 1rem 0; border-bottom: 1px solid #E8E9EB; transition: opacity 0.2s; }
.myh-art-list-item:last-child { border-bottom: none; }
.myh-art-list-item:hover { opacity: 0.8; }
.myh-art-list-thumb-link { flex-shrink: 0; }
.myh-art-list-thumb { width: 92px; height: 68px; border-radius: 7px; background-size: cover; background-position: center; background-color: #ccd5dc; }
.myh-art-list-content { flex: 1; min-width: 0; }
.myh-art-list-cat { display: flex; align-items: center; font-family: 'Lato', sans-serif; font-size: 0.58rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 3px; }
.myh-art-list-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 0.97rem; font-weight: 700; color: #1A2332; line-height: 1.3; margin: 0 0 4px; }
.myh-art-list-title a { color: inherit; text-decoration: none; }
.myh-art-list-title a:hover { color: var(--helm-accent-link, #5688D7); }
.myh-art-list-meta { display: flex; align-items: center; gap: 4px; font-family: 'Lato', sans-serif; font-size: 0.7rem; color: #6F767E; }
.myh-art-list-arrow { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: #F4F6F8; color: #6F767E; flex-shrink: 0; transition: background 0.2s, color 0.2s; text-decoration: none; margin-left: auto; }
.myh-art-list-arrow:hover { background: var(--helm-card-btn, #111111); color: #fff; }

/* Empty / no results */
.myh-art-empty { text-align: center; padding: 4rem 2rem; font-family: 'Lato', sans-serif; color: #6F767E; }
.myh-art-empty svg { margin: 0 auto 1rem; display: block; color: #9AA5B1; }
.myh-art-empty p { font-size: 0.92rem; margin: 0; }
.myh-art-no-results { display: none; text-align: center; padding: 2.5rem; font-family: 'Lato', sans-serif; color: #6F767E; font-size: 0.9rem; }

/* ─── Newsletter ──────────────────────────────────────────────────────────── */
.myh-art-newsletter {
    background: #fff;
    border-top: 1px solid #e8e9eb;
    border-bottom: 1px solid #e8e9eb;
    padding: 0;
}
.myh-art-nl-bg-lines { display: none; }
.myh-art-nl-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.25rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}
.myh-art-nl-text {
    min-width: 0;
}
.myh-art-nl-eyebrow,
.myh-art-nl-eyebrow-line,
.myh-art-nl-eyebrow-txt { display: none; }
.myh-art-nl-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #1A202C;
    line-height: 1.2;
    margin: 0 0 0.35rem;
    letter-spacing: 0.01em;
}
.myh-art-nl-sub {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}
.myh-art-nl-form {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.myh-art-nl-field-wrap {
    display: flex;
    align-items: stretch;
    border: 1px solid #dde0e4;
    border-radius: 2px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s;
}
.myh-art-nl-field-wrap:focus-within {
    border-color: #1A2332;
}
.myh-art-nl-input {
    width: 240px;
    padding: 0.7rem 1rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    color: #1A2332;
    background: transparent;
    border: none;
    outline: none;
}
.myh-art-nl-input::placeholder {
    color: #b8bec5;
}
.myh-art-nl-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0.7rem 1.2rem;
    background: #1A2332;
    border: none;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    transition: background 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.myh-art-nl-btn:hover:not(:disabled) { background: #2c3e55; }
.myh-art-nl-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.myh-art-nl-btn-arrow { opacity: 0.7; transition: transform 0.2s; }
.myh-art-nl-btn:hover:not(:disabled) .myh-art-nl-btn-arrow { transform: translateX(2px); opacity: 1; }
.myh-art-nl-privacy {
    font-size: 0.75rem;
    margin: 0.45rem 0 0;
    text-align: center;
}
.myh-art-nl-msg {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    margin: 0.4rem 0 0;
    min-height: 0;
    text-align: center;
}
.myh-art-nl-msg--ok    { color: #4a7c59; }
.myh-art-nl-msg--error { color: #b94040; }
@media (max-width: 768px) {
    .myh-art-nl-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; padding: 2rem 1.5rem; }
    .myh-art-nl-text { max-width: 100%; }
    .myh-art-nl-form { align-items: flex-start; width: 100%; }
    .myh-art-nl-field-wrap { width: 100%; }
    .myh-art-nl-input { flex: 1; width: auto; }
    .myh-art-nl-privacy { text-align: left; }
    .myh-art-nl-msg { text-align: left; }
}

/* ─── Single Article ──────────────────────────── */
.myh-sart-wrap { background: #fff; }
.myh-sart-hero { background: var(--helm-primary, #6b7d8d) center/cover no-repeat; min-height: 480px; display: flex; align-items: flex-end; }
.myh-sart-hero-overlay { width: 100%; background: linear-gradient(to top, rgba(10,20,35,0.78) 0%, rgba(10,20,35,0.35) 55%, rgba(10,20,35,0.1) 100%); padding: 4rem 2rem 3.5rem; }
.myh-sart-hero-inner { max-width: 860px; margin: 0 auto; }
.myh-sart-back-link { display: inline-flex; align-items: center; gap: 5px; font-family: 'Lato', sans-serif; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.7); text-decoration: none; margin-bottom: 1.25rem; transition: color 0.2s; }
.myh-sart-back-link:hover { color: #fff; }
.myh-sart-cat { display: inline-block; font-family: 'Lato', sans-serif; font-size: 0.63rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #C9A96E; margin-bottom: 1rem; }
.myh-sart-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; color: #fff; line-height: 1.15; margin: 0 0 1rem; }
.myh-sart-meta { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; flex-wrap: wrap; }
.myh-sart-date { font-family: 'Lato', sans-serif; font-size: 0.82rem; color: rgba(255,255,255,0.75); }
.myh-sart-sep { color: rgba(255,255,255,0.45); }
.myh-sart-read-time { display: flex; align-items: center; gap: 4px; font-family: 'Lato', sans-serif; font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.myh-sart-lead { font-family: 'Lato', sans-serif; font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin: 0; max-width: 700px; }
.myh-sart-body-wrap { max-width: 860px; margin: 0 auto; padding: 3.5rem 2rem 1rem; }
.myh-sart-content { font-family: 'Lato', sans-serif; font-size: 1rem; color: #2B2B2B; line-height: 1.85; }
.myh-sart-content h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.75rem; font-weight: 700; color: #1A2332; margin: 2.5rem 0 1rem; line-height: 1.2; }
.myh-sart-content h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.35rem; font-weight: 700; color: #1A2332; margin: 2rem 0 0.75rem; }
.myh-sart-content p { margin: 0 0 1.5rem; }
.myh-sart-content ul, .myh-sart-content ol { padding-left: 1.5rem; margin: 0 0 1.5rem; }
.myh-sart-content li { margin-bottom: 0.5rem; }
.myh-sart-content a { color: var(--helm-accent-link, #5688D7); text-decoration: underline; }
.myh-sart-content blockquote { border-left: 3px solid var(--helm-accent-link, #5688D7); margin: 2rem 0; padding: 1rem 1.5rem; background: #F8F9FA; font-style: italic; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.15rem; color: #1A2332; border-radius: 0 8px 8px 0; }
.myh-sart-content img { max-width: 100%; border-radius: 8px; margin: 1rem 0; }
.myh-sart-content figure { margin: 2rem 0; }
.myh-sart-content figcaption { font-size: 0.82rem; color: #6F767E; text-align: center; margin-top: 0.5rem; }
.myh-sart-share { border-top: 1px solid #E8E9EB; padding: 2.5rem 0 0; margin-top: 2.5rem; }
.myh-sart-share-label { font-family: 'Lato', sans-serif; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #6F767E; margin: 0 0 1rem; }
.myh-sart-share-btns { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.myh-sart-share-btn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px; background: #F4F6F8; border: 1px solid #E8E9EB; border-radius: 7px; font-family: 'Lato', sans-serif; font-size: 0.8rem; font-weight: 700; color: #1A2332; text-decoration: none !important; cursor: pointer; transition: background 0.2s, border-color 0.2s; }
.myh-sart-share-btn:hover { background: #1A2332; border-color: #1A2332; color: #fff !important; }
.myh-sart-share-btn svg { flex-shrink: 0; }
.myh-sart-further { background: #F4F6F8; padding: 4.5rem 2rem 5rem; border-top: 1px solid #E8E9EB; }
.myh-sart-further-inner { max-width: 1200px; margin: 0 auto; }
.myh-sart-further-hd { text-align: center; margin-bottom: 2.5rem; }
.myh-sart-further-eyebrow { font-family: 'Lato', sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--helm-accent-link, #5688D7); display: block; margin-bottom: 0.6rem; }
.myh-sart-further-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 700; color: #1A2332; margin: 0; }
.myh-sart-further-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 1100px) {
    .myh-sart-further-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .myh-art-featured { grid-template-columns: 1fr; }
    .myh-art-feat-img { min-height: 240px; }
    .myh-art-grid { grid-template-columns: 1fr; }
    .myh-art-search-filter-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .myh-art-search-wrap { flex: 0 0 auto; width: 100%; }
    .myh-art-nl-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .myh-art-nl-form { width: 100%; }
    .myh-art-nl-input { flex: 1; width: auto; }
}
@media (max-width: 680px) {
    .myh-sart-further-grid { grid-template-columns: 1fr; }
    .myh-art-body { padding: 2rem 1.25rem 3.5rem; }
    .myh-sart-body-wrap { padding: 2.5rem 1.25rem 0.5rem; }
    .myh-sart-share-btns { gap: 0.5rem; }
    .myh-sart-share-btn { font-size: 0.75rem; padding: 8px 14px; }
}

/* ── Homepage Articles Section ── */
.hv-hp-articles-section { background: #F8F9FA; padding: 5rem 0 4.5rem; border-top: 1px solid #F0F2F5; }
.hv-hp-articles-inner { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.hv-hp-articles-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 2.5rem; }
.hv-hp-art-featured { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 28px rgba(0,0,0,0.08); border: 1px solid #E8E9EB; display: flex; flex-direction: column; transition: box-shadow 0.25s, transform 0.25s; }
.hv-hp-art-featured:hover { box-shadow: 0 14px 44px rgba(0,0,0,0.12); transform: translateY(-3px); }
.hv-hp-art-feat-img-link { display: block; text-decoration: none; flex-shrink: 0; }
.hv-hp-art-feat-img { position: relative; height: 280px; background: var(--helm-primary, #6b7d8d) center/cover no-repeat; }
.hv-hp-art-feat-badge { position: absolute; top: 18px; left: 18px; background: #C9A96E; color: #1A2332; font-family: 'Lato', sans-serif; font-size: 0.58rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; }
.hv-hp-art-feat-body { padding: 2rem 2rem 2.25rem; display: flex; flex-direction: column; flex: 1; }
.hv-hp-art-cat { font-family: 'Lato', sans-serif; font-size: 0.63rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--helm-accent-link, #5688D7); margin-bottom: 0.6rem; display: block; }
.hv-hp-art-feat-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.3rem, 1.8vw, 1.7rem); font-weight: 700; color: #1A2332; line-height: 1.25; margin: 0 0 0.875rem; }
.hv-hp-art-feat-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.hv-hp-art-feat-title a:hover { color: var(--helm-accent-link, #5688D7); }
.hv-hp-art-feat-excerpt { font-family: 'Lato', sans-serif; font-size: 0.88rem; color: #5A6C7D; line-height: 1.75; margin: 0 0 1.25rem; flex: 1; }
.hv-hp-art-meta { display: flex; align-items: center; gap: 0.875rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.hv-hp-art-meta time { font-family: 'Lato', sans-serif; font-size: 0.78rem; color: #6F767E; }
.hv-hp-art-read-time { display: flex; align-items: center; gap: 4px; font-family: 'Lato', sans-serif; font-size: 0.78rem; color: #6F767E; }
.hv-hp-art-read-btn { display: inline-flex; align-items: center; gap: 6px; font-family: 'Lato', sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--helm-btn, #5688D7); text-decoration: none; transition: gap 0.2s; letter-spacing: 0.3px; }
.hv-hp-art-read-btn:hover { gap: 10px; }
.hv-hp-art-side { display: flex; flex-direction: column; gap: 1.5rem; }
.hv-hp-art-card { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid #E8E9EB; box-shadow: 0 2px 12px rgba(0,0,0,0.06); display: flex; flex-direction: column; transition: box-shadow 0.2s, transform 0.2s; }
.hv-hp-art-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.11); transform: translateY(-2px); }
.hv-hp-art-card-img-link { display: block; text-decoration: none; flex-shrink: 0; }
.hv-hp-art-card-img { position: relative; height: 160px; background: var(--helm-primary, #6b7d8d) center/cover no-repeat; }
.hv-hp-art-card-pill { position: absolute; bottom: 12px; left: 12px; background: rgba(0,0,0,0.55); color: #fff; font-family: 'Lato', sans-serif; font-size: 0.6rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }
.hv-hp-art-card-body { padding: 1.25rem 1.4rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.hv-hp-art-card-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.15rem; font-weight: 700; color: #1A2332; line-height: 1.3; margin: 0 0 0.5rem; }
.hv-hp-art-card-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.hv-hp-art-card-title a:hover { color: var(--helm-accent-link, #5688D7); }
.hv-hp-art-card-excerpt { font-family: 'Lato', sans-serif; font-size: 0.83rem; color: #5A6C7D; line-height: 1.65; margin: 0 0 auto; }
.hv-hp-art-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; padding-top: 0.875rem; border-top: 1px solid #F0F2F5; }
.hv-hp-art-date { font-family: 'Lato', sans-serif; font-size: 0.76rem; color: #6F767E; }
.hv-hp-art-arrow { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid #E8E9EB; color: #374151; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.hv-hp-art-arrow:hover { background: var(--helm-btn, #5688D7); border-color: var(--helm-btn, #5688D7); color: #fff; }
@media (max-width: 1100px) {
    .hv-hp-articles-layout { grid-template-columns: 1fr; }
    .hv-hp-art-feat-img { height: 240px; }
    .hv-hp-art-side { flex-direction: row; }
    .hv-hp-art-card { flex: 1; }
}
@media (max-width: 680px) {
    .hv-hp-articles-section { padding: 3.5rem 0 3rem; }
    .hv-hp-articles-layout { gap: 1.5rem; }
    .hv-hp-art-side { flex-direction: column; }
    .hv-hp-articles-inner { padding: 0 1.25rem; }
}
