/* ===========================
   HEADER
   =========================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px 0;
    transition: background var(--tr), box-shadow var(--tr), padding var(--tr);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.08);
    padding: 10px 0;
}
.site-header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
}
.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    flex-shrink: 0;
}
.site-brand:hover { color: var(--ink); }
.site-brand__mark {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    background: var(--sand-100);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: transform var(--tr);
}
.site-brand:hover .site-brand__mark { transform: rotate(-6deg) scale(1.05); }
.site-brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.site-brand__name { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; }
.site-brand__sub { font-size: 0.76rem; color: var(--text-soft); letter-spacing: 0.02em; }

.site-brand .custom-logo-link,
.site-header .custom-logo-link { display: inline-flex; align-items: center; max-height: 52px; line-height: 0; }
.site-brand .custom-logo,
.site-header .custom-logo {
    width: auto; height: auto;
    max-height: 52px; max-width: 180px;
    object-fit: contain;
}

.site-nav { flex: 1; display: flex; justify-content: center; }
.site-nav__list {
    display: flex; list-style: none;
    margin: 0; padding: 0;
    gap: 4px;
}
.site-nav__list a {
    display: block;
    padding: 10px 16px;
    font-size: 0.95rem; font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-pill);
    transition: all var(--tr-fast);
}
.site-nav__list a:hover {
    background: var(--sea-100);
    color: var(--primary-dark);
}

/* Submenu (hover-open on desktop) */
.site-nav__list .has-submenu { position: relative; }
.site-nav__list .has-submenu > a::after {
    content: "";
    display: inline-block;
    width: 0; height: 0; margin-left: 6px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    vertical-align: middle; opacity: 0.55;
}
.site-nav__sub {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 200px;
    list-style: none; margin: 0; padding: 8px;
    background: #fff; border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 16px 36px rgba(14,36,53,0.14);
    opacity: 0; pointer-events: none;
    transition: opacity .15s, transform .15s;
    z-index: 60;
}
.site-nav__list .has-submenu:hover > .site-nav__sub,
.site-nav__list .has-submenu:focus-within > .site-nav__sub,
.site-nav__list .has-submenu > a[aria-expanded="true"] + .site-nav__sub {
    opacity: 1; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.site-nav__sub a {
    padding: 8px 14px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.site-nav__toggle {
    display: none;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    color: var(--ink);
}
.nav-toggle-icon--close { display: none; }
.site-nav__toggle[aria-expanded="true"] .nav-toggle-icon--open  { display: none; }
.site-nav__toggle[aria-expanded="true"] .nav-toggle-icon--close { display: block; }

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

.lang-switch {
    position: relative;
    display: inline-flex;
}
.lang-switch__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px 8px 14px;
    background: var(--cloud);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    transition: all var(--tr-fast);
    cursor: pointer;
}
.lang-switch__toggle:hover {
    background: var(--sea-100);
}
.lang-switch__toggle[aria-expanded="true"] {
    background: var(--sea-100);
}
.lang-switch__toggle[aria-expanded="true"] .lang-switch__caret {
    transform: rotate(90deg);
}
.lang-switch__flag {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
}
.lang-switch__label {
    font-size: 0.85rem;
    font-weight: 600;
}
.lang-switch__caret {
    transform: rotate(90deg);
    transition: transform var(--tr-fast);
    color: var(--text-soft);
}

.lang-switch__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    list-style: none;
    margin: 0;
    padding: 6px;
    min-width: 180px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 200;
}
.lang-switch__menu[hidden] { display: none; }
.lang-switch__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--ink);
    transition: all var(--tr-fast);
}
.lang-switch__item:hover {
    background: var(--sea-100);
    color: var(--primary-dark);
}
.lang-switch__item.is-active {
    background: var(--primary-dark);
    color: var(--white);
}
.lang-switch__item.is-active .lang-switch__flag {
    background: var(--white);
    color: var(--primary-dark);
}
.lang-switch__check {
    margin-left: auto;
    font-weight: 700;
}

/* Hide label on narrow screens to save space */
@media (max-width: 720px) {
    .lang-switch__label { display: none; }
    .lang-switch__toggle { padding: 6px 10px 6px 10px; }
}

