:root {
    --blue: #3461a5;
    --navy: #2b3a55;
    --cream: #f9f6f0;
    --yellow: #ffd166;
    --sky: #4ccbfb;
    --mint: #55d2ac;
    --coral: #ff9a78;
    --rose: #ff6f91;
    --violet: #7567f8;
    --leaf: #9bdc65;
    --ink: #263143;
    --muted: #657084;
    --line: rgba(43, 58, 85, .14);
    --shadow: 0 18px 45px rgba(43, 58, 85, .12);
    --shadow-strong: 0 28px 80px rgba(43, 58, 85, .18);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: "Yekan Bakh", "Vazirmatn", "Segoe UI", Tahoma, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.9;
    overflow-x: hidden;
    direction: rtl;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 10px clamp(16px, 4vw, 56px);
    background: rgba(249, 246, 240, .88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand img,
.brand .custom-logo {
    width: 92px;
    height: auto;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    gap: 22px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.main-nav a {
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn,
.icon-link,
.menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 0;
    border-radius: 8px;
    padding: 10px 18px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 10px 22px rgba(52, 97, 165, .22);
}

.btn-secondary {
    background: #fff;
    color: var(--blue);
    border: 1px solid var(--line);
}

.icon-link svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-link,
.menu-toggle {
    width: 44px;
    padding: 0;
    background: #fff;
    color: var(--blue);
    border: 1px solid var(--line);
}

.menu-toggle {
    display: none;
}

.section-inner {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: clamp(58px, 8vw, 108px) 0;
}

.band {
    background: #fff;
}

.site-scroll-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 80;
    height: 4px;
    background: linear-gradient(90deg, var(--coral), var(--yellow), var(--mint), var(--sky));
    transform: scaleX(var(--scroll-progress, 0));
    transform-origin: right center;
    pointer-events: none;
}

.domino-home-content {
    background:
        linear-gradient(180deg, #fff7d7 0%, #ecfbff 22%, #fff4ef 48%, #eefaf4 72%, #fff 100%);
}

.domino-home-content > .wp-block-group,
.domino-home-content > section {
    position: relative;
    overflow: clip;
}

.home-hero {
    display: grid;
    grid-template-columns: minmax(280px, 520px) 1fr;
    gap: clamp(24px, 5vw, 72px);
    align-items: center;
    min-height: calc(100vh - 76px);
    padding: clamp(36px, 6vw, 76px) clamp(16px, 5vw, 70px);
    background:
        linear-gradient(135deg, rgba(255, 209, 102, .9), rgba(76, 203, 251, .72) 42%, rgba(85, 210, 172, .82) 100%);
}

.home-hero::after,
.play-loop::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 11px;
    background: repeating-linear-gradient(90deg, var(--coral) 0 28px, var(--yellow) 28px 56px, var(--mint) 56px 84px, var(--sky) 84px 112px, var(--blue) 112px 140px);
}

.home-hero__copy {
    position: relative;
    z-index: 2;
}

.home-hero h1 {
    max-width: 11ch;
}

.home-hero .lead {
    max-width: 560px;
    color: rgba(38, 49, 67, .82);
}

.home-hero__visual {
    position: relative;
    z-index: 1;
    transform: translateY(calc(var(--scroll-y, 0) * -0.035px));
}

.home-hero__visual img,
.home-image-card img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-strong);
}

.home-hero__visual img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.home-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.home-hero__stats span,
.floating-pill,
.club-strip span {
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(255, 255, 255, .75);
    backdrop-filter: blur(14px);
}

.home-hero__stats span {
    min-height: 74px;
    display: grid;
    place-items: center;
    padding: 10px;
    border-radius: 8px;
    color: var(--navy);
    font-weight: 900;
    text-align: center;
}

.color-band {
    padding: clamp(58px, 8vw, 108px) 0;
}

.color-band .section-inner {
    padding: 0;
}

.band-sky {
    background: #dff7ff;
}

.band-mint {
    background: #e1f8ed;
}

.band-coral {
    background: #fff0e9;
}

.band-yellow {
    background: #fff3bf;
}

.play-loop {
    background: var(--navy);
    color: #fff;
}

.play-loop h2,
.play-loop h3,
.play-loop .eyebrow {
    color: #fff;
}

.play-loop .lead {
    color: rgba(255, 255, 255, .78);
}

.service-card {
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.service-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: var(--shadow-strong);
    border-color: color-mix(in srgb, var(--accent), #fff 34%);
}

.service-card:nth-child(even):hover {
    transform: translateY(-8px) rotate(1deg);
}

.service-card::after {
    content: "";
    position: absolute;
    inset: auto -24px -34px auto;
    width: 112px;
    height: 112px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent), transparent 70%);
}

.experience-rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    counter-reset: rail;
}

.experience-rail > * {
    position: relative;
    min-height: 180px;
    padding: 22px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.experience-rail > *::before {
    counter-increment: rail;
    content: "0" counter(rail);
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 8px;
    background: var(--navy);
    color: #fff;
    font-weight: 900;
}

.home-image-card {
    position: relative;
}

.floating-pill {
    position: absolute;
    right: clamp(14px, 3vw, 28px);
    bottom: clamp(14px, 3vw, 28px);
    max-width: 260px;
    padding: 14px 16px;
    border-radius: 8px;
    color: var(--navy);
    font-weight: 900;
}

.editable-empty-state {
    min-height: 68vh;
}

body.home {
    background: #fff;
    direction: ltr;
}

.home .site-header,
.home .site-footer {
    direction: rtl;
}

.home #content,
.home .domino-page-content {
    direction: ltr;
}

.home .site-header {
    position: fixed;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(5, 28, 73, .9), rgba(5, 28, 73, .38));
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.home .main-nav a {
    color: #fff;
}

.home .icon-link,
.home .menu-toggle {
    background: rgba(255, 255, 255, .14);
    color: #fff;
    border-color: rgba(255, 255, 255, .22);
}

.home .btn-primary {
    background: var(--yellow);
    color: var(--navy);
    box-shadow: 0 12px 26px rgba(255, 209, 102, .28);
}

.dp-ui-home {
    --night: #071b4d;
    --deep: #0b2e70;
    --gold: #ffca4f;
    --soft: #f8fbff;
    --glass: rgba(255, 255, 255, .13);
    background: #fff;
    color: var(--ink);
    overflow: hidden;
}

.dp-ui-home .elementor-section {
    position: relative;
}

.dp-scroll-video-hero {
    position: relative;
    z-index: 1;
    padding: 0 !important;
    margin: 0 !important;
    background: #f8fbff;
    overflow: visible !important;
    isolation: isolate;
}

.dp-scroll-video-hero .elementor-container,
.dp-scroll-video-hero .elementor-row,
.dp-scroll-video-hero .elementor-column,
.dp-scroll-video-hero .elementor-widget-wrap,
.dp-scroll-video-hero .elementor-widget,
.dp-scroll-video-hero .elementor-widget-container {
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.dp-hero-scroll-stage {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 100vh;
    background: #f8fbff;
}

.dp-scroll-video-hero + .dp-service-deck {
    margin-top: 0 !important;
}

.dp-hero-video {
    position: relative;
    top: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    overflow: hidden;
    background: #f8fbff;
}

html.dp-hero-scroll-locked,
html.dp-hero-scroll-locked body {
    overflow: hidden !important;
    overscroll-behavior: none;
}

.dp-hero-video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    background: #f8fbff;
}

.home .site-header {
    box-sizing: border-box;
    top: clamp(10px, 1.8vw, 22px);
    left: clamp(14px, 3vw, 46px);
    right: clamp(14px, 3vw, 46px);
    width: auto;
    border: 1px solid rgba(255, 255, 255, .58);
    border-radius: 8px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 18px 42px rgba(22, 44, 88, .16);
    backdrop-filter: blur(22px) saturate(1.18);
    -webkit-backdrop-filter: blur(22px) saturate(1.18);
}

.home .main-nav a {
    color: #193256;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .55);
}

.home .icon-link,
.home .menu-toggle {
    background: rgba(255, 255, 255, .7);
    color: #254a83;
    border-color: rgba(37, 74, 131, .16);
}

.home .btn-primary {
    background: #ffca4f;
    color: #193256;
    box-shadow: 0 12px 28px rgba(255, 202, 79, .26);
}

body.home.admin-bar .dp-hero-video {
    top: 32px;
    height: calc(100vh - 32px);
    height: calc(100svh - 32px);
}

.dp-ui-hero {
    min-height: 760px;
    padding: 120px clamp(18px, 5vw, 74px) 260px;
    background:
        linear-gradient(180deg, rgba(6, 23, 65, .08), rgba(6, 23, 65, .82)),
        radial-gradient(circle at 16% 24%, rgba(255, 154, 120, .42), transparent 24%),
        linear-gradient(135deg, #06133a 0%, #0c3578 48%, #132052 100%);
    color: #fff;
    isolation: isolate;
    overflow: hidden;
}

.domino-page-content,
.dp-ui-home,
.dp-ui-home .elementor-section,
.dp-ui-home .elementor-column,
.dp-ui-home .elementor-widget,
.dp-ui-home .elementor-widget-container {
    direction: rtl;
}

.domino-page-content p,
.domino-page-content li,
.site-footer p,
.site-footer li,
.lead-popup p {
    text-align: justify;
}

.dp-ui-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 24%, rgba(255, 255, 255, .92) 0 2px, transparent 3px),
        radial-gradient(circle at 72% 18%, rgba(255, 209, 102, .9) 0 2px, transparent 3px),
        radial-gradient(circle at 84% 42%, rgba(255, 255, 255, .8) 0 1px, transparent 2px);
    background-size: 150px 140px, 210px 190px, 120px 150px;
    opacity: .55;
    pointer-events: none;
}

.dp-ui-hero .elementor-container {
    position: relative;
    z-index: 2;
    max-width: 1180px;
}

.dp-hero-art {
    position: relative;
    min-height: 480px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 34px 90px rgba(0, 0, 0, .32);
}

.dp-hero-art video,
.dp-hero-art img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    display: block;
}

.dp-hero-poster {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: var(--poster-opacity, 1);
    transition: opacity .18s linear;
}

.dp-hero-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 27, 77, .02), rgba(7, 27, 77, .36));
}

.dp-ui-eyebrow {
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 8px;
}

.dp-ui-home h1,
.dp-ui-home h2,
.dp-ui-home h3 {
    color: inherit;
}

.dp-ui-hero h1 {
    color: #fff;
    font-size: clamp(42px, 6vw, 82px);
    max-width: 9ch;
    text-shadow: 0 14px 34px rgba(0, 0, 0, .22);
}

.dp-ui-hero .elementor-widget-text-editor {
    color: rgba(255, 255, 255, .88);
    font-size: 19px;
}

.dp-ui-button .elementor-button,
.dp-ui-home .elementor-button,
.dp-ui-home a.elementor-button {
    border-radius: 999px;
    padding: 14px 26px;
    font-weight: 900;
    background: var(--gold) !important;
    color: var(--navy) !important;
    box-shadow: 0 16px 34px rgba(255, 202, 79, .26);
}

.dp-ui-hero .elementor-button {
    background: var(--gold) !important;
    color: var(--navy) !important;
    opacity: 1 !important;
}

.dp-service-deck {
    margin-top: 0;
    z-index: 4;
    padding: clamp(112px, 10vw, 156px) clamp(16px, 5vw, 74px) clamp(56px, 7vw, 92px);
    background: #fff;
}

.dp-service-deck .elementor-container {
    max-width: 1320px;
    direction: ltr;
    gap: clamp(14px, 1.6vw, 22px);
}

.dp-service-deck .elementor-column {
    direction: rtl;
}

.dp-land-card {
    position: relative;
    min-height: clamp(390px, 36vw, 500px);
    padding: 0;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .42);
    box-shadow: 0 22px 60px rgba(10, 36, 84, .13);
    color: #fff;
    transform: rotate(var(--domino-tilt, 0deg));
    transform-origin: center bottom;
    transition: transform .42s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
    text-align: center;
    isolation: isolate;
}

.dp-land-card > .elementor-widget-wrap {
    position: relative;
    min-height: clamp(390px, 36vw, 500px);
    padding: 22px 18px 18px !important;
    overflow: hidden;
    border-radius: inherit;
}