@media (max-width: 960px) {
    .site-nav__toggle { display: inline-flex; }
    .site-nav__list {
        position: fixed;
        top: 72px; left: 16px; right: 16px;
        flex-direction: column;
        background: var(--white);
        border-radius: var(--radius);
        padding: 12px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: all var(--tr);
    }
    .site-nav__toggle[aria-expanded="true"] ~ .site-nav__list {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
}
@media (max-width: 560px) {
    .site-header__cta { display: none; }
}

/* ===========================
   MAIN
   =========================== */
.site-main { padding-top: 78px; }

/* ===========================
   HERO (full-bleed slideshow with left-side text)
   =========================== */
.hero {
    position: relative;
    min-height: min(720px, 92vh);
    display: flex;
    align-items: center;
    padding: 120px 0 160px;
    overflow: hidden;
    color: var(--white);
    isolation: isolate;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__video, .hero__image {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero__slides {
    position: absolute; inset: 0;
}
.hero__slide {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 1200ms ease, transform 10s ease-out;
    will-change: opacity, transform;
}
.hero__slide.is-active {
    opacity: 1;
    transform: scale(1.1);
}

/* Scrim: solid teal-navy panel on left, clean transition to fully-visible image on the right. */
.hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(95deg,
            rgba(6, 42, 51, 0.94) 0%,
            rgba(6, 42, 51, 0.92) 42%,
            rgba(6, 42, 51, 0.72) 55%,
            rgba(6, 42, 51, 0.35) 68%,
            rgba(6, 42, 51, 0.0) 82%),
        linear-gradient(180deg, transparent 75%, rgba(6, 42, 51, 0.4) 100%);
}
@media (max-width: 860px) {
    /* on small screens the panel dims the whole frame */
    .hero__scrim {
        background:
            linear-gradient(180deg, rgba(6, 42, 51, 0.4) 0%, rgba(6, 42, 51, 0.85) 60%, rgba(6, 42, 51, 0.92) 100%);
    }
}

/* Hero content */
.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero__content {
    max-width: 620px;
}

.hero__title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    text-shadow: 0 2px 16px rgba(6, 42, 51, 0.5);
}
.hero__subtitle {
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    color: rgba(255, 255, 255, 0.92);
    max-width: 520px;
    margin-bottom: 32px;
    text-shadow: 0 1px 8px rgba(6, 42, 51, 0.5);
}

/* Hero search — white pill on dark bg */
.hero-search {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 6px;
    padding: 8px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(6, 42, 51, 0.35);
    margin-bottom: 36px;
    max-width: 640px;
}
.hero-search__field {
    display: flex; flex-direction: column;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: background var(--tr-fast);
    min-width: 0;
}
.hero-search__field:hover { background: var(--cloud); }
.hero-search__field label {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.7rem; font-weight: 600;
    color: var(--mute);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}
.hero-search__field label svg { color: var(--primary); }
.hero-search__select {
    border: 0; background: transparent;
    font-family: var(--font-body);
    font-size: 0.95rem; color: var(--ink);
    padding: 4px 0; outline: none;
    width: 100%;
}
.hero-search__submit { padding: 0 24px; margin: 0; border-radius: var(--radius-sm); }
@media (max-width: 720px) {
    .hero-search { grid-template-columns: 1fr 1fr; gap: 4px; }
    .hero-search__submit { grid-column: 1 / -1; padding: 12px 22px; }
}
@media (max-width: 440px) { .hero-search { grid-template-columns: 1fr; } }

.hero__trust {
    display: flex;
    gap: 44px;
    flex-wrap: wrap;
}
.hero__trust-item { display: flex; flex-direction: column; }
.hero__trust-item strong {
    font-family: var(--font-heading);
    font-size: 1.7rem; font-weight: 800;
    line-height: 1; color: var(--white);
    text-shadow: 0 1px 6px rgba(6, 42, 51, 0.5);
}
.hero__trust-item span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
    text-shadow: 0 1px 6px rgba(6, 42, 51, 0.5);
}

/* Slide indicators — bottom center of hero */
.hero__dots {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(6, 42, 51, 0.32);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-pill);
}
.hero__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    padding: 0; border: 0;
    cursor: pointer;
    transition: all var(--tr-fast);
}
.hero__dot:hover { background: rgba(255, 255, 255, 0.85); }
.hero__dot.is-active {
    background: var(--white);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 720px) {
    .hero { padding: 100px 0 120px; }
    .hero__dots { bottom: 20px; }
}

/* ===========================
   GROUPS SECTION
   =========================== */
.section-groups { background: var(--bg); }

.group-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
@media (max-width: 960px) { .group-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } }

.group-card {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
    color: var(--white);
    box-shadow: var(--shadow);
    transition: all var(--tr);
    isolation: isolate;
}
.group-card:hover {
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.group-card__bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 80%; /* crop past the top branded overlay */
    transition: transform 800ms var(--ease);
}
.group-card__bg--placeholder {
    background: linear-gradient(135deg, var(--sea-700), var(--sea-900));
}
.group-card:hover .group-card__bg { transform: scale(1.06); }
.group-card__scrim {
    position: absolute; inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, transparent 0%, transparent 40%, rgba(6, 42, 51, 0.7) 75%, rgba(6, 42, 51, 0.92) 100%);
}
.group-card__body {
    position: absolute;
    inset: auto 20px 20px;
    z-index: 2;
    display: flex; flex-direction: column;
    text-shadow: 0 1px 6px rgba(6, 42, 51, 0.75);
}
.group-card__label {
    font-size: 0.82rem;
    font-weight: 500;
    opacity: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}
.group-card__size {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 14px;
}
.group-card__number {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(6, 42, 51, 0.8);
}
.group-card__unit {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.92;
}
.group-card__meta {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.82rem;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-pill);
    align-self: flex-start;
    transition: background var(--tr-fast), gap var(--tr-fast);
}
.group-card:hover .group-card__meta {
    background: var(--accent);
    gap: 10px;
}

/* Mobile: shrink group card text */
@media (max-width: 560px) {
    .group-card__body { inset: auto 12px 12px; }
    .group-card__label { font-size: 0.72rem; margin-bottom: 2px; }
    .group-card__number { font-size: 1.9rem; }
    .group-card__unit { font-size: 0.82rem; }
    .group-card__size { gap: 5px; margin-bottom: 8px; }
    .group-card__meta { font-size: 0.7rem; padding: 4px 9px; }
}

/* ===========================
   FEATURED VILLAS
   =========================== */
.section-featured {
    background: linear-gradient(180deg, var(--bg) 0%, var(--sea-100) 100%);
}
.villa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 1024px) { .villa-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .villa-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } }
.section__foot { text-align: center; margin-top: 48px; }

.villa-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--tr);
    isolation: isolate;
}
.villa-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.villa-card__link {
    position: absolute; inset: 0; z-index: 3;
    text-indent: -9999px;
}
.villa-card__media {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--sea-100);
    overflow: hidden;
}
.villa-card__image,
.villa-card__video,
.villa-card__iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    border: 0;
    transition: transform 700ms var(--ease);
}
.villa-card__iframe { pointer-events: none; }
.villa-card__iframe--tiktok {
    inset: -40% -25% !important;
    width: 150% !important;
    height: 180% !important;
    max-width: none !important;
    max-height: none !important;
}
.villa-card:hover .villa-card__image { transform: scale(1.05); }
.villa-card__placeholder {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--sea-300), var(--sea-700));
    color: var(--white);
}
.villa-card__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    display: grid; place-items: center;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    border-radius: 50%;
    box-shadow: var(--shadow);
    z-index: 2; pointer-events: none;
    transition: transform var(--tr);
}
.villa-card:hover .villa-card__play { transform: translate(-50%, -50%) scale(1.1); }

/* Social video icon (TikTok / YouTube) — top-right of media */
.villa-card__social {
    position: absolute; bottom: 12px; right: 12px;
    width: 36px; height: 36px;
    display: grid; place-items: center;
    border-radius: 50%;
    z-index: 4;
    transition: transform var(--tr), box-shadow var(--tr);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.villa-card__social:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.villa-card__social--tiktok {
    background: #010101;
    color: #fff;
}
.villa-card__social--youtube {
    background: #ff0000;
    color: #fff;
}

/* Body — stacked layout */
.villa-card__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 14px;
}
.villa-card__row-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.villa-card__specs {
    display: flex; gap: 10px;
    list-style: none; margin: 0; padding: 0;
}
.villa-card__specs li {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.82rem; font-weight: 600;
    color: var(--text-soft);
}
.villa-card__specs svg { color: var(--primary); }
.villa-card__price {
    display: flex; align-items: baseline; gap: 3px;
}
.villa-card__price-amt {
    font-family: var(--font-heading);
    font-size: 1.15rem; font-weight: 700;
    color: var(--coral-700);
    line-height: 1;
}
.villa-card__price-unit {
    font-size: 0.72rem; color: var(--text-soft);
}
.villa-card__more {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    width: 100%;
    padding: 8px 0;
    font-size: 0.78rem; font-weight: 600;
    color: #fff;
    background: var(--primary);
    border-radius: 6px;
    transition: background var(--tr), gap var(--tr);
    text-align: center;
}
.villa-card:hover .villa-card__more {
    gap: 10px;
    background: var(--accent);
}

/* Mobile: tighten card body */
@media (max-width: 560px) {
    .villa-card__body { padding: 10px 12px; gap: 4px; }
    .villa-card__specs { gap: 8px; }
    .villa-card__specs li { font-size: 0.72rem; gap: 3px; }
    .villa-card__specs svg { width: 12px; height: 12px; }
    .villa-card__price-amt { font-size: 0.95rem; }
    .villa-card__price-unit { font-size: 0.62rem; }
    .villa-card__more { font-size: 0.68rem; padding: 7px 0; }
    .villa-card__social { width: 30px; height: 30px; bottom: 8px; right: 8px; }
    .villa-card__social svg { width: 14px; height: 14px; }
    .villa-card__play { width: 40px; height: 40px; }
    .villa-card__play svg { width: 18px; height: 18px; }
}

/* ===========================
   FEATURE PILLS
   =========================== */