.dp-land-card:hover {
    transform: rotate(var(--domino-tilt, 0deg));
    box-shadow: 0 34px 82px rgba(10, 36, 84, .2);
}

.dp-land-card.care { background: linear-gradient(180deg, #5ad3af, #37b891); }
.dp-land-card.play { background: linear-gradient(180deg, #4fc7fb, #258edc); }
.dp-land-card.party { background: linear-gradient(180deg, #ff9279, #f25d58); }
.dp-land-card.talent { background: linear-gradient(180deg, #ffd15e, #f4ae32); color: #fff; }

.dp-land-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .28), transparent 18%),
        radial-gradient(circle at 80% 72%, rgba(255, 255, 255, .18), transparent 22%);
}

.dp-land-card h3 {
    position: relative;
    z-index: 2;
    color: #fff;
    margin: 0 0 6px;
    font-size: clamp(25px, 2.5vw, 36px);
    line-height: 1.15;
    text-align: center;
}

.dp-land-card .elementor-widget-text-editor {
    position: relative;
    z-index: 2;
    color: #fff;
    min-height: 108px;
    text-align: center;
}

.dp-land-card .elementor-widget-text-editor p {
    margin: 0;
    color: #fff;
    text-align: center;
}

.dp-land-card .dp-card-subtitle {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: clamp(15px, 1.22vw, 18px);
    font-weight: 900;
    line-height: 1.55;
}

.dp-land-card .dp-card-copy {
    font-size: clamp(14px, 1.08vw, 16px);
    font-weight: 700;
    line-height: 1.75;
    opacity: .94;
}

.dp-land-card img {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 58px;
    z-index: 1;
    width: 84%;
    height: 48%;
    object-fit: contain;
    border-radius: 0;
    margin: 0 auto;
    filter: drop-shadow(0 24px 24px rgba(10, 36, 84, .18));
}

.dp-land-card .elementor-widget-html {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 54px;
    width: 84%;
    height: 43%;
    z-index: 1;
    pointer-events: none;
}

.dp-service-graphic {
    position: static;
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 24px 24px rgba(10, 36, 84, .16));
}

.dp-land-card .elementor-widget-button {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 26px;
    text-align: center;
}

.dp-land-card .elementor-button-wrapper {
    text-align: center;
}

.dp-land-card .elementor-button,
.dp-land-card a.elementor-button {
    min-width: 148px;
    border-radius: 999px !important;
    padding: 10px 22px !important;
    background: #fff !important;
    color: var(--card-accent, #2d7bbd) !important;
    box-shadow: 0 10px 26px rgba(31, 54, 94, .12);
    font-weight: 900;
}

.dp-land-card.care { --card-accent: #31a982; }
.dp-land-card.play { --card-accent: #248bd6; }
.dp-land-card.party { --card-accent: #e95450; }
.dp-land-card.talent { --card-accent: #db8a15; }

.dp-ui-floating {
    display: none !important;
}

.dp-section-title {
    text-align: center;
    margin: 0 auto 28px;
}

.dp-section-title h2 {
    color: var(--navy);
    font-size: clamp(30px, 4vw, 50px);
}

.dp-why,
.dp-gallery,
.dp-blog {
    padding: 72px clamp(18px, 5vw, 74px);
    background: #fff;
}

.dp-why {
    background: #071b4d;
    color: #fff;
    padding: clamp(72px, 8vw, 112px) clamp(18px, 3vw, 40px);
    overflow: hidden;
}

.dp-why .elementor-container {
    width: 100% !important;
    max-width: none !important;
    align-items: center;
    gap: clamp(28px, 4vw, 58px);
}

.dp-why .elementor-row {
    align-items: center;
}

.dp-why .dp-why-copy {
    width: 38% !important;
    direction: rtl;
}

.dp-why .dp-why-media {
    width: 62% !important;
    direction: rtl;
}

.dp-why h2,
.dp-why h3,
.dp-why p {
    color: #fff;
}

.dp-why .dp-section-title {
    margin: 0 0 18px;
    text-align: right;
}

.dp-why .dp-section-title h2,
.dp-why h2 {
    color: #fff;
    text-align: right;
}

.dp-why .elementor-widget-text-editor {
    color: rgba(255, 255, 255, .86);
    font-size: 17px;
}

.dp-video-card {
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 30px 76px rgba(0, 0, 0, .28);
    background: #020b25;
}

.dp-video-card video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    min-width: 100%;
    height: auto;
}

.dp-feature-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
}

.dp-feature-row span {
    position: relative;
    display: grid;
    place-items: center;
    gap: 8px;
    min-height: 104px;
    padding: 14px 10px 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dp-feature-row span em {
    position: relative;
    display: block;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--fi-a), var(--fi-b));
    box-shadow: inset 0 -9px 14px rgba(0, 0, 0, .12), 0 10px 22px rgba(0, 0, 0, .16);
}

.dp-feature-row span em::before,
.dp-feature-row span em::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, .92);
}

.dp-feature-row span em::before {
    inset: 12px;
    border-radius: 999px;
}

.dp-feature-row span em::after {
    width: 18px;
    height: 6px;
    left: 14px;
    bottom: 9px;
    border-radius: 999px;
}

.dp-feature-row span:nth-child(1) { --fi-a: #ffd166; --fi-b: #ff8d6b; }
.dp-feature-row span:nth-child(2) { --fi-a: #4ccbfb; --fi-b: #7567f8; }
.dp-feature-row span:nth-child(3) { --fi-a: #55d2ac; --fi-b: #9bdc65; }
.dp-feature-row span:nth-child(4) { --fi-a: #ff6f91; --fi-b: #ffd166; }

.dp-feature-row span b {
    color: #fff;
    font-size: 13px;
    line-height: 1.5;
}

.dp-gallery {
    background:
        radial-gradient(circle at 14% 10%, rgba(85, 210, 172, .16), transparent 28%),
        linear-gradient(180deg, #fff 0%, #f7fbff 100%);
    overflow: hidden;
}

.dp-world-gallery {
    width: min(100%, 1180px);
    margin: 0 auto;
    direction: rtl;
}

.dp-gallery-shell {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 18px;
    align-items: center;
    margin-top: 30px;
}

.dp-gallery-viewport {
    overflow: hidden;
    direction: ltr;
    padding: 18px 4px 30px;
}

.dp-gallery-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(138px, 14vw, 184px);
    gap: clamp(18px, 2.2vw, 30px);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.dp-gallery-track::-webkit-scrollbar {
    display: none;
}

.dp-gallery-thumb {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    color: var(--navy);
    font: inherit;
    direction: rtl;
    scroll-snap-align: center;
    text-align: center;
}

.dp-gallery-thumb-media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    padding: 7px;
    background: linear-gradient(135deg, #55d2ac, #ffd166 42%, #ff6f91 72%, #4ccbfb);
    box-shadow: 0 22px 42px rgba(10, 36, 84, .16);
    transition: transform .28s ease, box-shadow .28s ease;
}

.dp-gallery-thumb:hover .dp-gallery-thumb-media,
.dp-gallery-thumb:focus-visible .dp-gallery-thumb-media {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 28px 54px rgba(10, 36, 84, .22);
}

.dp-world-gallery .dp-gallery-thumb .dp-gallery-thumb-media img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    border: 6px solid #fff !important;
    background: #fff;
}

.dp-gallery-play {
    position: absolute;
    inset: auto 14px 14px auto;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 8px 20px rgba(7, 27, 77, .22);
}

.dp-gallery-play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 53%;
    width: 0;
    height: 0;
    border-block: 8px solid transparent;
    border-left: 12px solid #071b4d;
    transform: translate(-50%, -50%);
}

.dp-gallery-thumb-title {
    display: block;
    margin-top: 13px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.5;
}

.dp-gallery-arrow {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #071b4d;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(7, 27, 77, .14);
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.dp-gallery-arrow:hover,
.dp-gallery-arrow:focus-visible {
    background: #071b4d;
    color: #fff;
    transform: translateY(-2px);
}

.dp-gallery-arrow svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dp-gallery-cta {
    margin-top: 8px;
    text-align: center;
}

.dp-gallery-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 999px;
    background: #071b4d;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(7, 27, 77, .18);
}

.dp-gallery-button:hover {
    color: #fff;
    background: #14347f;
}

.dp-gallery-lightbox[hidden] {
    display: none;
}

html.dp-gallery-open,
html.dp-gallery-open body {
    overflow: hidden;
}

.dp-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10020;
    display: grid;
    place-items: center;
    padding: clamp(18px, 4vw, 52px);
    background: rgba(7, 20, 46, .78);
    backdrop-filter: blur(12px);
}

.dp-gallery-lightbox-frame {
    width: min(100%, 980px);
    max-height: 86vh;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #071b4d;
    box-shadow: 0 34px 90px rgba(0, 0, 0, .35);
}

.dp-gallery-lightbox-frame img,
.dp-gallery-lightbox-frame video {
    display: block;
    width: 100%;
    max-height: 86vh;
    object-fit: contain;
    background: #061331;
}

.dp-gallery-lightbox-caption {
    margin: 0;
    padding: 14px 18px 16px;
    color: #fff;
    text-align: center;
    font-weight: 800;
    background: #071b4d;
}

.dp-gallery-lightbox-close {
    position: fixed;
    top: clamp(14px, 3vw, 28px);
    left: clamp(14px, 3vw, 28px);
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .95);
    color: #071b4d;
    cursor: pointer;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .22);
}

.dp-gallery-lightbox-close svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
}

.dp-reserve-strip {
    margin: 24px clamp(18px, 7vw, 120px);
    padding: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, #55d2ac, #7ee4c6);
    box-shadow: 0 24px 70px rgba(55, 171, 137, .25);
    overflow: hidden;
}

.dp-reserve-strip h2 {
    color: #fff;
    font-size: clamp(28px, 4vw, 46px);
}

.dp-calendar-mock {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 14px;
}

.dp-calendar-mock > div {
    min-height: 190px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
    padding: 18px;
}

.dp-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 7px;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

.dp-calendar-days b {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    margin: auto;
    border-radius: 999px;
}

.dp-calendar-days .is-active {
    background: var(--mint);
    color: #fff;
}

.dp-time-list {
    display: grid;
    gap: 10px;
}

.dp-time-list span {
    display: grid;
    place-items: center;
    min-height: 38px;
    border-radius: 8px;
    background: #f1f5f9;
    color: var(--navy);
    font-weight: 900;
}

.dp-time-list .is-active {
    background: var(--mint);
    color: #fff;
}

.dp-events {
    display: none;
}

.dp-events-train-elementor-section,
.dp-events-train-elementor-section > .elementor-container,
.dp-events-train-elementor-section .elementor-container,
.dp-events-train-elementor-section .elementor-row,
.dp-events-train-elementor-section .elementor-column,
.dp-events-train-elementor-section .elementor-widget-wrap,
.dp-events-train-elementor-section .elementor-widget,
.dp-events-train-elementor-section .elementor-widget-container {
    width: 100% !important;
    max-width: none !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.dp-events-train-section {
    --train-piece-height: clamp(360px, 33.5vw, 488px);
    position: relative;
    direction: rtl;
    overflow: hidden;
    padding: clamp(72px, 7vw, 112px) 0 clamp(54px, 6vw, 86px);
    background: #F9F6F0;
    color: #2B3A55;
    font-family: inherit;
}

.dp-events-train-container {
    position: relative;
    width: min(1440px, 100%);
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 56px);
}

.dp-events-train-heading {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    gap: 12px;
    margin: 0 auto clamp(38px, 5vw, 76px);
    text-align: center;
}

.dp-events-train-heading h2 {
    margin: 0;
    color: #3461A5;
    font-size: clamp(34px, 5vw, 70px);
    font-weight: 900;
    line-height: 1.25;
}

.dp-events-train-heading p {
    margin: 0;
    color: #2B3A55;
    font-size: clamp(16px, 1.5vw, 22px);
    font-weight: 800;
}

.dp-events-decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.dp-events-decor--star-top {
    top: clamp(18px, 3.5vw, 42px);
    left: 50%;
    width: clamp(64px, 7vw, 100px);
    transform: translateX(-50%);
}

.dp-events-decor--cloud-left {
    top: clamp(180px, 19vw, 280px);
    left: clamp(10px, 7vw, 120px);
    width: clamp(118px, 13vw, 190px);
    opacity: .9;
}

.dp-events-decor--cloud-right {
    top: clamp(158px, 17vw, 250px);
    right: clamp(10px, 7vw, 120px);
    width: clamp(118px, 13vw, 190px);
    opacity: .9;
}

.dp-events-decor--wave {
    top: clamp(235px, 24vw, 335px);
    left: 50%;
    width: 110px;
    transform: translateX(-50%);
}

.dp-events-decor--trail-left {
    top: clamp(118px, 12vw, 185px);
    left: clamp(210px, 25vw, 380px);
    width: clamp(78px, 8vw, 130px);
}

.dp-events-decor--trail-right {
    top: clamp(118px, 12vw, 185px);
    right: clamp(210px, 25vw, 380px);
    width: clamp(78px, 8vw, 130px);
}

.dp-events-decor--star-left {
    top: clamp(176px, 18vw, 250px);
    left: clamp(130px, 22vw, 360px);
    width: clamp(34px, 4vw, 54px);
}

.dp-events-decor--star-right {
    top: clamp(182px, 15vw, 225px);
    right: clamp(180px, 21vw, 340px);
    width: clamp(30px, 3.5vw, 46px);
}

.dp-events-train-shell {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: end;
    min-height: var(--train-piece-height);
}

.dp-events-rail {
    position: absolute;
    right: 50%;
    bottom: 0;
    z-index: 0;
    width: 100vw;
    height: var(--train-piece-height);
    transform: translateX(50%);
    background-image: url("../images/events-train/bgTrain.png");
    background-repeat: repeat-x;
    background-position: bottom center;
    background-size: auto 100%;
    pointer-events: none;
}

.dp-events-train-scroll {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    overflow: visible;
}

.dp-events-train {
    display: flex;
    flex-direction: row;
    direction: ltr;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    width: max-content;
    min-width: 0;
    margin: 0 auto;
    animation: dp-train-idle 6s ease-in-out infinite;
}

.dp-train-piece {
    position: relative;
    display: block;
    flex: 0 0 auto;
    line-height: 0;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .48s ease, transform .48s ease, filter .3s ease;
}

.dp-events-train.is-visible .dp-train-piece {
    opacity: 1;
    transform: translateY(0);
}

.dp-events-train.is-visible .dp-train-piece:nth-child(1) {
    transition-delay: 0s;
}

.dp-events-train.is-visible .dp-train-piece:nth-child(2) {
    transition-delay: .15s;
}

.dp-events-train.is-visible .dp-train-piece:nth-child(3) {
    transition-delay: .3s;
}

.dp-events-train.is-visible .dp-train-piece:nth-child(4) {
    transition-delay: .45s;
}

.dp-events-train.is-visible .dp-train-piece:nth-child(5) {
    transition-delay: .6s;
}

.dp-events-train-section .dp-train-piece > img {
    display: block;
    width: auto;
    max-width: none;
    height: var(--train-piece-height) !important;
    object-fit: contain;
}

.dp-train-piece--wagon {
    color: #2B3A55;
    text-decoration: none;
    cursor: pointer;
}

.dp-train-piece--wagon:hover,
.dp-train-piece--wagon:focus-visible {
    z-index: 4;
    transform: translateY(-8px) scale(1.02);
    filter: drop-shadow(0 18px 26px rgba(43, 58, 85, .18));
    outline: none;
}

.dp-wagon-info {
    position: absolute;
    inset: 22% 13% 20%;
    direction: rtl;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 1vw, 14px);
    text-align: center;
    line-height: 1.45;
}

.dp-wagon-icon {
    display: grid;
    place-items: center;
    width: clamp(40px, 4vw, 58px);
    height: clamp(40px, 4vw, 58px);
}

.dp-wagon-icon img,
.dp-wagon-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dp-wagon-title {
    display: -webkit-box;
    max-width: 9ch;
    overflow: hidden;
    color: #2B3A55;
    font-size: clamp(15px, 1.45vw, 24px);
    font-weight: 900;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.dp-wagon-date {
    color: var(--event-color, #3461A5);
    font-size: clamp(13px, 1.1vw, 18px);
    font-weight: 900;
    line-height: 1.4;
}

.dp-events-train-cta {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-top: clamp(28px, 4vw, 56px);
}

.dp-events-train-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    padding: 0 34px;
    border: 2px solid #3461A5;
    border-radius: 999px;
    background: transparent;
    color: #3461A5;
    font-size: clamp(15px, 1.3vw, 20px);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 30px rgba(52, 97, 165, .12);
    transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.dp-events-train-cta svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dp-events-train-cta a:hover,
.dp-events-train-cta a:focus-visible {
    background: #3461A5;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(52, 97, 165, .2);
}

html.dp-events-train-in-view .dp-floating-contact {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(14px);
    transition: opacity .22s ease, transform .22s ease;
}

@keyframes dp-train-idle {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(3px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .dp-events-train {
        animation: none;
    }

    .dp-train-piece,
    .dp-events-train.is-visible .dp-train-piece,
    .dp-train-piece--wagon:hover,
    .dp-train-piece--wagon:focus-visible {
        transform: none;
        transition: none;
    }
}

@media (max-width: 1024px) {
    .dp-events-train-section {
        --train-piece-height: clamp(250px, 34vw, 360px);
    }

    .dp-events-train-heading {
        margin-bottom: clamp(32px, 5vw, 54px);
    }
}

@media (max-width: 767px) {
    .dp-events-train-section {
        --train-piece-height: 300px;
        padding: 68px 0 52px;
    }

    .dp-events-train-container {
        padding: 0;
    }

    .dp-events-train-heading {
        padding: 0 18px;
        margin-bottom: 28px;
    }

    .dp-events-train-heading h2 {
        font-size: clamp(30px, 10vw, 42px);
    }

    .dp-events-train-heading p {
        max-width: 30ch;
        font-size: 15px;
    }

    .dp-events-decor--cloud-left,
    .dp-events-decor--cloud-right {
        width: 104px;
        top: 170px;
    }

    .dp-events-decor--cloud-left {
        left: -20px;
    }

    .dp-events-decor--cloud-right {
        right: -20px;
    }

    .dp-events-decor--trail-left,
    .dp-events-decor--trail-right {
        display: none;
    }

    .dp-events-decor--star-left {
        left: 22px;
        top: 148px;
    }

    .dp-events-decor--star-right {
        right: 28px;
        top: 126px;
    }

    .dp-events-train-scroll {
        display: block;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 18px;
        scrollbar-width: none;
    }

    .dp-events-train-scroll::-webkit-scrollbar {
        display: none;
    }

    .dp-events-train {
        justify-content: flex-start;
        min-width: max-content;
        margin: 0;
    }

    .dp-train-piece {
        scroll-snap-align: start;
    }

    .dp-wagon-info {
        inset: 23% 13% 21%;
        gap: 7px;
    }

    .dp-wagon-icon {
        width: 42px;
        height: 42px;
    }

    .dp-wagon-title {
        font-size: 15px;
        max-width: 8ch;
    }

    .dp-wagon-date {
        font-size: 13px;
    }

    .dp-events-train-cta {
        margin-top: 32px;
        padding: 0 18px;
    }

    .dp-events-train-cta a {
        width: min(100%, 330px);
        min-height: 54px;
        padding: 0 22px;
    }
}

.dp-event-card,
.dp-blog-card {
    min-height: 230px;
    padding: 22px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 46px rgba(10, 36, 84, .1);
    text-align: center;
}

.dp-event-card strong {
    display: block;
    color: var(--coral);
    font-size: 34px;
    line-height: 1;
}

.dp-event-card span {
    display: block;
    color: var(--gold);
    font-weight: 900;
}

.dp-blog-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 14px;
}

.dp-club-cta {
    margin: 28px clamp(18px, 7vw, 120px) 0;
    padding: 34px clamp(22px, 5vw, 64px);
    border-radius: 8px 8px 0 0;
    background: linear-gradient(135deg, #ff705f, #ff9a78);
    color: #fff;
}

.dp-club-cta h2 {
    color: #fff;
    font-size: clamp(30px, 4vw, 52px);
}

.dp-floating-contact {
    position: fixed;
    right: clamp(14px, 2.5vw, 32px);
    left: auto;
    top: 50%;
    z-index: 45;
    display: grid;
    gap: 9px;
    width: 69px;
    padding: 13px 7px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(255, 255, 255, .72);
    box-shadow: 0 24px 60px rgba(22, 44, 88, .18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateY(-50%);
}

.dp-floating-contact .dp-float-action {
    display: grid;
    place-items: center;
    gap: 4px;
    min-height: 53px;
    color: #23395f;
    font-size: 10px;
    font-weight: 900;
    text-align: center;
}

.dp-floating-contact .dp-float-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    color: #fff;
    box-shadow: inset 0 -7px 16px rgba(0, 0, 0, .12), 0 10px 24px rgba(10, 36, 84, .14);
}

.dp-floating-contact svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dp-float-action--whatsapp .dp-float-icon { background: #27c46a; }
.dp-float-action--phone_action .dp-float-icon { background: #4f9bdd; }
.dp-float-action--instagram_action .dp-float-icon { background: #fb4e5d; }
.dp-float-action--directions .dp-float-icon { background: #7567c8; }

.dp-float-label {
    display: block;
    line-height: 1.3;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 520px) 1fr;
    min-height: calc(100vh - 80px);
    align-items: center;
    gap: clamp(24px, 4vw, 64px);
    padding: clamp(32px, 6vw, 72px) clamp(16px, 4vw, 56px);
    overflow: hidden;
}

.hero__copy {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--coral);
    font-weight: 900;
}

h1,
h2,
h3 {
    margin: 0 0 16px;
    color: var(--navy);
    line-height: 1.35;
}

h1 {
    font-size: clamp(36px, 5vw, 72px);
    max-width: 10ch;
}

h2 {
    font-size: clamp(28px, 3vw, 46px);
}

h3 {
    font-size: 24px;
}

.lead,
.hero p {
    color: var(--muted);
    font-size: 18px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero__visual {
    min-width: 0;
}

.site-header > *,
.two-col > *,
.form-layout > *,
.service-grid > *,
.post-grid > * {
    min-width: 0;
}

.hero__visual img,
.section-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.domino-trail {
    position: absolute;
    right: 48px;
    bottom: 36px;
    display: flex;
    gap: 10px;
    transform: rotate(-12deg);
}

.domino-trail span {
    width: 18px;
    height: 72px;
    border-radius: 5px;
    background: var(--coral);
    animation: dominoFall 3.6s ease-in-out infinite;
}

.domino-trail span:nth-child(2) { background: var(--yellow); animation-delay: .12s; }
.domino-trail span:nth-child(3) { background: var(--sky); animation-delay: .24s; }
.domino-trail span:nth-child(4) { background: var(--blue); animation-delay: .36s; }
.domino-trail span:nth-child(5) { background: var(--mint); animation-delay: .48s; }
.domino-trail span:nth-child(6) { background: var(--coral); animation-delay: .6s; }

@keyframes dominoFall {
    0%, 55%, 100% { transform: rotate(0); }
    22% { transform: rotate(-26deg) translateY(8px); }
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 6vw, 76px);
    align-items: center;
}

.section-head {
    max-width: 720px;
    margin-bottom: 28px;
}

.video-band {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(24px, 5vw, 62px);
    align-items: center;
}

.video-copy {
    min-width: 0;
}

.video-frame {
    min-width: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--navy);
}

.video-frame video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.service-grid,
.post-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card,
.post-card,
.cta-panel,
.lead-popup__panel,
.form-layout {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-card {
    position: relative;
    min-height: 280px;
    padding: 24px;
    overflow: hidden;
}

.service-card__mark {
    display: block;
    width: 54px;
    height: 12px;
    margin-bottom: 24px;
    border-radius: 4px;
    background: var(--accent);
    transform: rotate(-14deg);
}

.service-card strong {
    display: block;
    color: var(--blue);
    margin-bottom: 10px;
}

.service-card p,
.post-card span {
    color: var(--muted);
}

.service-card a {
    color: var(--blue);
    font-weight: 900;
}

.club-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.club-strip span {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--blue);
    font-weight: 900;
    text-align: center;
}

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

.post-card {
    padding: 22px;
}

.post-card p {
    margin: 0 0 10px;
    color: var(--coral);
    font-size: 14px;
}

.post-card h2,
.post-card h3 {
    font-size: 22px;
}

.contact-cta {
    padding-top: 48px;
}

.cta-panel {
    padding: clamp(28px, 5vw, 56px);
    background: linear-gradient(135deg, #fff 0%, #fff 55%, rgba(76, 203, 251, .2) 100%);
}

.page-hero {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.page-hero .section-inner {
    padding-bottom: 52px;
}

.page-body {
    font-size: 18px;
}

.page-body ul {
    padding-right: 22px;
}

.form-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    padding: clamp(22px, 4vw, 42px);
    margin-top: 28px;
}

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

.domino-form label,
.domino-form .full {
    display: grid;
    gap: 6px;
}

.domino-form .full {
    grid-column: 1 / -1;
}

.domino-form span {
    color: var(--navy);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    padding: 12px 14px;
    font: inherit;
}

textarea {
    resize: vertical;
}

.domino-form button {
    grid-column: 1 / -1;
}

.lead-popup {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: grid;
    place-items: center;
    padding: 16px;
    background: rgba(38, 49, 67, .42);
}

.lead-popup[hidden] {
    display: none;
}

.lead-popup__panel {
    position: relative;
    width: min(620px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    overflow: auto;
    padding: 28px;
}

.lead-popup h2 {
    max-width: none;
    font-size: clamp(24px, 4vw, 38px);
    overflow-wrap: anywhere;
}

.lead-popup__close {
    position: absolute;
    left: 14px;
    top: 14px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 8px;
    background: var(--cream);
    color: var(--navy);
    font-size: 24px;
    cursor: pointer;
}

.form-notice {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 70;
    max-width: 360px;
    padding: 14px 18px;
    border-radius: 8px;
    background: var(--mint);
    color: var(--navy);
    font-weight: 900;
    box-shadow: var(--shadow);
}

.site-footer {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: 140px;
    padding: 88px clamp(18px, 4.6vw, 72px) 22px;
    background: #2b3a55;
    color: #fff;
    direction: rtl;
    font-family: inherit;
    overflow: visible;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 18% 14%, rgba(255, 209, 102, .16), transparent 18%),
        radial-gradient(circle at 82% 12%, rgba(76, 203, 251, .15), transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.dp-footer-cloud {
    position: absolute;
    top: -140px;
    bottom: 0;
    z-index: 1;
    width: auto;
    max-width: none;
    height: calc(100% + 140px);
    pointer-events: none;
    user-select: none;
}

.dp-footer-cloud--left {
    left: 0;
}

.dp-footer-cloud--right {
    right: 0;
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(220px, 1.25fr) minmax(130px, .75fr) minmax(130px, .75fr) minmax(230px, 1fr);
    gap: clamp(22px, 3vw, 46px);
    width: min(1180px, 100%);
    margin: 0 auto;
    align-items: start;
}

.dp-footer-column,
.dp-footer-widget {
    min-width: 0;
}

.footer-logo,
.footer-logo img,
.footer-logo .custom-logo {
    display: block;
    width: clamp(116px, 10vw, 150px);
    height: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .22));
}

.dp-footer-title,
.site-footer h2,
.site-footer h3,
.site-footer .widget-title {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(16px, 1.4vw, 19px);
    font-weight: 900;
    line-height: 1.45;
}

.site-footer ul,
.site-footer ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer li {
    margin: 0 0 7px;
}

.site-footer a,
.site-footer p,
.site-footer li {
    color: rgba(255, 255, 255, .86);
    font-family: inherit;
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.85;
}

.site-footer p {
    margin: 0 0 9px;
}

.site-footer a {
    text-decoration: none;
    transition: color .2s ease, opacity .2s ease, transform .2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: #ffd166;
}

.dp-footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.dp-footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.dp-footer-socials a:hover,
.dp-footer-socials a:focus-visible {
    transform: translateY(-2px);
    background: #ffd166;
    color: #2b3a55;
}

.copyright {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    margin: 28px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .72);
    text-align: center;
    font-size: 13px;
}

@media (max-width: 1100px) {
    .site-footer {
        padding-top: 78px;
    }

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

@media (max-width: 767px) {
    .site-footer {
        margin-top: 140px;
        padding: 72px 18px 20px;
    }

    .dp-footer-cloud {
        top: -140px;
        height: calc(100% + 140px);
        width: auto;
    }

    .dp-footer-cloud--left {
        left: 0;
    }

    .dp-footer-cloud--right {
        right: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: right;
    }

    .footer-logo,
    .footer-logo img,
    .footer-logo .custom-logo {
        width: 126px;
    }

    .dp-footer-socials {
        justify-content: flex-start;
    }

    .copyright {
        margin-top: 22px;
        font-size: 12px;
        line-height: 1.8;
    }
}

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

.reveal,
.dp-reveal,
.experience-rail > *,
.domino-home-content .service-card,
.domino-home-content .post-card {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible,
.dp-reveal.is-visible,
.experience-rail > *.is-visible,
.domino-home-content .service-card.is-visible,
.domino-home-content .post-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.single-post {
    max-width: 820px;
}

.single-post h1 {
    max-width: none;
}

.single-post__content {
    font-size: 18px;
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: fixed;
        top: 75px;
        right: 16px;
        left: 16px;
        display: none;
        padding: 18px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: block;
    }

    .main-nav ul {
        display: grid;
        gap: 12px;
    }

    .hero,
    .home-hero,
    .two-col,
    .video-band,
    .form-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    h1 {
        max-width: 12ch;
    }

    .service-grid,
    .experience-rail,
    .club-strip,
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    body {
        font-size: 15px;
    }

    .brand img,
    .brand .custom-logo {
        width: 76px;
    }

    .header-actions .btn {
        display: none;
    }

    .hero {
        padding-top: 28px;
        width: 100%;
        overflow: hidden;
    }

    .hero__copy,
    .hero__visual,
    .page-hero .section-inner,
    .page-body {
        max-width: calc(100vw - 24px);
    }

    h1,
    h2,
    h3,
    p,
    a,
    span,
    strong {
        overflow-wrap: anywhere;
    }

    .service-grid,
    .experience-rail,
    .club-strip,
    .post-grid,
    .domino-form {
        grid-template-columns: 1fr;
    }

    .home-hero {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
        padding-top: 28px;
        padding-inline: 18px;
        width: 100%;
        max-width: 100vw;
        direction: ltr;
        overflow: hidden;
    }

    .home-hero__copy,
    .home-hero__visual {
        width: 100%;
        max-width: 100%;
    }

    .home-hero__copy {
        max-width: 100%;
        margin-right: 0;
        margin-left: 0;
        direction: rtl;
        text-align: right;
    }

    .home-hero__stats,
    .home-hero__visual {
        direction: rtl;
    }

    .home-hero h1 {
        width: min(100%, 300px);
        max-width: 300px;
        font-size: 30px;
        line-height: 1.55;
        overflow-wrap: break-word;
    }

    .home-hero .lead {
        width: min(100%, 320px);
        max-width: 320px;
        font-size: 16px;
    }

    .home-hero__visual {
        transform: none;
    }

    .home-hero .hero__actions {
        width: 100%;
    }

    .home-hero .btn {
        flex: 1 1 140px;
    }

    .home-hero__stats {
        grid-template-columns: 1fr;
    }

    .floating-pill {
        position: static;
        max-width: none;
        margin-top: 12px;
    }

    .section-inner {
        width: min(100% - 24px, 1120px);
    }

    .domino-trail {
        opacity: .3;
        right: auto;
        left: 20px;
    }

    .lead-popup {
        align-items: start;
        overflow: auto;
    }

    .lead-popup__panel {
        margin-top: 16px;
        padding: 22px;
    }

    .home .site-header {
        background: rgba(5, 28, 73, .92);
    }

    .dp-ui-hero {
        min-height: auto;
        padding: 104px 18px 140px;
    }

    .dp-ui-hero h1 {
        max-width: 100%;
        font-size: 38px;
        line-height: 1.45;
    }

    .dp-hero-art,
    .dp-hero-art video,
    .dp-hero-art img {
        min-height: 300px;
    }

    .dp-service-deck {
        margin-top: 0;
        padding-inline: 18px 96px;
        overflow: hidden;
    }

    .dp-service-deck .elementor-container,
    .dp-service-deck .elementor-row,
    .dp-service-deck .elementor-column,
    .dp-service-deck .elementor-widget-wrap {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .dp-land-card {
        min-height: auto;
        margin-bottom: 16px;
        width: 100% !important;
        text-align: center;
    }

    .dp-land-card img {
        margin-right: auto;
        margin-left: auto;
    }

    .dp-land-card .elementor-button-wrapper {
        text-align: center;
    }

    .dp-why,
    .dp-gallery,
    .dp-blog,
    .dp-events {
        padding: 48px 18px;
    }

    .dp-why .dp-why-copy,
    .dp-why .dp-why-media {
        width: 100% !important;
    }

    .dp-why .elementor-row {
        display: block;
    }

    .dp-feature-row,
    .dp-calendar-mock {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dp-video-card {
        margin-top: 20px;
    }

    .dp-gallery-shell {
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        gap: 8px;
    }

    .dp-gallery-arrow {
        width: 44px;
        height: 44px;
    }

    .dp-gallery-track {
        grid-auto-columns: 132px;
        gap: 16px;
    }

    .dp-gallery-thumb img {
        border-width: 5px;
    }

    .dp-gallery-button {
        width: min(100%, 320px);
        min-height: 48px;
        padding-inline: 18px;
        font-size: 14px;
    }

    .dp-reserve-strip,
    .dp-club-cta {
        margin-inline: 18px;
        padding: 24px 18px;
    }

    .dp-floating-contact {
        right: 10px;
        left: auto;
        width: 58px;
        gap: 6px;
        padding: 10px 6px;
        border-radius: 20px;
    }

    .dp-floating-contact .dp-float-action {
        min-height: 48px;
        font-size: 9px;
    }

    .dp-floating-contact .dp-float-icon {
        width: 30px;
        height: 30px;
    }

    .dp-floating-contact svg {
        width: 16px;
        height: 16px;
    }

    .dp-ui-home {
        direction: ltr;
    }

    .dp-ui-home .elementor-section,
    .dp-ui-home .elementor-column,
    .dp-ui-home .elementor-widget,
    .dp-ui-home .elementor-widget-container {
        direction: rtl;
    }

    .dp-ui-home .elementor-container {
        width: 100% !important;
        max-width: calc(100vw - 36px);
        margin-right: auto;
        margin-left: auto;
    }

    .dp-ui-home .elementor-row {
        display: block;
        width: 100% !important;
    }

    .dp-ui-home .elementor-column {
        width: 100% !important;
        max-width: 100% !important;
    }

    .dp-service-deck .elementor-container {
        direction: ltr;
    }

    .dp-land-card {
        padding-inline: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .dp-reveal,
    .experience-rail > *,
    .domino-home-content .service-card,
    .domino-home-content .post-card,
    .domino-trail span {
        animation: none;
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 767px) {
    .dp-scroll-video-hero {
        min-height: auto;
        background: #f8fbff;
    }

    .dp-hero-scroll-stage {
        min-height: auto;
        padding-top: clamp(82px, 22vw, 104px);
    }

    .dp-hero-video {
        position: relative;
        top: auto;
        height: auto;
        min-height: 0;
        padding-top: 0;
        background: #f8fbff;
    }

    .dp-hero-video video {
        display: block;
        width: 100%;
        height: auto !important;
        max-height: none;
        aspect-ratio: auto;
        object-fit: contain !important;
        object-position: center top;
    }

    .home .site-header {
        top: 10px;
        left: 12px;
        right: 12px;
        grid-template-columns: auto 1fr auto;
        gap: 10px;
        padding: 8px 10px;
        background: rgba(255, 255, 255, .78);
        border-color: rgba(255, 255, 255, .62);
        box-shadow: 0 14px 32px rgba(22, 44, 88, .14);
    }

    .home .main-nav {
        top: 82px;
        right: 12px;
        left: 12px;
        background: rgba(255, 255, 255, .94);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .home .main-nav a {
        color: #193256;
    }

    .home .icon-link,
    .home .menu-toggle {
        background: rgba(255, 255, 255, .76);
        color: #254a83;
    }
}

@media (max-width: 782px) {
    body.home.admin-bar .dp-hero-video {
        top: auto;
        height: auto;
    }
}