.section-features { background: var(--sea-100); }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 860px) { .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; } }
@media (max-width: 560px) {
    .feature-pill { gap: 10px; padding: 10px 12px 10px 10px; min-width: 0; }
    .feature-pill__icon { width: 40px; height: 40px; border-radius: 10px; }
    .feature-pill__icon svg { width: 20px; height: 20px; }
    .feature-pill__label { font-size: 0.85rem; line-height: 1.25; word-break: break-word; }
    .feature-pill__count { font-size: 0.7rem; }
    .feature-pill__arrow { width: 24px; height: 24px; flex-shrink: 0; }
    .feature-pill__arrow svg { width: 12px; height: 12px; }
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px 14px 14px;
    background: var(--white);
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    color: var(--ink);
    transition: all var(--tr);
}
.feature-pill:hover {
    color: var(--ink);
    border-color: var(--sea-300);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.feature-pill__icon {
    width: 52px; height: 52px;
    display: grid; place-items: center;
    color: var(--white);
    border-radius: 14px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--sea-500), var(--sea-700));
    box-shadow: 0 6px 14px rgba(14, 124, 142, 0.28);
    transition: transform var(--tr);
}
.feature-pill:hover .feature-pill__icon { transform: rotate(-4deg) scale(1.06); }

/* per-amenity accent gradients */
.feature-pill__icon--slider   { background: linear-gradient(135deg, #24a9bd, #0e7c8e); box-shadow: 0 6px 14px rgba(14, 124, 142, 0.28); }
.feature-pill__icon--karaoke  { background: linear-gradient(135deg, #a866ee, #5f3dc4); box-shadow: 0 6px 14px rgba(95, 61, 196, 0.3); }
.feature-pill__icon--jacuzzi  { background: linear-gradient(135deg, #ff9770, #d94e2e); box-shadow: 0 6px 14px rgba(217, 78, 46, 0.28); }
.feature-pill__icon--bbq      { background: linear-gradient(135deg, #ffb05c, #d97706); box-shadow: 0 6px 14px rgba(217, 119, 6, 0.28); }
.feature-pill__icon--kitchen  { background: linear-gradient(135deg, #94cc80, #3f9c40); box-shadow: 0 6px 14px rgba(63, 156, 64, 0.28); }
.feature-pill__icon--pet      { background: linear-gradient(135deg, #f6b1c5, #d64a7c); box-shadow: 0 6px 14px rgba(214, 74, 124, 0.28); }
.feature-pill__icon--pool     { background: linear-gradient(135deg, #6ec8d6, #0e7c8e); box-shadow: 0 6px 14px rgba(14, 124, 142, 0.28); }
.feature-pill__icon--wifi     { background: linear-gradient(135deg, #7ba7e8, #3b65b8); box-shadow: 0 6px 14px rgba(59, 101, 184, 0.28); }
.feature-pill__icon--aircon   { background: linear-gradient(135deg, #a0d9e8, #2596b8); box-shadow: 0 6px 14px rgba(37, 150, 184, 0.28); }
.feature-pill__icon--parking  { background: linear-gradient(135deg, #a0a7b8, #4b5563); box-shadow: 0 6px 14px rgba(75, 85, 99, 0.28); }

.feature-pill__text {
    display: flex; flex-direction: column;
    line-height: 1.2; flex: 1;
    min-width: 0;
}
.feature-pill__label {
    font-family: var(--font-heading);
    font-weight: 600; font-size: 1rem;
    color: var(--ink);
}
.feature-pill__count {
    font-size: 0.78rem;
    color: var(--text-soft);
    margin-top: 3px;
}
.feature-pill__arrow {
    color: var(--primary);
    flex-shrink: 0;
    transition: transform var(--tr-fast);
}
.feature-pill:hover .feature-pill__arrow {
    transform: translateX(4px);
    color: var(--accent);
}

/* ===========================
   WHY US
   =========================== */
.section-why { background: var(--bg); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.why-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--tr);
    animation: why-pop 0.6s var(--ease) both;
    animation-delay: calc(var(--i) * 80ms);
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
@keyframes why-pop {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.why-card__icon {
    width: 72px; height: 72px;
    margin: 0 auto 20px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--sea-100), var(--sand-100));
    border-radius: 50%;
}
.why-card__title { font-size: 1.2rem; margin-bottom: 10px; }
.why-card__desc { color: var(--text-soft); font-size: 0.95rem; margin: 0; }

/* ===========================
   TOUR GRID
   =========================== */
.section-tour { background: var(--sand-100); }

.tour-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 860px) { .tour-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } }

.tour-card {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow-sm);
    transition: all var(--tr);
    isolation: isolate;
    display: block;
}
.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.tour-card__iframe,
.tour-card__thumb {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    border: 0;
    transition: transform 700ms var(--ease);
}
.tour-card:hover .tour-card__thumb { transform: scale(1.05); }
.tour-card__iframe { pointer-events: none; }
.tour-card__scrim {
    position: absolute; inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity var(--tr);
}
.tour-card:hover .tour-card__scrim { opacity: 1; }
.tour-card__caption {
    position: absolute;
    left: 12px; right: 12px; bottom: 12px;
    z-index: 2;
    color: var(--white);
    font-size: 0.78rem;
    line-height: 1.4;
    font-weight: 500;
    opacity: 0;
    transform: translateY(6px);
    transition: all var(--tr);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}
.tour-card:hover .tour-card__caption {
    opacity: 1;
    transform: translateY(0);
}
.tour-card__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 2;
    width: 48px; height: 48px;
    display: grid; place-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    opacity: 0;
    transition: all var(--tr);
}
.tour-card:hover .tour-card__play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.tour-card__badge {
    position: absolute;
    top: 10px; right: 10px;
    width: 30px; height: 30px;
    display: grid; place-items: center;
    background: rgba(0, 0, 0, 0.75);
    color: var(--white);
    border-radius: 50%;
    z-index: 2;
    backdrop-filter: blur(6px);
}
.tour-card__badge--youtube {
    background: #ff0000;
    color: var(--white);
}

/* ===========================
   CTA STRIP (with photo bg)
   =========================== */
.section-cta { padding: 48px 0 64px; background: var(--bg); }

.cta-strip {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    color: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    isolation: isolate;
}
.cta-strip__bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.cta-strip__scrim {
    position: absolute; inset: 0;
    z-index: 1;
    background:
        linear-gradient(135deg, rgba(255, 107, 74, 0.85) 0%, rgba(6, 42, 51, 0.88) 100%);
}
.cta-strip__body {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 36px;
    align-items: center;
}
.cta-strip__text h2 { color: var(--white); margin-bottom: 8px; }
.cta-strip__text p  { opacity: 0.92; margin: 0; }
.cta-strip__actions {
    display: flex; gap: 12px; flex-wrap: wrap;
}
@media (max-width: 820px) {
    .cta-strip { padding: 44px 28px; }
    .cta-strip__body {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cta-strip__actions { justify-content: center; }
}

/* ===========================
   EMPTY STATES
   =========================== */
.section-empty {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px 24px;
    text-align: center;
    color: var(--text-soft);
    border: 2px dashed var(--line);
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 56px 0 0;
    margin-top: clamp(48px, 6vw, 88px);
}
.site-footer__wave {
    position: absolute;
    top: -1px; left: 0; right: 0;
    line-height: 0;
    transform: translateY(-99%);
}
.site-footer__wave svg { width: 100%; height: 60px; fill: var(--primary-dark); }

.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr 1.3fr;
    gap: 48px;
    padding-bottom: 48px;
}
@media (max-width: 820px) {
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .site-footer__col--brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) { .site-footer__grid { grid-template-columns: 1fr; } }

.site-brand--footer { color: var(--white); margin-bottom: 16px; }
.site-brand--footer .site-brand__mark { background: rgba(255, 255, 255, 0.1); }
.site-brand--footer .site-brand__mark svg { stroke: var(--white); }
.site-brand--footer .site-brand__name { color: var(--white); }
.site-brand--footer .site-brand__sub  { color: rgba(255, 255, 255, 0.7); }

.site-footer__about {
    font-size: 0.92rem; line-height: 1.7;
    margin-bottom: 20px;
    max-width: 340px;
}
.site-footer__follow-label {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 18px 0 8px;
}
.site-footer__socials { display: flex; gap: 10px; }
.site-footer__socials a {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    transition: all var(--tr-fast);
}
.site-footer__socials a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.site-footer__heading {
    color: var(--white);
    font-size: 1.02rem;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.site-footer__list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column;
    gap: 10px;
}
.site-footer__list a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    transition: color var(--tr-fast);
}
.site-footer__list a:hover { color: var(--white); }
.site-footer__list--contact li {
    display: flex; align-items: flex-start; gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}
.site-footer__list--contact svg {
    flex-shrink: 0; margin-top: 3px;
    color: var(--sea-300);
}
.site-footer__address span { flex: 1; }

.site-footer__cta-text {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 18px;
    font-size: 0.92rem;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}
.site-footer__bottom p { margin: 0; }

/* ===========================
   CHAT WIDGET
   =========================== */
.chat-widget {
    position: fixed;
    bottom: 20px; right: 20px;
    z-index: 90;
}
.chat-widget__toggle {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: grid; place-items: center;
    box-shadow: var(--shadow-coral);
    transition: all var(--tr);
}
.chat-widget__toggle:hover {
    transform: scale(1.05);
    background: var(--accent-dark);
}
.chat-widget__toggle .chat-widget__icon-close { display: none; }
.chat-widget__toggle[aria-expanded="true"] .chat-widget__icon-open  { display: none; }
.chat-widget__toggle[aria-expanded="true"] .chat-widget__icon-close { display: block; }

.chat-widget__menu {
    position: absolute;
    bottom: 68px; right: 0;
    display: flex; flex-direction: column;
    gap: 8px;
    min-width: 200px;
}
.chat-widget__menu[hidden] { display: none; }

.chat-widget__item {
    display: flex;
    align-items: center; justify-content: flex-start; gap: 10px;
    padding: 12px 18px;
    background: var(--white);
    border-radius: var(--radius-pill);
    color: var(--ink);
    font-weight: 600;
    font-size: 0.92rem;
    box-shadow: var(--shadow);
    transition: all var(--tr-fast);
    animation: chat-in 0.3s var(--ease) both;
}
.chat-widget__item:nth-child(2) { animation-delay: 50ms; }
.chat-widget__item:nth-child(3) { animation-delay: 100ms; }
.chat-widget__item:hover {
    transform: translateX(-4px);
    color: var(--ink);
}
.chat-widget__item--line  { border-left: 4px solid #06c755; }
.chat-widget__item--line  svg { color: #06c755; }
.chat-widget__item--phone { border-left: 4px solid var(--accent); }
.chat-widget__item--phone svg { color: var(--accent); }
.chat-widget__item--fb    { border-left: 4px solid #1877f2; }
.chat-widget__item--fb    svg { color: #1877f2; }
.chat-widget__item--tiktok { border-left: 4px solid #010101; }
.chat-widget__item--tiktok svg { color: #010101; }
@keyframes chat-in {
    from { opacity: 0; transform: translateX(10px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* =========================================================
   PAGE COVER (shared — about, contact)
   ========================================================= */
.page-cover {
    position: relative;
    min-height: 360px;
    padding: 140px 0 60px;
    color: var(--white);
    overflow: hidden;
}
.page-cover__media {
    position: absolute; inset: 0; z-index: 0;
    /* Brand-coloured base so covers read even when photo has distracting text overlays */
    background:
        radial-gradient(ellipse at 20% 30%, rgba(36, 169, 189, 0.55) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 75%, rgba(255, 107, 74, 0.35) 0%, transparent 50%),
        linear-gradient(135deg, var(--sea-900) 0%, var(--sea-700) 60%, var(--primary-dark) 100%);
}
.page-cover__bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 1;
}
.page-cover__scrim {
    position: absolute; inset: 0;
    /* Darker on the left where the title sits; fades right to keep photo visible */
    background:
        linear-gradient(90deg, rgba(6, 42, 51, 0.72) 0%, rgba(6, 42, 51, 0.45) 55%, rgba(6, 42, 51, 0.25) 100%),
        linear-gradient(180deg, rgba(6, 42, 51, 0.25) 0%, rgba(6, 42, 51, 0.4) 100%);
}
.page-cover__inner {
    position: relative; z-index: 1;
    /* inherit .container centering (max-width 1400 + margin auto + padding 24)
       so edges line up with filter/grid below. Individual elements cap line-length. */
}

.page-cover__crumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 20px;
}
.page-cover__crumbs a {
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--tr-fast);
}
.page-cover__crumbs a:hover { color: var(--white); }
.page-cover__crumbs span[aria-hidden] { opacity: 0.5; }
.page-cover__title {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.1;
    margin: 0 0 14px;
    max-width: 820px;
    text-shadow: 0 2px 12px rgba(6, 42, 51, 0.55);
}
.page-cover__subtitle {
    color: var(--white);
    font-size: clamp(0.98rem, 1.3vw, 1.1rem);
    opacity: 0.95;
    max-width: 640px;
    margin: 0;
    text-shadow: 0 1px 8px rgba(6, 42, 51, 0.5);
}

/* =========================================================
   ABOUT — STORY
   ========================================================= */
.section-story { background: var(--bg); }

.story-wrap {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
}
.story-wrap--no-image {
    grid-template-columns: 1fr;
}
.story-wrap--no-image .story-content {
    max-width: 820px;
}
@media (max-width: 960px) { .story-wrap { grid-template-columns: 1fr; gap: 48px; } }

.story-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    max-width: 520px;
    margin-inline: auto;
    border-radius: var(--radius-lg);
}
.story-visual__image {
    position: relative;
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.story-visual__image--placeholder {
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--sea-100), var(--sand-100));
}
.story-visual__badge {
    position: absolute;
    bottom: -24px; right: -24px;
    z-index: 3;
    display: flex; flex-direction: column; align-items: center;
    padding: 18px 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 120px;
}
.story-visual__badge strong {
    font-family: var(--font-heading);
    font-size: 2.2rem; font-weight: 800;
    color: var(--coral-700);
    line-height: 1; letter-spacing: -0.02em;
}
.story-visual__badge span {
    font-size: 0.8rem;
    color: var(--text-soft);
    margin-top: 4px; white-space: nowrap;
}
@media (max-width: 480px) {
    .story-visual__badge { bottom: -18px; right: -12px; padding: 14px 18px; min-width: 100px; }
    .story-visual__badge strong { font-size: 1.8rem; }
}
.story-visual__accent {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    filter: blur(32px);
}
.story-visual__accent--a {
    top: -30px; left: -40px;
    width: 180px; height: 180px;
    background: var(--coral-300);
    opacity: 0.5;
}
.story-visual__accent--b {
    bottom: 40px; left: -60px;
    width: 240px; height: 240px;
    background: var(--sea-300);
    opacity: 0.55;
}

.story-content { min-width: 0; }
.story-content .section__eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    margin-bottom: 14px;
}
.story-content__title {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    margin-bottom: 18px;
    letter-spacing: -0.015em;
}
.story-content__para {
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.story-content__meta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 18px;
    margin-top: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    color: var(--text-soft);
    flex-wrap: wrap;
}
.story-content__meta svg { color: var(--primary); flex-shrink: 0; }

/* =========================================================
   ABOUT — STATS
   ========================================================= */
.section-stats {
    padding: 40px 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--sea-100) 100%);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
@media (max-width: 820px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-card {
    padding: 28px 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--tr);
    animation: stat-pop 0.6s var(--ease) both;
    animation-delay: calc(var(--i) * 80ms);
}
.stat-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.stat-card__num {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--primary-dark);
    margin-bottom: 6px;
}
.stat-card__label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-soft);
}
@keyframes stat-pop {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   ABOUT — VALUES
   ========================================================= */
.section-values { background: var(--sea-100); }

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 1024px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .values-grid { grid-template-columns: 1fr; } }

.value-card {
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--tr);
    animation: stat-pop 0.6s var(--ease) both;
    animation-delay: calc(var(--i) * 80ms);
}
.value-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.value-card__icon {
    width: 56px; height: 56px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--sea-500), var(--sea-700));
    border-radius: 16px;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(14, 124, 142, 0.3);
    color: var(--white);
}
.value-card__emoji { font-size: 28px; line-height: 1; }
.value-card__title { font-size: 1.1rem; margin-bottom: 8px; }
.value-card__desc {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

/* =========================================================
   ABOUT — TEAM
   ========================================================= */
.section-team { background: var(--bg); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}
@media (max-width: 760px) { .team-grid { grid-template-columns: 1fr; max-width: 360px; } }

.team-card {
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--tr);
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.team-card__photo {
    width: 120px; height: 120px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--sand-100);
    box-shadow: 0 4px 16px rgba(10, 37, 64, 0.08);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__photo-placeholder {
    width: 100%; height: 100%;
    display: grid; place-items: center;
    font-family: var(--font-heading);
    font-size: 2.6rem; font-weight: 700;
    background: linear-gradient(135deg, var(--sea-300), var(--sea-500));
    color: var(--white);
}
.team-card__name { font-size: 1.08rem; margin-bottom: 4px; }
.team-card__role { color: var(--text-soft); font-size: 0.88rem; margin: 0; }

/* =========================================================
   PAGE COVER — compact variant (contact)
   ========================================================= */
.page-cover--compact {
    min-height: 300px;
    padding: 90px 0 50px;
}

/* =========================================================
   CONTACT — QUICK CARDS
   ========================================================= */
.section-contact-cards {
    background: var(--bg);
    padding-top: 60px;
    padding-bottom: 20px;
}
.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 1100px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .contact-cards { grid-template-columns: 1fr; } }

.contact-card {
    --accent: var(--primary);
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    color: var(--ink);
    transition: all var(--tr);
    animation: stat-pop 0.55s var(--ease) both;
    animation-delay: calc(var(--i) * 80ms);
    position: relative;
    overflow: hidden;
}
.contact-card::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--tr);
}
.contact-card:hover {
    color: var(--ink);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: transparent;
}
.contact-card:hover::before { transform: scaleX(1); }
.contact-card__icon {
    width: 52px; height: 52px;
    display: grid; place-items: center;
    background: var(--accent);
    border-radius: 14px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
/* LINE card: green wordmark on default tile background */
.contact-card--line .contact-card__icon {
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 16px rgba(6, 199, 85, 0.18);
}
.contact-card--line .contact-card__icon svg path:first-child { fill: #ffffff; }
.contact-card--line .contact-card__icon svg path:last-child  { fill: #06c755; }

/* Facebook + TikTok: force white glyph on their tinted tiles */
.contact-card--facebook .contact-card__icon svg path,
.contact-card--tiktok   .contact-card__icon svg path { fill: #ffffff; }

.contact-card__body {
    flex: 1;
    display: flex; flex-direction: column;
    min-width: 0;
}
.contact-card__label {
    font-size: 0.78rem;
    color: var(--mute);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 2px;
}
.contact-card__value {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.contact-card__cta {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.85rem; font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
    transition: gap var(--tr-fast);
}
.contact-card:hover .contact-card__cta { gap: 8px; }
@media (max-width: 520px) { .contact-card__cta { display: none; } }

/* =========================================================
   CONTACT — FORM + MAP SPLIT
   ========================================================= */
.section-contact-main { background: var(--bg); padding-top: 40px; }

.contact-split {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: start;
}
@media (max-width: 960px) { .contact-split { grid-template-columns: 1fr; gap: 40px; } }

.contact-form-wrap {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
@media (max-width: 560px) { .contact-form-wrap { padding: 28px 20px; } }

.contact-form-wrap__head { margin-bottom: 28px; }
.contact-form-wrap__head .section__eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    margin-bottom: 10px;
}
.contact-form-wrap__head h2 {
    font-size: clamp(1.4rem, 2.8vw, 1.8rem);
    margin-bottom: 8px;
}
.contact-form-wrap__head p { color: var(--text-soft); margin: 0; }

.contact-flash {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 22px;
    font-size: 0.95rem; font-weight: 500;
}
.contact-flash--ok  { background: #dcf5e6; color: #166534; border: 1px solid #a7e5c1; }
.contact-flash--ok  svg { color: #166534; }
.contact-flash--err { background: #fde3e3; color: #991b1b; border: 1px solid #fab4b4; }
.contact-flash--err svg { color: #991b1b; }

.contact-form__honey {
    position: absolute;
    left: -9999px; width: 1px; height: 1px; overflow: hidden;
}

.contact-form__row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 18px; margin-bottom: 18px;
}
@media (max-width: 560px) { .contact-form__row { grid-template-columns: 1fr; gap: 14px; } }

.contact-form__field {
    display: flex; flex-direction: column;
    margin-bottom: 18px;
}
.contact-form__row .contact-form__field { margin-bottom: 0; }
.contact-form__field label {
    font-size: 0.85rem; font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
}
.contact-form__req { color: var(--accent); }
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
    font-family: inherit;
    font-size: 0.98rem;
    color: var(--ink);
    padding: 12px 14px;
    background: var(--cloud);
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    transition: all var(--tr-fast);
    outline: none;
    width: 100%;
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--sea-100);
}
.contact-form__field textarea { resize: vertical; min-height: 120px; }

.contact-form__submit {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    margin-top: 8px;
}
.contact-form__note {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.8rem;
    color: var(--text-soft);
    margin: 0;
    flex: 1; min-width: 200px;
}
.contact-form__note svg { color: var(--primary); flex-shrink: 0; }

.contact-info {
    display: flex; flex-direction: column;
    gap: 20px;
}
.contact-info__map {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--sea-100);
}
.contact-info__map iframe {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}
.contact-info__map-placeholder {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px; padding: 24px;
    text-align: center;
    color: var(--text-soft);
}
.contact-info__map-placeholder p { margin: 0; font-size: 0.9rem; }

.contact-info__block {
    padding: 22px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--line);
}
.contact-info__heading {
    display: flex; align-items: center; gap: 8px;
    font-size: 1rem; font-weight: 700;
    color: var(--ink);
    margin: 0 0 12px;
}
.contact-info__list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.contact-info__list li {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px;
    font-size: 0.92rem;
}
.contact-info__list li span { color: var(--text-soft); }
.contact-info__list li strong { color: var(--ink); font-weight: 600; }

.contact-info__address {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.65;
}

.contact-info__socials { display: flex; flex-wrap: wrap; gap: 8px; }
.contact-info__social {
    --s: var(--primary);
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    background: var(--cloud);
    border-radius: var(--radius-pill);
    font-size: 0.88rem; font-weight: 600;
    color: var(--ink);
    transition: all var(--tr-fast);
}
.contact-info__social svg { color: var(--s); }
.contact-info__social:hover {
    background: var(--s);
    color: var(--white);
    transform: translateY(-2px);
}
.contact-info__social:hover svg { color: var(--white); }
.contact-info__social--fb { --s: #1877f2; }
.contact-info__social--tt { --s: #0a2540; }
.contact-info__social--ig { --s: #e1306c; }

/* =========================================================
   HEADER — SEARCH TOGGLE + POPUP
   ========================================================= */
.site-header__search-toggle {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    background: var(--cloud);
    border-radius: 50%;
    color: var(--ink);
    transition: all var(--tr-fast);
}
.site-header__search-toggle:hover {
    background: var(--sea-100);
    color: var(--primary-dark);
    transform: scale(1.05);
}
.site-header__search-toggle[aria-expanded="true"] {
    background: var(--primary-dark);
    color: var(--white);
}

.site-search {
    background: var(--white);
    border-top: 1px solid var(--line);
    animation: search-slide 0.25s var(--ease) both;
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.08);
}
.site-search[hidden] { display: none; }
@keyframes search-slide {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.site-search__form {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    max-width: 800px;
    margin: 10px auto;
    background: var(--cloud);
    border-radius: var(--radius-pill);
}
.site-search__form:focus-within {
    background: var(--white);
    box-shadow: 0 0 0 3px var(--sea-100);
}
.site-search__input {
    flex: 1;
    border: 0;
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    color: var(--ink);
    padding: 8px 0;
    outline: none;
    min-width: 0;
}
.site-search__close {
    width: 36px; height: 36px;
    display: grid; place-items: center;
    border-radius: 50%;
    color: var(--text-soft);
    transition: all var(--tr-fast);
    flex-shrink: 0;
}
.site-search__close:hover {
    background: var(--sea-100);
    color: var(--ink);
}

@media (max-width: 560px) {
    .site-header__search-toggle { display: none; }
}
