:root {
    --poseidon-navy: #031e2b;
    --poseidon-navy-soft: #073548;
    --poseidon-aqua: var(--poseidon-brand-blue);
    --poseidon-aqua-light: #87f3f5;
    --poseidon-sand: #f3f0e8;
    --poseidon-yellow: #ffd74b;
    --poseidon-white: #ffffff;
    --poseidon-text: #0b2730;
    --poseidon-muted: #65757d;
    --poseidon-border: rgba(8, 38, 48, .12);
    --poseidon-shadow: 0 25px 70px rgba(3, 30, 43, .13);
    --poseidon-radius: 26px;
    --poseidon-width: 1220px;

    /* Poseidon official brand colours */
    --poseidon-brand-blue: #37a7e0;
    --poseidon-brand-orange: #d08439;

    /* Accessible / subtle derivatives */
    --poseidon-brand-blue-dark: #1479a8;
    --poseidon-brand-orange-dark: #a86124;

    --poseidon-brand-blue-soft: #eaf7fd;
    --poseidon-brand-orange-soft: #fbf1e7;

}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #fff;
    color: var(--poseidon-text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

body.admin-bar .site-header {
    top: 32px;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

.poseidon-container {
    width: min(var(--poseidon-width), calc(100% - 40px));
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--poseidon-brand-blue-soft);
    color: var(--poseidon-brand-blue-dark);
    font-size: .75rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.eyebrow-dark {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #cffcff;
}

.poseidon-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 21px;
    border-radius: 999px;
    font-size: .91rem;
    font-weight: 850;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.poseidon-button:hover {
    transform: translateY(-2px);
}

.poseidon-button-yellow {
    background: var(--poseidon-yellow);
    color: #17282f;
    box-shadow: 0 13px 30px rgba(255, 215, 75, .20);
}

.poseidon-button-dark {
    background: var(--poseidon-brand-blue);
    color: var(--poseidon-navy);
}

.poseidon-button-white {
    background: #fff;
    color: var(--poseidon-navy);
}

.poseidon-button-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .38);
    color: #fff;
}

.full-button {
    width: 100%;
}

/* ============================================================
   HEADER
============================================================ */

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    min-height: 78px;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(1, 18, 27, .80), rgba(1, 18, 27, .28), transparent);
    transition: background .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
    background: rgba(3, 30, 43, .96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .13);
    backdrop-filter: blur(15px);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}



.brand-logo-image {
    display: block;
    width: auto;
    height: 68px;
    max-width: 320px;
    object-fit: contain;
}

.footer-logo-image {
    height: 58px;
    max-width: 240px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    flex: 0 0 auto;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, .95);
    border-radius: 50%;
    font-size: 27px;
    font-weight: 900;
}

.brand-copy strong,
.brand-copy small {
    display: block;
}

.brand-copy strong {
    font-size: 1rem;
    letter-spacing: .08em;
}

.brand-copy small {
    margin-top: 1px;
    color: #bce4e8;
    font-size: .67rem;
    letter-spacing: .16em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #fff;
    font-size: .89rem;
    font-weight: 750;
}

.desktop-nav a {
    opacity: .91;
}

.desktop-nav a:hover {
    opacity: 1;
}

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

.header-lang {
    position: relative;
    flex: 0 0 auto;
    color: #fff;
    font-size: .76rem;
    font-weight: 800;
}

.header-lang summary {
    min-width: 54px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    background: rgba(3, 30, 43, .24);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.header-lang summary::-webkit-details-marker {
    display: none;
}

.header-lang[open] summary,
.header-lang summary:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .42);
}

.header-lang-current {
    letter-spacing: .04em;
}

.header-lang-chevron {
    font-size: .72rem;
    line-height: 1;
    transition: transform .18s ease;
}

.header-lang[open] .header-lang-chevron {
    transform: rotate(180deg);
}

.header-lang-menu {
    position: absolute;
    z-index: 30;
    top: calc(100% + 9px);
    inset-inline-end: 0;
    min-width: 160px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 15px;
    background: rgba(3, 30, 43, .98);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
    backdrop-filter: blur(16px);
}

.header-lang-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 9px 10px;
    border-radius: 10px;
    color: #fff;
    white-space: nowrap;
}

.header-lang-menu a:hover,
.header-lang-menu a.is-current {
    background: rgba(255, 255, 255, .10);
}

.header-lang-menu a strong {
    font-size: .75rem;
    letter-spacing: .05em;
}

.header-lang-menu a span {
    color: #c8e0e4;
    font-size: .75rem;
    font-weight: 650;
}

.mobile-menu-button {
    display: none;
    padding: 6px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 1.5rem;
}

.mobile-nav {
    display: none;
}

/* ============================================================
   HERO
============================================================ */

.home-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 23, 33, .94) 0%, rgba(2, 23, 33, .76) 39%, rgba(2, 23, 33, .25) 72%, rgba(2, 23, 33, .07) 100%),
        linear-gradient(0deg, rgba(2, 23, 33, .77), transparent 53%);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .52fr);
    gap: 36px;
    align-items: end;
    padding-top: 145px;
    padding-bottom: 70px;
}

.hero-copy h1 {
    max-width: 820px;
    margin: 18px 0 20px;
    font-size: clamp(3.2rem, 6.2vw, 6.4rem);
    line-height: .92;
    letter-spacing: -.061em;
}

.hero-lead {
    max-width: 700px;
    margin: 0;
    color: #d8ecef;
    font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 26px;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.hero-pills span {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .09);
    backdrop-filter: blur(7px);
    font-size: .82rem;
    font-weight: 740;
}

.session-card {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 28px;
    background: rgba(255, 255, 255, .10);
    box-shadow: 0 25px 80px rgba(0, 0, 0, .19);
    backdrop-filter: blur(16px);
}

.session-card h2 {
    margin: 14px 0 8px;
    font-size: 1.55rem;
    line-height: 1.05;
}

.session-card p {
    margin: 0 0 18px;
    color: #d5eaed;
}

.session-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
}

.session-item {
    padding: 16px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .12);
}

.session-item strong,
.session-item span {
    display: block;
}

.session-item strong {
    font-size: 1.45rem;
    line-height: 1;
}

.session-item span {
    margin-top: 5px;
    color: #b8d6da;
    font-size: .78rem;
}

.session-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.session-meta strong,
.session-meta span {
    display: block;
}

.session-meta strong {
    font-size: .97rem;
}

.session-meta span {
    color: #a9cbd0;
    font-size: .76rem;
}

.stars,
.review-stars {
    color: var(--poseidon-yellow);
    letter-spacing: .07em;
}

/* ============================================================
   GENERAL SECTIONS
============================================================ */

.home-section {
    padding: 82px 0;
}

.beginner-section {
    background: var(--poseidon-sand);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 44px;
    margin-bottom: 28px;
}

.section-heading h2,
.why-content h2,
.final-cta h2 {
    margin: 15px 0 0;
    font-size: clamp(2rem, 3.8vw, 4rem);
    line-height: .98;
    letter-spacing: -.05em;
}

.section-heading > p {
    max-width: 560px;
    margin: 0 0 5px;
    color: var(--poseidon-muted);
    font-size: 1.02rem;
}

.schedule-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    margin-bottom: 22px;
    padding: 16px 18px;
    border: 1px solid rgba(8, 33, 42, .08);
    border-radius: 18px;
    background: rgba(255,255,255,.66);
}

.schedule-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 11px;
    border-radius: 999px;
    background: #fff;
    color: var(--poseidon-text);
    font-size: .84rem;
    font-weight: 800;
}

.schedule-copy {
    color: var(--poseidon-muted);
    font-size: .88rem;
}

/* ============================================================
   EXPERIENCE CARDS
============================================================ */

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.experience-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(8, 33, 42, .07);
    border-radius: var(--poseidon-radius);
    background: #fff;
    box-shadow: 0 14px 50px rgba(3, 30, 43, .07);
    transition: transform .2s ease, box-shadow .2s ease;
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--poseidon-shadow);
}

.experience-image {
    position: relative;
    height: 185px;
    overflow: hidden;
    background: #11697a;
}

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

.experience-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(0deg, rgba(3, 30, 43, .28), transparent 60%);
}

.card-badge {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 14px;
    padding: 8px 11px;
    border-radius: 999px;
    background: var(--poseidon-brand-orange);
    color: #1f2b2f;
    font-size: .71rem;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.badge-aqua {
    background: var(--poseidon-aqua);
}

.badge-white {
    background: #fff;
}

.experience-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 18px 18px 20px;
    flex: 1 1 auto;
}

.experience-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.experience-top h3 {
    margin: 0 0 7px;
    font-size: 1.18rem;
    line-height: 1.15;
}

.experience-top p {
    margin: 0;
    color: var(--poseidon-muted);
    font-size: .88rem;
}

.price {
    flex: 0 0 auto;
    font-size: 1.62rem;
    line-height: 1;
    letter-spacing: -.05em;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0;
}

.feature-pills span {
    padding: 7px 9px;
    border-radius: 9px;
    background: #f0f6f6;
    color: #3e5961;
    font-size: .74rem;
    font-weight: 720;
}

.experience-content .poseidon-button {
    margin-top: auto;
}

.help-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 18px;
    padding: 22px 26px;
    border-radius: 24px;
    background: var(--poseidon-navy);
    color: #fff;
}

.help-banner strong,
.help-banner span {
    display: block;
}

.help-banner strong {
    font-size: 1.16rem;
}

.help-banner span {
    margin-top: 3px;
    color: #b6d5d9;
    font-size: .88rem;
}

/* ============================================================
   WHY
============================================================ */

.why-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 54px;
    align-items: center;
}

.why-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: var(--poseidon-shadow);
}

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

.why-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(0deg, rgba(3, 30, 43, .48), transparent 46%);
}

.floating-review {
    position: absolute;
    z-index: 2;
    bottom: 24px;
    left: 24px;
    padding: 16px 18px;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .17);
}

.floating-review strong,
.floating-review span {
    display: block;
}

.floating-review strong {
    font-size: 1.45rem;
}

.floating-review span {
    color: var(--poseidon-muted);
    font-size: .78rem;
}

.section-copy {
    max-width: 590px;
    color: var(--poseidon-muted);
    font-size: 1.01rem;
}

.benefit-list {
    display: grid;
    gap: 15px;
    margin-top: 28px;
}

.benefit-list > div {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}

.benefit-list > div > span {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #ddf8fa;
    color: #087d89;
    font-weight: 900;
}

.benefit-list p {
    margin: 0;
    color: var(--poseidon-muted);
    font-size: .9rem;
}

.benefit-list strong {
    display: block;
    margin-bottom: 2px;
    color: var(--poseidon-text);
}

/* ============================================================
   CERTIFIED
============================================================ */

.certified-section {
    position: relative;
    overflow: hidden;
    background: var(--poseidon-navy);
    color: #fff;
}

.certified-section::before {
    position: absolute;
    top: -300px;
    right: -240px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    content: "";
    background: radial-gradient(circle, rgba(57, 215, 223, .16), transparent 68%);
}

.certified-heading {
    position: relative;
    z-index: 2;
}

.certified-heading > p {
    color: #b4cfd3;
}

.certified-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr .92fr .92fr;
    gap: 17px;
}

.certified-card {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 27px;
    background: #0d4555;
}

.certified-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.certified-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(1, 18, 26, .93), rgba(1, 18, 26, .14) 72%);
}

.certified-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 22px;
}

.certified-content h3 {
    margin: 14px 0 8px;
    font-size: 1.62rem;
    line-height: 1.05;
}

.certified-content p {
    margin: 0 0 14px;
    color: #c4dade;
    font-size: .9rem;
}

.certified-price {
    display: block;
    margin-bottom: 14px;
    color: var(--poseidon-aqua-light);
    font-size: 1.48rem;
}

/* ============================================================
   REVIEWS
============================================================ */

.review-section {
    background: #f5faf9;
}

.review-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 17px;
}

.review-main,
.review-platform {
    padding: 28px;
    border: 1px solid var(--poseidon-border);
    border-radius: 24px;
    background: #fff;
}

.review-main {
    background: linear-gradient(135deg, #fff, #edfafa);
}

.review-score {
    display: block;
    font-size: 4rem;
    line-height: .9;
    letter-spacing: -.07em;
}

.review-stars {
    margin: 12px 0;
    font-size: 1.25rem;
}

.review-main p,
.review-platform span {
    color: var(--poseidon-muted);
}

.review-main p {
    margin-bottom: 0;
}

.review-platform strong {
    display: block;
    font-size: 1.18rem;
}

/* ============================================================
   FINAL CTA
============================================================ */

.final-cta-section {
    padding: 0 0 82px;
    background: #f5faf9;
}

.final-cta {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 40px;
    align-items: center;
    padding: 48px;
    border-radius: 33px;
    background:
        linear-gradient(110deg, rgba(3, 30, 43, .97), rgba(3, 30, 43, .79)),
        var(--cta-image) center / cover;
    color: #fff;
}

.final-cta p {
    max-width: 620px;
    margin-bottom: 0;
    color: #c4dde1;
}

.final-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

/* ============================================================
   FOOTER
============================================================ */

.site-footer {
    padding: 44px 0 23px;
    background: #021620;
    color: #d6e8eb;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    margin-bottom: 16px;
}

.site-footer h4 {
    margin: 0 0 13px;
    color: #fff;
}

.site-footer p,
.site-footer a {
    color: #93b7bd;
    font-size: .86rem;
}

.site-footer a {
    display: block;
    margin: 7px 0;
}

.footer-copy {
    max-width: 300px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 38px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #769ba1;
    font-size: .76rem;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 900px) {

    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 26px;
        padding-top: 140px;
        padding-bottom: 74px;
    }

    .session-card {
        max-width: 520px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .why-image {
        height: 460px;
    }

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

    .certified-card:first-child {
        grid-column: 1 / -1;
    }

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

    .review-main {
        grid-column: 1 / -1;
    }

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

    .mobile-nav {
        position: fixed;
        z-index: 99;
        top: 78px;
        right: 16px;
        left: 16px;
        padding: 14px 18px;
        border-radius: 18px;
        background: rgba(3, 30, 43, .98);
        box-shadow: var(--poseidon-shadow);
        color: #fff;
    }

    body.admin-bar .mobile-nav {
        top: 110px;
    }

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

    .mobile-nav a {
        display: block;
        padding: 12px 4px;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        font-weight: 760;
    }

    .mobile-nav .mobile-book-button {
        margin-top: 10px;
        border: 0;
        border-radius: 999px;
        background: var(--poseidon-yellow);
        color: var(--poseidon-text);
        text-align: center;
    }
}

@media (max-width: 980px) {

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

    .experience-image {
        height: 160px;
    }

    .experience-content {
        padding: 16px;
    }

    .experience-top {
        display: block;
    }

    .price {
        display: block;
        margin-top: 10px;
    }
}

@media (max-width: 900px) {

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

    .experience-card:last-child {
        grid-column: 1 / -1;
    }

    .final-cta {
        grid-template-columns: 1fr;
        padding: 36px 28px;
    }

    .final-buttons {
        justify-content: flex-start;
    }
}

@media (max-width: 782px) {

    body.admin-bar .site-header {
        top: 46px;
    }

    body.admin-bar .mobile-nav {
        top: 116px;
    }
}

@media (max-width: 700px) {

    .poseidon-container {
        width: calc(100% - 26px);
    }

    .site-header,
    .header-inner {
        min-height: 70px;
    }



    .brand-logo-image {
        height: 58px;
        max-width: 270px;
    }

    .brand-mark {
        width: 39px;
        height: 39px;
        font-size: 23px;
    }

    .brand-copy small {
        display: none;
    }

    .desktop-book,
    .header-lang {
        display: none;
    }

    .mobile-nav {
        top: 70px;
    }

    .home-hero {
        min-height: auto;
    }

    .hero-layout {
        padding-top: 122px;
        padding-bottom: 64px;
    }

    .hero-copy h1 {
        font-size: clamp(3rem, 14vw, 4rem);
    }

    .hero-buttons {
        display: grid;
    }

    .hero-buttons .poseidon-button {
        width: 100%;
    }

    .hero-pills {
        gap: 6px;
    }

    .hero-pills span {
        font-size: .74rem;
    }

    .session-grid,
    .session-meta {
        grid-template-columns: 1fr;
    }

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

    .section-heading {
        display: block;
        margin-bottom: 24px;
    }

    .section-heading > p {
        margin-top: 16px;
    }

    .schedule-banner {
        display: block;
    }

    .schedule-chip {
        margin: 0 8px 8px 0;
    }

    .schedule-copy {
        display: block;
        margin-top: 4px;
    }

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

    .experience-card:last-child {
        grid-column: auto;
    }

    .experience-image {
        height: 210px;
    }

    .help-banner {
        display: block;
    }

    .help-banner .poseidon-button {
        width: 100%;
        margin-top: 17px;
    }

    .why-image {
        height: 360px;
    }

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

    .certified-card:first-child {
        grid-column: auto;
    }

    .certified-card {
        min-height: 330px;
    }

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

    .review-main {
        grid-column: auto;
    }

    .final-cta-section {
        padding-bottom: 66px;
    }

    .final-buttons .poseidon-button {
        width: 100%;
    }

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

    .footer-bottom {
        display: block;
    }

    .footer-bottom span {
        display: block;
        margin-top: 5px;
    }
}

@media (max-width: 360px) {

    .hero-copy h1 {
        font-size: 2.8rem;
    }

    .hero-pills {
        display: grid;
    }
}


/* ============================================================
   PRODUCT DETAIL PAGES
============================================================ */

.product-page {
    background: #f5f7f4;
}

.product-hero {
    position: relative;
    min-height: 610px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-image: var(--product-image);
    background-position: center;
    background-size: cover;
    color: #fff;
}

.product-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(2, 23, 33, .91),
            rgba(2, 23, 33, .54) 50%,
            rgba(2, 23, 33, .16)
        ),
        linear-gradient(
            0deg,
            rgba(2, 23, 33, .82),
            transparent 60%
        );
}

.product-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 170px;
    padding-bottom: 70px;
}

.product-hero-copy {
    max-width: 780px;
}

.product-back {
    display: inline-block;
    margin-bottom: 22px;
    color: #d8eef0;
    font-size: .84rem;
    font-weight: 800;
}

.product-audience {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 14px;
}

.product-audience span {
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    font-size: .71rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.product-hero h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: .93;
    letter-spacing: -.055em;
}

.product-hero-lead {
    max-width: 700px;
    margin: 22px 0 0;
    color: #d5e8eb;
    font-size: 1.15rem;
}

.product-main {
    padding: 72px 0 95px;
}

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

.product-content {
    min-width: 0;
}

.product-facts {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 55px;
}

.product-fact {
    padding: 20px;
    border: 1px solid var(--poseidon-border);
    border-radius: 18px;
    background: #fff;
}

.product-fact span,
.product-fact strong {
    display: block;
}

.product-fact span {
    margin-bottom: 5px;
    color: var(--poseidon-muted);
    font-size: .78rem;
    font-weight: 700;
}

.product-fact strong {
    font-size: .98rem;
}

.product-description {
    padding-bottom: 55px;
}

.product-rich-text {
    margin-top: 22px;
    font-size: 1.05rem;
    line-height: 1.75;
}

.product-rich-text p:first-child {
    margin-top: 0;
}

.product-rich-text h2,
.product-section-heading h2,
.product-included h2 {
    margin: 12px 0 18px;
    font-size: clamp(2rem, 3.5vw, 3.3rem);
    line-height: 1;
    letter-spacing: -.04em;
}

.product-included {
    padding: 46px 0 55px;
    border-top: 1px solid var(--poseidon-border);
}

.included-grid {
    display: grid;
    grid-template-columns:
        1fr 1fr;
    gap: 12px;
}

.included-grid > div {
    padding: 20px;
    border-radius: 18px;
    background: #fff;
}

.included-grid strong,
.included-grid span {
    display: block;
}

.included-grid strong {
    margin-bottom: 6px;
}

.included-grid span {
    color: var(--poseidon-muted);
    font-size: .88rem;
}

.product-gallery {
    padding-top: 10px;
}

.product-gallery-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 25px;
}

.product-gallery-grid a {
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
}

.product-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.product-gallery-grid a:hover img {
    transform: scale(1.03);
}

.product-booking-card {
    position: sticky;
    top: 110px;
    padding: 25px;
    border: 1px solid var(--poseidon-border);
    border-radius: 25px;
    background: #fff;
    box-shadow: var(--poseidon-shadow);
}

body.admin-bar .product-booking-card {
    top: 142px;
}

.product-booking-label {
    display: block;
    color: var(--poseidon-muted);
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.product-booking-price {
    margin: 8px 0 23px;
}

.product-booking-price strong,
.product-booking-price span {
    display: block;
}

.product-booking-price strong {
    font-size: 3rem;
    line-height: 1;
    letter-spacing: -.05em;
}

.product-booking-price span {
    margin-top: 6px;
    color: var(--poseidon-muted);
    font-size: .81rem;
}

.booking-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0;
    border-top: 1px solid var(--poseidon-border);
    font-size: .84rem;
}

.booking-summary-row span {
    color: var(--poseidon-muted);
}

.booking-summary-row strong {
    text-align: right;
}

.product-booking-card .poseidon-button {
    margin-top: 19px;
}

.product-whatsapp {
    display: block;
    margin-top: 13px;
    text-align: center;
    color: #087b89;
    font-size: .83rem;
    font-weight: 800;
}

.booking-confidence {
    display: grid;
    gap: 7px;
    margin-top: 23px;
    padding-top: 20px;
    border-top: 1px solid var(--poseidon-border);
    color: var(--poseidon-muted);
    font-size: .8rem;
}

.product-mobile-price {
    display: none;
}


@media (max-width: 900px) {

    .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-booking-card {
        position: static;
        order: -1;
    }

    .product-mobile-price {
        display: none;
    }

}


@media (max-width: 700px) {

    .product-hero {
        min-height: 540px;
    }

    .product-hero-inner {
        padding-top: 145px;
        padding-bottom: 48px;
    }

    .product-hero h1 {
        font-size: clamp(2.8rem, 14vw, 4.2rem);
    }

    .product-hero-lead {
        font-size: 1rem;
    }

    .product-main {
        padding: 45px 0 70px;
    }

    .product-facts {
        grid-template-columns: 1fr;
        gap: 9px;
        margin-bottom: 42px;
    }

    .product-layout {
        gap: 32px;
    }

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

    .product-gallery-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery-grid a {
        height: 250px;
    }

    .product-booking-card {
        padding: 21px;
    }

}


/* ============================================================
   PRODUCT V2
============================================================ */

.product-hero {
    min-height: 500px;
}

.product-hero-inner {
    padding-top: 155px;
    padding-bottom: 55px;
}

.product-main {
    padding-top: 58px;
}

.product-layout {
    grid-template-columns:
        minmax(0, 1fr)
        350px;
    gap: 52px;
}

.product-facts {
    grid-template-columns:
        repeat(
            auto-fit,
            minmax(170px, 1fr)
        );
    gap: 12px;
    margin-bottom: 48px;
}

.product-fact {
    min-height: 112px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-time-chips,
.booking-time-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.product-time-chips strong {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--poseidon-brand-blue-soft);
    color: #057885;
    font-size: .92rem;
}

.booking-summary-block {
    padding: 14px 0;
    border-top: 1px solid var(--poseidon-border);
}

.booking-summary-block > span {
    display: block;
    margin-bottom: 9px;
    color: var(--poseidon-muted);
    font-size: .78rem;
}

.booking-time-chips strong {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 11px;
    border-radius: 999px;
    background: #eef6f6;
    color: var(--poseidon-text);
    font-size: .82rem;
}

.included-grid > div {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 72px;
}

.included-grid .included-check {
    width: 29px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #ddf8fa;
    color: #087d89;
    font-weight: 900;
    line-height: 1;
}

.included-grid > div strong {
    margin: 0;
}

.product-mobile-booking {
    display: none;
}


/* ============================================================
   PRODUCT MOBILE CTA
============================================================ */

@media (max-width: 700px) {

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

    .product-page {
        padding-bottom: 82px;
    }

    .product-hero {
        min-height: 455px;
    }

    .product-hero-inner {
        padding-top: 135px;
        padding-bottom: 40px;
    }

    .product-main {
        padding-top: 34px;
    }

    .product-facts {
        gap: 8px;
        margin-bottom: 36px;
    }

    .product-fact {
        min-height: auto;
        padding: 17px;
    }

    .product-booking-card {
        display: none;
    }

    .product-mobile-booking {
        position: fixed;
        z-index: 200;
        right: 0;
        bottom: 0;
        left: 0;
        min-height: 72px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding:
            10px
            max(
                13px,
                env(safe-area-inset-right)
            )
            max(
                10px,
                env(safe-area-inset-bottom)
            )
            max(
                13px,
                env(safe-area-inset-left)
            );
        border-top: 1px solid rgba(3,30,43,.12);
        background: rgba(255,255,255,.97);
        box-shadow: 0 -10px 35px rgba(3,30,43,.12);
        backdrop-filter: blur(14px);
    }

    .mobile-booking-price strong,
    .mobile-booking-price span {
        display: block;
    }

    .mobile-booking-price strong {
        color: var(--poseidon-text);
        font-size: 1.45rem;
        line-height: 1;
    }

    .mobile-booking-price span {
        margin-top: 3px;
        color: var(--poseidon-muted);
        font-size: .7rem;
    }

    .mobile-booking-button {
        min-width: 145px;
        min-height: 49px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--poseidon-yellow);
        color: var(--poseidon-text);
        font-size: .88rem;
        font-weight: 900;
    }

}


/* ============================================================
   CLEAN BOOKING CARD
============================================================ */

.product-booking-card {
    padding: 28px;
}

.product-booking-price {
    margin-bottom: 18px;
}

.product-booking-copy {
    margin: 0 0 22px;
    padding-top: 18px;
    border-top: 1px solid var(--poseidon-border);
    color: var(--poseidon-muted);
    font-size: .9rem;
    line-height: 1.55;
}

.product-booking-card .poseidon-button {
    margin-top: 0;
}



/* ============================================================
   FIRST TIME DIVING LANDING PAGE
============================================================ */

.beginner-page {
    background: var(--poseidon-sand);
}

.beginner-page-hero {
    position: relative;
    min-height: 660px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-image: var(--beginner-image);
    background-position: center;
    background-size: cover;
    color: #fff;
}

.beginner-page-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(2,23,33,.94),
            rgba(2,23,33,.60) 51%,
            rgba(2,23,33,.12)
        ),
        linear-gradient(
            0deg,
            rgba(2,23,33,.77),
            transparent 55%
        );
}

.beginner-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 165px;
    padding-bottom: 70px;
}

.beginner-hero-copy {
    max-width: 750px;
}

.beginner-hero-copy h1 {
    margin: 17px 0 19px;
    font-size: clamp(3.5rem, 7vw, 6.8rem);
    line-height: .91;
    letter-spacing: -.06em;
}

.beginner-hero-lead {
    max-width: 650px;
    color: #d8eaed;
    font-size: 1.13rem;
}

.beginner-hero-times {
    display: flex;
    gap: 10px;
    margin: 27px 0 24px;
}

.beginner-hero-times > div {
    min-width: 145px;
    padding: 13px 16px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 17px;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(10px);
}

.beginner-hero-times span,
.beginner-hero-times strong {
    display: block;
}

.beginner-hero-times span {
    color: #bcd7db;
    font-size: .75rem;
}

.beginner-hero-times strong {
    margin-top: 2px;
    font-size: 1.35rem;
}

.beginner-intro {
    padding: 75px 0;
    background: #fff;
}

.beginner-intro-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.beginner-intro h2,
.beginner-section-heading h2,
.beginner-help-card h2 {
    margin: 13px 0 0;
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: .98;
    letter-spacing: -.05em;
}

.beginner-intro-content {
    color: var(--poseidon-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.beginner-intro-content p:first-child {
    margin-top: 0;
}

.beginner-choices {
    padding: 85px 0;
}

.beginner-section-heading {
    max-width: 700px;
    margin-bottom: 34px;
}

.beginner-section-heading > p {
    color: var(--poseidon-muted);
}

.beginner-choice-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.beginner-choice-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--poseidon-border);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(3,30,43,.07);
}

.beginner-choice-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.beginner-choice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.beginner-choice-card:hover .beginner-choice-image img {
    transform: scale(1.025);
}

.beginner-choice-image span {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 11px;
    border-radius: 999px;
    background: var(--poseidon-yellow);
    color: var(--poseidon-text);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.beginner-choice-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 21px;
}

.beginner-choice-title {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: flex-start;
}

.beginner-choice-title h3 {
    margin: 0 0 7px;
    font-size: 1.2rem;
}

.beginner-choice-title p {
    margin: 0;
    color: var(--poseidon-muted);
    font-size: .87rem;
}

.beginner-choice-price {
    flex: 0 0 auto;
    font-size: 1.55rem;
    line-height: 1;
}

.beginner-choice-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 18px 0;
}

.beginner-choice-meta span {
    padding: 7px 9px;
    border-radius: 9px;
    background: #eef5f5;
    color: #456169;
    font-size: .73rem;
    font-weight: 750;
}

.beginner-choice-content .poseidon-button {
    margin-top: auto;
}

.beginner-more {
    padding: 10px 0 85px;
}

.beginner-more-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0,1fr));
    gap: 13px;
}

.beginner-more-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border: 1px solid var(--poseidon-border);
    border-radius: 22px;
    background: rgba(255,255,255,.75);
}

.beginner-more-type {
    color: #08808c;
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.beginner-more-card h3 {
    margin: 8px 0;
}

.beginner-more-card p {
    margin: 0;
    color: var(--poseidon-muted);
    font-size: .87rem;
}

.beginner-more-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
}

.beginner-more-footer strong,
.beginner-more-footer span {
    display: block;
}

.beginner-more-footer strong {
    font-size: 1.25rem;
}

.beginner-more-footer span {
    color: var(--poseidon-muted);
    font-size: .75rem;
}

.beginner-more-footer a {
    color: #087d89;
    font-weight: 850;
}

.beginner-help {
    padding: 0 0 90px;
}

.beginner-help-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 45px;
    border-radius: 30px;
    background:
        linear-gradient(
            110deg,
            rgba(3,30,43,.98),
            rgba(3,30,43,.89)
        );
    color: #fff;
}

.beginner-help-card p {
    max-width: 580px;
    color: #b9d4d8;
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 900px) {

    .beginner-choice-grid {
        grid-template-columns: 1fr 1fr;
    }

    .beginner-choice-card:last-child {
        grid-column: 1 / -1;
    }

}


@media (max-width: 700px) {

    .beginner-page-hero {
        min-height: 580px;
    }

    .beginner-hero-inner {
        padding-top: 135px;
        padding-bottom: 48px;
    }

    .beginner-hero-copy h1 {
        font-size: clamp(3rem, 14vw, 4.4rem);
    }

    .beginner-hero-times {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .beginner-hero-times > div {
        min-width: 0;
    }

    .beginner-intro {
        padding: 60px 0;
    }

    .beginner-intro-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .beginner-choices {
        padding: 65px 0;
    }

    .beginner-choice-grid {
        grid-template-columns: 1fr;
    }

    .beginner-choice-card:last-child {
        grid-column: auto;
    }

    .beginner-choice-image {
        height: 220px;
    }

    .beginner-more-grid {
        grid-template-columns: 1fr;
    }

    .beginner-help {
        padding-bottom: 65px;
    }

    .beginner-help-card {
        display: block;
        padding: 30px 23px;
    }

    .beginner-help-card .poseidon-button {
        width: 100%;
        margin-top: 20px;
    }

}


/* ============================================================
   BEGINNER TIME CLARIFICATION
============================================================ */

.beginner-times-label {
    display: block;
    margin-top: 26px;
    color: #d4e8eb;
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.beginner-times-label + .beginner-hero-times {
    margin-top: 9px;
}


/* ============================================================
   CERTIFIED DIVERS LANDING
============================================================ */

.certified-page {
    background: #f4f6f3;
}

.certified-page-hero {
    position: relative;
    min-height: 610px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-image: var(--certified-image);
    background-position: center;
    background-size: cover;
    color: #fff;
}

.certified-page-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(2,23,33,.95),
            rgba(2,23,33,.58) 53%,
            rgba(2,23,33,.12)
        ),
        linear-gradient(
            0deg,
            rgba(2,23,33,.79),
            transparent 58%
        );
}

.certified-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 160px;
    padding-bottom: 65px;
}

.certified-hero-copy {
    max-width: 760px;
}

.certified-hero-copy h1 {
    margin: 16px 0 20px;
    font-size: clamp(3.5rem, 7vw, 6.8rem);
    line-height: .91;
    letter-spacing: -.06em;
}

.certified-hero-lead {
    max-width: 680px;
    margin-bottom: 25px;
    color: #d5eaed;
    font-size: 1.14rem;
}

.certified-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
}

.certified-hero-pills span {
    padding: 8px 11px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    font-size: .77rem;
    font-weight: 750;
    backdrop-filter: blur(8px);
}


/* INTRO */

.certified-intro {
    padding: 75px 0;
    background: #fff;
}

.certified-intro-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
}

.certified-intro h2,
.certified-page-heading h2,
.certified-info-copy h2,
.certified-plan-card h2 {
    margin: 13px 0 0;
    font-size: clamp(2.15rem, 4vw, 4rem);
    line-height: .98;
    letter-spacing: -.05em;
}

.certified-intro-content {
    color: var(--poseidon-muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.certified-intro-content p:first-child {
    margin-top: 0;
}


/* MAIN CHOICES */

.certified-choices {
    padding: 85px 0;
    background: var(--poseidon-navy);
    color: #fff;
}

.certified-page-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.certified-choices .certified-page-heading > p {
    color: #accbd0;
}

.certified-choice-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.certified-choice-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 24px;
    background: #fff;
    color: var(--poseidon-text);
}

.certified-choice-image {
    position: relative;
    height: 215px;
    overflow: hidden;
}

.certified-choice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.certified-choice-card:hover .certified-choice-image img {
    transform: scale(1.03);
}

.certified-choice-image span {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--poseidon-aqua);
    color: #07313a;
    font-size: .67rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.certified-choice-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 19px;
}

.certified-choice-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 13px;
}

.certified-choice-title h3 {
    margin: 0 0 7px;
    font-size: 1.13rem;
    line-height: 1.15;
}

.certified-choice-title p {
    margin: 0;
    color: var(--poseidon-muted);
    font-size: .84rem;
}

.certified-choice-price {
    flex: 0 0 auto;
    font-size: 1.45rem;
    line-height: 1;
}

.certified-choice-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 16px 0;
}

.certified-choice-meta span {
    padding: 6px 8px;
    border-radius: 8px;
    background: #eef5f5;
    color: #456169;
    font-size: .69rem;
    font-weight: 720;
}

.certified-choice-content .poseidon-button {
    margin-top: auto;
}


/* DIVER INFORMATION */

.certified-info {
    padding: 85px 0;
    background: #fff;
}

.certified-info-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.certified-info-copy p {
    max-width: 540px;
    color: var(--poseidon-muted);
}

.certified-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
}

.certified-info-cards > div {
    min-height: 190px;
    padding: 21px;
    border: 1px solid var(--poseidon-border);
    border-radius: 20px;
    background: #f6f9f8;
}

.certified-info-cards > div > span {
    display: block;
    margin-bottom: 35px;
    color: #07919e;
    font-size: .73rem;
    font-weight: 900;
}

.certified-info-cards strong {
    display: block;
    margin-bottom: 7px;
}

.certified-info-cards p {
    margin: 0;
    color: var(--poseidon-muted);
    font-size: .82rem;
}


/* OTHER DIVES */

.certified-more {
    padding: 80px 0;
    background: var(--poseidon-sand);
}

.certified-more-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.certified-more-card {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 23px;
    border: 1px solid var(--poseidon-border);
    border-radius: 22px;
    background: #fff;
}

.certified-more-type {
    color: var(--poseidon-brand-blue-dark);
    font-size: .69rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.certified-more-card h3 {
    margin: 8px 0;
}

.certified-more-card p {
    margin: 0;
    color: var(--poseidon-muted);
    font-size: .87rem;
}

.certified-more-footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 15px;
    margin-top: 20px;
}

.certified-more-footer strong {
    font-size: 1.25rem;
}

.certified-more-footer a {
    color: #087d89;
    font-weight: 850;
}


/* PLAN CTA */

.certified-plan {
    padding: 0 0 90px;
    background: var(--poseidon-sand);
}

.certified-plan-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 45px;
    padding: 45px;
    border-radius: 30px;
    background:
        linear-gradient(
            110deg,
            #031e2b,
            #0b4050
        );
    color: #fff;
}

.certified-plan-card p {
    max-width: 600px;
    color: #b8d2d6;
}


/* ============================================================
   CERTIFIED RESPONSIVE
============================================================ */

@media (max-width: 1100px) {

    .certified-choice-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 900px) {

    .certified-info-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

}


@media (max-width: 700px) {

    .certified-page-hero {
        min-height: 560px;
    }

    .certified-hero-inner {
        padding-top: 135px;
        padding-bottom: 48px;
    }

    .certified-hero-copy h1 {
        font-size: clamp(3rem, 14vw, 4.5rem);
    }

    .certified-intro {
        padding: 60px 0;
    }

    .certified-intro-grid {
        grid-template-columns: 1fr;
        gap: 27px;
    }

    .certified-choices {
        padding: 65px 0;
    }

    .certified-choice-grid {
        grid-template-columns: 1fr;
    }

    .certified-choice-image {
        height: 225px;
    }

    .certified-info {
        padding: 65px 0;
    }

    .certified-info-cards {
        grid-template-columns: 1fr;
    }

    .certified-info-cards > div {
        min-height: auto;
    }

    .certified-info-cards > div > span {
        margin-bottom: 18px;
    }

    .certified-more-grid {
        grid-template-columns: 1fr;
    }

    .certified-plan {
        padding-bottom: 65px;
    }

    .certified-plan-card {
        display: block;
        padding: 30px 23px;
    }

    .certified-plan-card .poseidon-button {
        width: 100%;
        margin-top: 20px;
    }

}


/* ============================================================
   CERTIFIED PAGE CLEANUP
============================================================ */

.certified-single-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 18px;
    padding: 20px 23px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    background: rgba(255,255,255,.07);
}

.certified-single-callout strong,
.certified-single-callout p {
    display: block;
}

.certified-single-callout > div > strong {
    margin-top: 4px;
    color: #fff;
    font-size: 1.06rem;
}

.certified-single-callout p {
    margin: 3px 0 0;
    color: #a9c8cd;
    font-size: .83rem;
}

.certified-single-label {
    color: var(--poseidon-aqua-light);
    font-size: .69rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.certified-single-action {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 0 0 auto;
}

.certified-single-action > strong {
    color: var(--poseidon-aqua-light);
    font-size: 1.45rem;
}

.certified-single-action a {
    color: #fff;
    font-size: .79rem;
    font-weight: 850;
}


@media (max-width: 700px) {

    .certified-single-callout {
        display: block;
    }

    .certified-single-action {
        justify-content: space-between;
        margin-top: 18px;
    }

}


/* ============================================================
   COURSES LANDING PAGE
============================================================ */

.courses-page {
    background: #f4f6f3;
}

.courses-hero {
    position: relative;
    min-height: 610px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-image: var(--courses-image);
    background-size: cover;
    background-position: center;
    color: #fff;
}

.courses-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(2,23,33,.95),
            rgba(2,23,33,.57) 53%,
            rgba(2,23,33,.12)
        ),
        linear-gradient(
            0deg,
            rgba(2,23,33,.78),
            transparent 60%
        );
}

.courses-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 160px;
    padding-bottom: 65px;
}

.courses-hero-copy {
    max-width: 780px;
}

.courses-hero-copy h1 {
    margin: 16px 0 20px;
    font-size: clamp(3.5rem, 7vw, 6.8rem);
    line-height: .91;
    letter-spacing: -.06em;
}

.courses-hero-lead {
    max-width: 660px;
    margin-bottom: 27px;
    color: #d5e9ec;
    font-size: 1.14rem;
}


/* INTRO */

.courses-intro {
    padding: 76px 0;
    background: #fff;
}

.courses-intro-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
}

.courses-intro h2,
.courses-heading h2,
.courses-help-card h2 {
    margin: 13px 0 0;
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: .98;
    letter-spacing: -.05em;
}

.courses-intro-content {
    color: var(--poseidon-muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.courses-intro-content p:first-child {
    margin-top: 0;
}


/* PROGRESSION */

.course-progression {
    display: grid;
    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr;
    gap: 10px;
    align-items: center;
    margin-top: 50px;
}

.course-progression > div:not(.course-progress-arrow) {
    min-height: 125px;
    padding: 18px;
    border: 1px solid var(--poseidon-border);
    border-radius: 18px;
    background: #f6f9f8;
}

.course-progression span,
.course-progression strong,
.course-progression small {
    display: block;
}

.course-progression span {
    margin-bottom: 19px;
    color: #078895;
    font-size: .7rem;
    font-weight: 900;
}

.course-progression strong {
    margin-bottom: 3px;
}

.course-progression small {
    color: var(--poseidon-muted);
}

.course-progress-arrow {
    color: #8ba1a6;
    font-size: 1.4rem;
}


/* MAIN COURSES */

.courses-main {
    padding: 85px 0;
    background: var(--poseidon-sand);
}

.courses-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.courses-heading > p {
    color: var(--poseidon-muted);
}

.courses-main-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.course-main-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--poseidon-border);
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(3,30,43,.07);
}

.course-main-image {
    position: relative;
    height: 235px;
    overflow: hidden;
}

.course-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.course-main-card:hover .course-main-image img {
    transform: scale(1.03);
}

.course-main-image span {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 11px;
    border-radius: 999px;
    background: var(--poseidon-yellow);
    color: var(--poseidon-text);
    font-size: .69rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.course-main-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 21px;
}

.course-main-top {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: flex-start;
}

.course-main-top h3 {
    margin: 0 0 7px;
    font-size: 1.18rem;
}

.course-main-top p {
    margin: 0;
    color: var(--poseidon-muted);
    font-size: .86rem;
}

.course-main-price {
    flex: 0 0 auto;
    font-size: 1.55rem;
    line-height: 1;
}

.course-main-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 18px 0;
}

.course-main-meta span {
    padding: 7px 9px;
    border-radius: 8px;
    background: #eef5f5;
    color: #456169;
    font-size: .7rem;
    font-weight: 720;
}

.course-main-content .poseidon-button {
    margin-top: auto;
}


/* OTHER COURSES */

.courses-more {
    padding: 82px 0;
    background: #fff;
}

.courses-more-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0,1fr));
    gap: 13px;
}

.course-small-card {
    min-height: 215px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 23px;
    border: 1px solid var(--poseidon-border);
    border-radius: 21px;
    background: #f7f9f8;
}

.course-small-label {
    color: #078895;
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.course-small-card h3 {
    margin: 8px 0;
    font-size: 1.05rem;
}

.course-small-card p {
    margin: 0;
    color: var(--poseidon-muted);
    font-size: .84rem;
}

.course-small-bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-top: 22px;
}

.course-small-bottom strong,
.course-small-bottom span {
    display: block;
}

.course-small-bottom strong {
    font-size: 1.25rem;
}

.course-small-bottom span {
    color: var(--poseidon-muted);
    font-size: .72rem;
}

.course-small-bottom a {
    color: #087d89;
    font-size: .78rem;
    font-weight: 850;
}


/* CTA */

.courses-help {
    padding: 0 0 90px;
    background: #fff;
}

.courses-help-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 45px;
    border-radius: 30px;
    background:
        linear-gradient(
            110deg,
            #031e2b,
            #0b4050
        );
    color: #fff;
}

.courses-help-card p {
    max-width: 610px;
    color: #b8d2d6;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .course-progression {
        grid-template-columns: 1fr 1fr;
    }

    .course-progress-arrow {
        display: none;
    }

    .courses-main-grid {
        grid-template-columns: 1fr 1fr;
    }

    .course-main-card:last-child {
        grid-column: 1 / -1;
    }

    .courses-more-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 700px) {

    .courses-hero {
        min-height: 560px;
    }

    .courses-hero-inner {
        padding-top: 135px;
        padding-bottom: 48px;
    }

    .courses-hero-copy h1 {
        font-size: clamp(3rem, 14vw, 4.5rem);
    }

    .courses-intro {
        padding: 60px 0;
    }

    .courses-intro-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .course-progression {
        grid-template-columns: 1fr;
    }

    .courses-main {
        padding: 65px 0;
    }

    .courses-main-grid {
        grid-template-columns: 1fr;
    }

    .course-main-card:last-child {
        grid-column: auto;
    }

    .course-main-image {
        height: 220px;
    }

    .courses-more {
        padding: 65px 0;
    }

    .courses-more-grid {
        grid-template-columns: 1fr;
    }

    .courses-help {
        padding-bottom: 65px;
    }

    .courses-help-card {
        display: block;
        padding: 30px 23px;
    }

    .courses-help-card .poseidon-button {
        width: 100%;
        margin-top: 20px;
    }

}


/* ============================================================
   COURSES FINAL CLEANUP
============================================================ */

.courses-entry {
    padding: 80px 0;
    background: #fff;
}

.courses-entry-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

@media (min-width: 821px) and (max-width: 1000px) {

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

    .course-main-card:last-child {
        grid-column: auto;
    }

    .course-main-image {
        height: 185px;
    }

    .course-main-content {
        padding: 17px;
    }

    .course-main-price {
        font-size: 1.35rem;
    }

}

@media (max-width: 700px) {

    .courses-entry {
        padding: 65px 0;
    }

    .courses-entry-grid {
        grid-template-columns: 1fr;
    }

}


/* ============================================================
   WHY POSEIDON
============================================================ */

.about-page {
    background: #fff;
}

.about-hero {
    position: relative;
    min-height: 610px;
    display: flex;
    align-items: flex-end;
    background-image: var(--about-image);
    background-size: cover;
    background-position: center;
    color: #fff;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(2,23,33,.95),
            rgba(2,23,33,.56) 55%,
            rgba(2,23,33,.12)
        ),
        linear-gradient(
            0deg,
            rgba(2,23,33,.78),
            transparent 60%
        );
}

.about-hero-inner {
    position: relative;
    z-index: 2;
    padding: 160px 0 65px;
}

.about-hero-copy {
    max-width: 760px;
}

.about-hero h1 {
    margin: 15px 0 20px;
    font-size: clamp(3.5rem, 7vw, 6.8rem);
    line-height: .91;
    letter-spacing: -.06em;
}

.about-hero-copy p {
    max-width: 670px;
    color: #d3e7ea;
    font-size: 1.15rem;
}

.about-story {
    padding: 80px 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
}

.about-story h2,
.about-section-heading h2,
.about-cta-card h2 {
    margin: 13px 0 0;
    font-size: clamp(2.15rem, 4vw, 4rem);
    line-height: .98;
    letter-spacing: -.05em;
}

.about-story-content {
    color: var(--poseidon-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.about-highlights {
    padding: 85px 0;
    background: var(--poseidon-sand);
}

.about-section-heading {
    margin-bottom: 34px;
}

.about-highlight-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 13px;
}

.about-highlight-grid article {
    min-height: 210px;
    padding: 24px;
    border: 1px solid var(--poseidon-border);
    border-radius: 21px;
    background: #fff;
}

.about-highlight-grid article > span {
    color: #06909d;
    font-size: .7rem;
    font-weight: 900;
}

.about-highlight-grid h3 {
    margin: 31px 0 7px;
}

.about-highlight-grid p {
    margin: 0;
    color: var(--poseidon-muted);
    font-size: .88rem;
}

.about-stats {
    padding: 30px 0;
    background: var(--poseidon-navy);
    color: #fff;
}

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

.about-stats-grid > div {
    padding: 25px;
    border-left: 1px solid rgba(255,255,255,.10);
}

.about-stats-grid > div:first-child {
    border-left: 0;
}

.about-stats-grid strong,
.about-stats-grid span {
    display: block;
}

.about-stats-grid strong {
    font-size: 2rem;
}

.about-stats-grid span {
    color: #a5c7cc;
    font-size: .8rem;
}

.about-team {
    padding: 90px 0;
}

.team-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0,1fr));
    gap: 18px;
}

.team-card {
    overflow: hidden;
    border: 1px solid var(--poseidon-border);
    border-radius: 24px;
    background: #fff;
}

.team-card-image {
    height: 330px;
    background: #e8eeee;
}

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

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #789096;
}

.team-card-content {
    padding: 21px;
}

.team-card h3 {
    margin: 0;
    font-size: 1.25rem;
}

.team-role {
    display: block;
    margin-top: 3px;
    color: var(--poseidon-brand-blue-dark);
    font-size: .8rem;
    font-weight: 800;
}

.team-bio {
    margin-top: 13px;
    color: var(--poseidon-muted);
    font-size: .87rem;
}

.team-bio p:last-child {
    margin-bottom: 0;
}

.about-cta {
    padding: 0 0 90px;
}

.about-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 44px;
    border-radius: 30px;
    background:
        linear-gradient(
            110deg,
            #031e2b,
            #0b4050
        );
    color: #fff;
}


/* ============================================================
   FAQ + CONTACT
============================================================ */

.simple-page-hero {
    padding: 185px 0 85px;
    background:
        linear-gradient(
            120deg,
            #031e2b,
            #0b4050
        );
    color: #fff;
}

.simple-page-hero h1 {
    margin: 14px 0 15px;
    font-size: clamp(3.4rem, 7vw, 6.4rem);
    line-height: .93;
    letter-spacing: -.055em;
}

.simple-page-hero p {
    max-width: 680px;
    margin: 0;
    color: #bad5d9;
    font-size: 1.08rem;
}

.faq-main,
.contact-main,
.simple-content-main {
    padding: 85px 0;
}


.simple-content {
    max-width: 860px;
}

.simple-content > :first-child {
    margin-top: 0;
}

.simple-content h2 {
    margin: 48px 0 16px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: -.045em;
}

.simple-content h3 {
    margin: 32px 0 12px;
    font-size: 1.35rem;
}

.simple-content p,
.simple-content li {
    color: var(--poseidon-muted);
    line-height: 1.75;
}

.simple-content ul,
.simple-content ol {
    margin: 18px 0 28px;
    padding-left: 1.4rem;
}

.simple-content li + li {
    margin-top: 8px;
}

.simple-content a {
    color: var(--poseidon-brand-blue);
    font-weight: 800;
}


.faq-layout,
.contact-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 70px;
    align-items: start;
}

.faq-intro,
.contact-copy {
    position: sticky;
    top: 110px;
}

.faq-intro h2,
.contact-copy h2,
.faq-help-card h2 {
    margin: 13px 0 18px;
    font-size: clamp(2.1rem, 4vw, 3.8rem);
    line-height: .98;
    letter-spacing: -.05em;
}

.faq-intro > div,
.contact-copy > div {
    color: var(--poseidon-muted);
}

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

.faq-item {
    border: 1px solid var(--poseidon-border);
    border-radius: 18px;
    background: #f8faf9;
}

.faq-item summary {
    position: relative;
    padding: 21px 55px 21px 21px;
    cursor: pointer;
    list-style: none;
    font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 21px;
    content: "+";
    transform: translateY(-50%);
    color:
        var(--poseidon-brand-orange-dark);
    font-size: 1.5rem;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 21px 21px;
    color: var(--poseidon-muted);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-help {
    padding: 0 0 85px;
}

.faq-help-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 38px;
    border-radius: 27px;
    background: var(--poseidon-sand);
}

.faq-help-card p {
    margin-bottom: 0;
    color: var(--poseidon-muted);
}

.contact-card {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 23px;
    border: 1px solid var(--poseidon-border);
    border-radius: 21px;
    background: #f7f9f8;
}

.contact-card-primary {
    background: var(--poseidon-navy);
    color: #fff;
}

.contact-card span,
.contact-card strong,
.contact-card small {
    display: block;
}

.contact-card span {
    margin-bottom: auto;
    color: var(--poseidon-brand-blue-dark);
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-card-primary span,
.contact-card-primary small {
    color: #acd0d4;
}

.contact-card strong {
    font-size: 1.1rem;
}

.contact-card small {
    margin-top: 5px;
    color: var(--poseidon-muted);
}


/* ============================================================
   FOOTER 5 COLUMNS
============================================================ */

.footer-grid {
    grid-template-columns:
        1.5fr
        repeat(4, minmax(0, 1fr));
    gap: 30px;
}


/* ============================================================
   RESPONSIVE NEW PAGES
============================================================ */

@media (max-width: 1000px) {

    .about-highlight-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-stats-grid > div:nth-child(3) {
        border-left: 0;
    }

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

}


@media (max-width: 700px) {

    .about-hero {
        min-height: 540px;
    }

    .about-hero-inner {
        padding: 135px 0 45px;
    }

    .about-story-grid,
    .faq-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-highlight-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-intro,
    .contact-copy {
        position: static;
    }

    .about-cta-card,
    .faq-help-card {
        display: block;
        padding: 29px 23px;
    }

    .about-cta-card .poseidon-button,
    .faq-help-card .poseidon-button {
        width: 100%;
        margin-top: 20px;
    }

    .simple-page-hero {
        padding: 145px 0 65px;
    }

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

    .footer-brand-column {
        grid-column: 1 / -1;
    }

}


@media (max-width: 450px) {

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

    .about-stats-grid > div {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.10);
    }

    .about-stats-grid > div:first-child {
        border-top: 0;
    }

    .footer-brand-column {
        grid-column: auto;
    }

}


/* ============================================================
   DIVE SITES
============================================================ */

.dive-sites-page,
.dive-site-single {
    background: #f5f7f4;
}


/* LANDING HERO */

.dive-sites-hero {
    position: relative;
    min-height: 610px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-image: var(--sites-image);
    background-size: cover;
    background-position: center;
    color: #fff;
}

.dive-sites-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(2,23,33,.95),
            rgba(2,23,33,.57) 54%,
            rgba(2,23,33,.12)
        ),
        linear-gradient(
            0deg,
            rgba(2,23,33,.78),
            transparent 60%
        );
}

.dive-sites-hero-inner {
    position: relative;
    z-index: 2;
    padding: 160px 0 65px;
}

.dive-sites-hero-copy {
    max-width: 760px;
}

.dive-sites-hero h1 {
    margin: 15px 0 20px;
    font-size: clamp(3.5rem, 7vw, 6.8rem);
    line-height: .91;
    letter-spacing: -.06em;
}

.dive-sites-hero-copy p {
    max-width: 670px;
    margin-bottom: 27px;
    color: #d4e8eb;
    font-size: 1.14rem;
}


/* INTRO */

.dive-sites-intro {
    padding: 78px 0;
    background: #fff;
}

.dive-sites-intro-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
}

.dive-sites-intro h2,
.dive-sites-heading h2,
.dive-site-highlights h2 {
    margin: 13px 0 0;
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: .98;
    letter-spacing: -.05em;
}

.dive-sites-intro-content {
    color: var(--poseidon-muted);
    font-size: 1.04rem;
    line-height: 1.75;
}


/* CARDS */

.dive-sites-list {
    padding: 85px 0;
    background: var(--poseidon-sand);
}

.dive-sites-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.dive-sites-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.dive-site-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--poseidon-border);
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(3,30,43,.06);
}

.dive-site-card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #0b4657;
}

.dive-site-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.dive-site-card:hover .dive-site-card-image img {
    transform: scale(1.03);
}

.dive-site-card-image > span {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 11px;
    border-radius: 999px;
    background: var(--poseidon-aqua);
    color: #07313a;
    font-size: .69rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.dive-site-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.dive-site-card-top h3 {
    margin: 0;
    font-size: 1.35rem;
}

.dive-site-card-top small {
    display: block;
    margin-top: 3px;
    color: var(--poseidon-brand-blue-dark);
    font-weight: 750;
}

.dive-site-card-content > p {
    color: var(--poseidon-muted);
    font-size: .88rem;
}

.dive-site-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 12px 0 20px;
}

.dive-site-card-meta span {
    padding: 7px 9px;
    border-radius: 8px;
    background: #eef5f5;
    color: #456169;
    font-size: .72rem;
    font-weight: 720;
}

.dive-site-card-content .poseidon-button {
    margin-top: auto;
}

.dive-sites-empty {
    padding: 30px;
    border-radius: 20px;
    background: #fff;
}


/* ============================================================
   SINGLE DIVE SITE
============================================================ */

.dive-site-single-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-image: var(--site-image);
    background-size: cover;
    background-position: center;
    color: #fff;
}

.dive-site-single-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(2,23,33,.94),
            rgba(2,23,33,.52) 55%,
            rgba(2,23,33,.12)
        ),
        linear-gradient(
            0deg,
            rgba(2,23,33,.80),
            transparent 60%
        );
}

.dive-site-single-inner {
    position: relative;
    z-index: 2;
    padding: 155px 0 58px;
}

.dive-site-single h1 {
    max-width: 850px;
    margin: 16px 0 18px;
    font-size: clamp(3.4rem, 7vw, 6.5rem);
    line-height: .91;
    letter-spacing: -.06em;
}

.dive-site-single-inner > p {
    max-width: 680px;
    color: #d3e7ea;
    font-size: 1.12rem;
}


/* SITE CONTENT */

.dive-site-single-main {
    padding: 70px 0 90px;
}

.dive-site-single-layout {
    display: grid;
    grid-template-columns:
        minmax(0,1fr)
        340px;
    gap: 55px;
    align-items: start;
}

.dive-site-facts {
    display: grid;
    grid-template-columns:
        repeat(
            auto-fit,
            minmax(160px,1fr)
        );
    gap: 11px;
    margin-bottom: 50px;
}

.dive-site-facts > div {
    min-height: 105px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
    border: 1px solid var(--poseidon-border);
    border-radius: 18px;
    background: #fff;
}

.dive-site-facts span,
.dive-site-facts strong {
    display: block;
}

.dive-site-facts span {
    margin-bottom: 5px;
    color: var(--poseidon-muted);
    font-size: .76rem;
}

.dive-site-description {
    padding-bottom: 50px;
}

.dive-site-description .product-rich-text {
    max-width: 760px;
}

.dive-site-highlights {
    padding: 45px 0;
    border-top: 1px solid var(--poseidon-border);
}

.dive-site-highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 25px;
}

.dive-site-highlight-grid > div {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 68px;
    padding: 15px;
    border-radius: 16px;
    background: #fff;
}

.dive-site-highlight-grid span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #ddf8fa;
    color: #087d89;
    font-weight: 900;
}

.dive-site-side-card {
    position: sticky;
    top: 110px;
    padding: 26px;
    border: 1px solid var(--poseidon-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--poseidon-shadow);
}

body.admin-bar .dive-site-side-card {
    top: 142px;
}

.dive-site-side-card h3 {
    margin: 10px 0;
    font-size: 1.45rem;
    line-height: 1.15;
}

.dive-site-side-card p {
    margin-bottom: 21px;
    color: var(--poseidon-muted);
    font-size: .88rem;
}


/* EXPERIENCES */

.dive-site-experiences {
    padding: 85px 0;
    background: var(--poseidon-sand);
}

.dive-site-experience-grid {
    display: grid;
    grid-template-columns:
        repeat(3,minmax(0,1fr));
    gap: 14px;
}

.dive-site-experience-card {
    overflow: hidden;
    border: 1px solid var(--poseidon-border);
    border-radius: 22px;
    background: #fff;
}

.dive-site-experience-image {
    height: 190px;
    display: block;
    overflow: hidden;
}

.dive-site-experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dive-site-experience-card > div {
    padding: 18px;
}

.dive-site-experience-card h3 {
    margin: 0 0 7px;
}

.dive-site-experience-card p {
    color: var(--poseidon-muted);
    font-size: .83rem;
}

.dive-site-experience-bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 15px;
    margin-top: 18px;
}

.dive-site-experience-bottom strong {
    font-size: 1.3rem;
}

.dive-site-experience-bottom a {
    color: #087d89;
    font-size: .76rem;
    font-weight: 850;
}


/* HEADER FIT WITH EXTRA ITEM */

@media (min-width: 901px) {

    .desktop-nav {
        gap: 20px;
        font-size: .86rem;
    }

}


/* RESPONSIVE */

@media (max-width: 900px) {

    .dive-site-single-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .dive-site-side-card {
        position: static;
    }

    .dive-site-experience-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 700px) {

    .dive-sites-hero,
    .dive-site-single-hero {
        min-height: 540px;
    }

    .dive-sites-hero-inner,
    .dive-site-single-inner {
        padding: 135px 0 45px;
    }

    .dive-sites-intro-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .dive-sites-grid {
        grid-template-columns: 1fr;
    }

    .dive-site-card-image {
        height: 235px;
    }

    .dive-site-highlight-grid,
    .dive-site-experience-grid {
        grid-template-columns: 1fr;
    }

}


/* ============================================================
   NAVIGATION — SWITCH EARLIER TO MOBILE MENU
============================================================ */

@media (max-width: 1120px) {

    .desktop-nav {
        display: none !important;
    }

    .desktop-book {
        display: none !important;
    }

    .mobile-menu-button {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }

}


@media (min-width: 1121px) {

    .mobile-menu-button {
        display: none !important;
    }

}


/* ============================================================
   MOBILE NAVIGATION — FINAL OVERRIDE
============================================================ */

@media (max-width: 1120px) {

    .site-header {
        overflow: visible;
    }

    .mobile-menu-button {
        position: relative;
        z-index: 1002;
        width: 44px;
        height: 44px;
        padding: 0;
        border: 0;
        background: transparent;
        color: #fff;
        cursor: pointer;
        font-size: 1.8rem;
        line-height: 1;
    }

    .mobile-nav {
        position: absolute;
        z-index: 1000;
        top: 100%;
        right: 13px;
        left: 13px;

        display: none !important;
        flex-direction: column;
        gap: 0;

        overflow: hidden;

        padding: 8px;

        border:
            1px solid
            rgba(255,255,255,.13);

        border-radius: 20px;

        background:
            rgba(3,30,43,.98);

        box-shadow:
            0 22px 60px
            rgba(0,0,0,.28);

        backdrop-filter:
            blur(16px);
    }


    .mobile-nav.is-open {
        display: flex !important;
    }


    .mobile-nav > a {
        display: flex;
        align-items: center;

        min-height: 49px;

        padding:
            0 14px;

        border-radius:
            12px;

        color:
            #fff;

        font-size:
            .92rem;

        font-weight:
            750;

        text-decoration:
            none;
    }


    .mobile-nav > a:not(.mobile-book-button):hover {
        background:
            rgba(255,255,255,.08);
    }


    .mobile-nav .mobile-book-button {
        justify-content: center;

        margin-top:
            6px;

        background:
            var(--poseidon-yellow);

        color:
            var(--poseidon-text);

        font-weight:
            900;
    }


    body.poseidon-menu-open {
        overflow-x: hidden;
    }

}


/*
 * On narrow phones the dropdown fills most
 * of the available width.
 */

@media (max-width: 500px) {

    .mobile-nav {
        right: 10px;
        left: 10px;
    }

}


/* ============================================================
   MOBILE MENU — AUTHORITATIVE FINAL RULES
============================================================ */

@media (max-width: 1120px) {

    .header-inner {
        position: relative;
    }


    .desktop-nav,
    .desktop-book {
        display: none !important;
    }


    .mobile-menu-button {
        position: relative !important;
        z-index: 10002 !important;

        width: 46px !important;
        height: 46px !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        flex: 0 0 auto !important;

        padding: 0 !important;

        border: 0 !important;

        background: transparent !important;

        color: #fff !important;

        cursor: pointer !important;

        font-size: 1.85rem !important;
        line-height: 1 !important;
    }


    .mobile-nav {
        position: absolute !important;

        z-index: 10000 !important;

        top: 100% !important;
        right: 14px !important;
        left: 14px !important;

        width: auto !important;
        height: auto !important;

        display: none !important;

        flex-direction: column !important;

        padding: 9px !important;

        overflow: visible !important;

        border:
            1px solid
            rgba(255,255,255,.14) !important;

        border-radius: 20px !important;

        background:
            rgba(3,30,43,.99) !important;

        box-shadow:
            0 25px 70px
            rgba(0,0,0,.35) !important;

        opacity: 1 !important;

        visibility: visible !important;

        transform: none !important;

        pointer-events: auto !important;
    }


    .mobile-nav.is-open {
        display: flex !important;
    }


    .mobile-nav > a {
        width: 100% !important;

        min-height: 48px !important;

        display: flex !important;

        align-items: center !important;

        padding:
            0 14px !important;

        border-radius:
            11px !important;

        color:
            #fff !important;

        font-size:
            .93rem !important;

        font-weight:
            750 !important;

        text-decoration:
            none !important;
    }


    .mobile-nav > a:not(.mobile-book-button):hover {
        background:
            rgba(255,255,255,.08) !important;
    }


    .mobile-nav .mobile-book-button {
        justify-content: center !important;

        margin-top:
            7px !important;

        background:
            var(--poseidon-yellow) !important;

        color:
            var(--poseidon-text) !important;

        font-weight:
            900 !important;
    }

}


@media (min-width: 1121px) {

    .mobile-menu-button,
    .mobile-nav {
        display: none !important;
    }

}


/* ============================================================
   BOOKING PAGE
============================================================ */

.booking-page {
    min-height: 100vh;
    background: #f5f7f4;
}


.booking-page-hero {
    padding: 180px 0 75px;

    background:
        linear-gradient(
            115deg,
            #031e2b,
            #0a4656
        );

    color: #fff;
}


.booking-page-hero h1 {
    margin:
        14px
        0
        17px;

    font-size:
        clamp(
            3.3rem,
            7vw,
            6.2rem
        );

    line-height:
        .93;

    letter-spacing:
        -.055em;
}


.booking-page-hero p {
    max-width:
        720px;

    margin:
        0;

    color:
        #bad5d9;

    font-size:
        1.08rem;
}


/* ============================================================
   GENERIC CONTENT
============================================================ */

.booking-page-content {
    color:
        var(--poseidon-muted);

    line-height:
        1.7;
}


.booking-page-content p:first-child {
    margin-top:
        0;
}


.booking-page-content p:last-child {
    margin-bottom:
        0;
}


/* ============================================================
   CHOOSE SERVICE
============================================================ */

.booking-choose {
    padding:
        80px
        0
        95px;
}


.booking-intro-grid {
    display:
        grid;

    grid-template-columns:
        .8fr
        1.2fr;

    gap:
        70px;

    margin-bottom:
        70px;
}


.booking-intro-grid h2 {
    margin:
        13px
        0
        0;

    font-size:
        clamp(
            2.2rem,
            4vw,
            4rem
        );

    line-height:
        .98;

    letter-spacing:
        -.05em;
}


.booking-group {
    margin-top:
        60px;
}


.booking-group:first-of-type {
    margin-top:
        0;
}


.booking-group-heading {
    display:
        flex;

    justify-content:
        space-between;

    gap:
        30px;

    align-items:
        end;

    margin-bottom:
        20px;
}


.booking-group-heading h3 {
    margin:
        0;

    font-size:
        1.7rem;

    letter-spacing:
        -.03em;
}


.booking-group-heading p {
    margin:
        4px
        0
        0;

    color:
        var(--poseidon-muted);
}


.booking-service-grid {
    display:
        grid;

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

    gap:
        12px;
}


.booking-service-card {
    min-height:
        190px;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        space-between;

    padding:
        21px;

    border:
        1px solid
        var(--poseidon-border);

    border-radius:
        20px;

    background:
        #fff;
}


.booking-service-card h4 {
    margin:
        0
        0
        7px;

    font-size:
        1.08rem;
}


.booking-service-card p {
    margin:
        0;

    color:
        var(--poseidon-muted);

    font-size:
        .84rem;
}


.booking-service-footer {
    display:
        flex;

    justify-content:
        space-between;

    align-items:
        end;

    gap:
        16px;

    margin-top:
        23px;
}


.booking-service-footer strong,
.booking-service-footer span {
    display:
        block;
}


.booking-service-footer strong {
    font-size:
        1.25rem;
}


.booking-service-footer span {
    margin-top:
        2px;

    color:
        var(--poseidon-muted);

    font-size:
        .73rem;
}


.booking-service-footer a {
    color:
        #087d89;

    font-size:
        .77rem;

    font-weight:
        900;
}


.booking-help-card {
    display:
        flex;

    flex-wrap:
        wrap;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        30px;

    margin-top:
        65px;

    padding:
        26px;

    border-radius:
        23px;

    background:
        var(--poseidon-sand);
}


.booking-help-card strong,
.booking-help-card span {
    display:
        block;
}


.booking-help-card strong {
    font-size:
        1.07rem;
}


.booking-help-card span {
    margin-top:
        2px;

    color:
        var(--poseidon-muted);

    font-size:
        .85rem;
}


/* ============================================================
   SELECTED SERVICE
============================================================ */

.booking-selected {
    padding:
        65px
        0
        95px;
}


.booking-change-link {
    display:
        inline-block;

    margin-bottom:
        22px;

    color:
        #087d89;

    font-size:
        .82rem;

    font-weight:
        850;
}


.booking-selected-grid {
    display:
        grid;

    grid-template-columns:
        minmax(0,1fr)
        390px;

    gap:
        35px;

    align-items:
        start;
}


.booking-summary-card {
    overflow:
        hidden;

    border:
        1px solid
        var(--poseidon-border);

    border-radius:
        26px;

    background:
        #fff;
}


.booking-summary-image {
    height:
        360px;

    overflow:
        hidden;

    background:
        #0b4657;
}


.booking-summary-image img {
    width:
        100%;

    height:
        100%;

    object-fit:
        cover;
}


.booking-summary-content {
    padding:
        28px;
}


.booking-service-type {
    color:
        #078895;

    font-size:
        .71rem;

    font-weight:
        850;

    letter-spacing:
        .08em;

    text-transform:
        uppercase;
}


.booking-summary-content h2 {
    margin:
        8px
        0;

    font-size:
        clamp(
            2rem,
            4vw,
            3.3rem
        );

    line-height:
        1;

    letter-spacing:
        -.045em;
}


.booking-summary-content > p {
    color:
        var(--poseidon-muted);
}


.booking-summary-facts {
    display:
        grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0,1fr)
        );

    gap:
        9px;

    margin-top:
        25px;
}


.booking-summary-facts > div {
    padding:
        15px;

    border-radius:
        14px;

    background:
        #f2f7f6;
}


.booking-summary-facts span,
.booking-summary-facts strong {
    display:
        block;
}


.booking-summary-facts span {
    margin-bottom:
        3px;

    color:
        var(--poseidon-muted);

    font-size:
        .72rem;
}


.booking-summary-facts strong {
    font-size:
        .93rem;
}


.booking-action-card {
    position:
        sticky;

    top:
        110px;

    padding:
        27px;

    border:
        1px solid
        var(--poseidon-border);

    border-radius:
        25px;

    background:
        #fff;

    box-shadow:
        var(--poseidon-shadow);
}


body.admin-bar
.booking-action-card {
    top:
        142px;
}


.booking-action-card h2 {
    margin:
        13px
        0
        18px;

    font-size:
        2rem;

    line-height:
        1.05;

    letter-spacing:
        -.04em;
}


.booking-action-card
.poseidon-button {
    margin-top:
        25px;
}


.booking-provider-note {
    margin:
        10px
        0
        0;

    color:
        var(--poseidon-muted);

    font-size:
        .72rem;

    text-align:
        center;
}


.booking-not-connected {
    margin-top:
        24px;

    padding:
        17px;

    border:
        1px solid
        #e7d9a4;

    border-radius:
        15px;

    background:
        #fff9df;
}


.booking-not-connected strong {
    display:
        block;

    font-size:
        .89rem;
}


.booking-not-connected p {
    margin:
        5px
        0
        0;

    color:
        #736842;

    font-size:
        .78rem;
}


.booking-whatsapp-button {
    min-height:
        48px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin-top:
        10px;

    border:
        1px solid
        var(--poseidon-border);

    border-radius:
        999px;

    color:
        #087d89;

    font-size:
        .83rem;

    font-weight:
        850;
}


/* ============================================================
   RESPONSIVE BOOKING
============================================================ */

@media (max-width: 1000px) {

    .booking-service-grid {
        grid-template-columns:
            1fr
            1fr;
    }


    .booking-selected-grid {
        grid-template-columns:
            1fr;
    }


    .booking-action-card {
        position:
            static;
    }

}


@media (max-width: 700px) {

    .booking-page-hero {
        padding:
            145px
            0
            60px;
    }


    .booking-choose,
    .booking-selected {
        padding:
            55px
            0
            70px;
    }


    .booking-intro-grid {
        grid-template-columns:
            1fr;

        gap:
            25px;

        margin-bottom:
            50px;
    }


    .booking-service-grid {
        grid-template-columns:
            1fr;
    }


    .booking-summary-image {
        height:
            235px;
    }


    .booking-summary-content {
        padding:
            21px;
    }


    .booking-summary-facts {
        grid-template-columns:
            1fr
            1fr;
    }


    .booking-action-card {
        padding:
            22px;
    }


    .booking-help-card {
        display:
            block;
    }


    .booking-help-card
    .poseidon-button {
        width:
            100%;

        margin-top:
            17px;
    }

}


/* ============================================================
   PLANYO EMBED
============================================================ */

.booking-page-hero-compact {
    padding-bottom:
        55px;
}


.booking-planyo-section {
    padding:
        45px
        0
        90px;

    background:
        #f5f7f4;
}


.booking-planyo-top {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        30px;

    margin-bottom:
        20px;
}


.booking-planyo-top
.booking-change-link {
    margin:
        0;
}


.booking-planyo-selection {
    text-align:
        right;
}


.booking-planyo-selection span,
.booking-planyo-selection strong {
    display:
        block;
}


.booking-planyo-selection span {
    color:
        var(--poseidon-muted);

    font-size:
        .72rem;
}


.booking-planyo-selection strong {
    margin-top:
        2px;

    font-size:
        .95rem;
}


.planyo-shell {
    position:
        relative;

    min-height:
        400px;

    padding:
        30px;

    overflow:
        hidden;

    border:
        1px solid
        var(--poseidon-border);

    border-radius:
        26px;

    background:
        #fff;

    box-shadow:
        0 18px 55px
        rgba(3,30,43,.06);
}


/*
 * Keep the Planyo embed constrained to our layout.
 */

.planyo-shell
#planyo_content,
.planyo-shell
.planyo {
    max-width:
        100%;
}


.planyo-shell img {
    max-width:
        100%;
    height:
        auto;
}


.booking-planyo-help {
    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    gap:
        20px;

    margin-top:
        15px;

    padding:
        0
        5px;

    color:
        var(--poseidon-muted);

    font-size:
        .8rem;
}


.booking-planyo-help a {
    color:
        #087d89;

    font-weight:
        850;
}


.booking-planyo-error {
    padding:
        25px;

    border-radius:
        16px;

    background:
        #fff3d2;
}


.booking-planyo-error strong {
    display:
        block;
}


.booking-planyo-error p {
    margin-bottom:
        0;
}


@media (max-width: 700px) {

    .booking-planyo-section {
        padding:
            30px
            0
            65px;
    }


    .booking-planyo-top {
        display:
            block;
    }


    .booking-planyo-selection {
        margin-top:
            14px;

        text-align:
            left;
    }


    .planyo-shell {
        padding:
            15px;

        border-radius:
            19px;
    }


    .booking-planyo-help {
        display:
            block;
    }


    .booking-planyo-help a {
        display:
            block;

        margin-top:
            5px;
    }

}


/* ============================================================
   CONTACT PAGE
============================================================ */

.contact-page {
    background:
        #fff;
}


/* ------------------------------------------------------------
   HERO
------------------------------------------------------------ */

.contact-hero {
    min-height:
        470px;

    display:
        flex;

    align-items:
        flex-end;

    padding:
        150px
        0
        75px;

    background-image:
        linear-gradient(
            90deg,
            rgba(2,29,42,.88) 0%,
            rgba(2,29,42,.68) 50%,
            rgba(2,29,42,.40) 100%
        ),
        radial-gradient(
            circle at 82% 20%,
            rgba(20,151,171,.18),
            transparent 35%
        ),
        var(--contact-image);

    background-size:
        cover,
        cover,
        cover;

    background-position:
        center,
        center,
        center;

    background-repeat:
        no-repeat;

    color:
        #fff;
}


.contact-hero h1 {
    max-width:
        850px;

    margin:
        15px
        0
        20px;

    color:
        #fff;

    font-size:
        clamp(
            3rem,
            7vw,
            5.3rem
        );

    line-height:
        .95;

    letter-spacing:
        -.055em;
}


.contact-hero > .poseidon-container > p {
    max-width:
        680px;

    margin:
        0;

    color:
        #d5eef1;

    font-size:
        1.1rem;

    line-height:
        1.55;
}


.contact-hero-actions {
    display:
        flex;

    align-items:
        center;

    gap:
        25px;

    margin-top:
        30px;
}


.contact-hero-secondary {
    color:
        #fff;

    font-weight:
        800;
}


/* ------------------------------------------------------------
   INTRO
------------------------------------------------------------ */

.contact-intro {
    padding:
        85px
        0;
}


.contact-intro-grid {
    display:
        grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap:
        80px;
}


.contact-intro h2 {
    max-width:
        450px;

    margin:
        14px
        0
        0;

    font-size:
        clamp(
            2.3rem,
            5vw,
            3.8rem
        );

    line-height:
        .98;

    letter-spacing:
        -.05em;
}


.contact-editor-content {
    color:
        var(--poseidon-muted);

    font-size:
        1.05rem;

    line-height:
        1.75;
}


.contact-editor-content p:first-child {
    margin-top:
        0;
}


/* ------------------------------------------------------------
   CONTACT METHODS
------------------------------------------------------------ */

.contact-methods {
    padding:
        80px
        0
        95px;

    background:
        #f3f0e8;
}


.contact-section-heading {
    margin-bottom:
        36px;
}


.contact-section-heading h2 {
    margin:
        12px
        0
        0;

    font-size:
        clamp(
            2.2rem,
            4.5vw,
            3.4rem
        );

    line-height:
        1;

    letter-spacing:
        -.045em;
}


.contact-method-grid {
    display:
        grid;

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

    gap:
        14px;
}


.contact-method-card {
    min-height:
        235px;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        space-between;

    padding:
        26px;

    border:
        1px solid
        var(--poseidon-border);

    border-radius:
        24px;

    background:
        #fff;

    color:
        var(--poseidon-dark);

    text-decoration:
        none;

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}


.contact-method-card:hover {
    transform:
        translateY(-3px);

    border-color:
        #a8c8cc;

    box-shadow:
        0 18px 45px
        rgba(3,30,43,.07);
}


.contact-method-primary {
    background:
        #073947;

    color:
        #fff;
}


.contact-method-primary h3,
.contact-method-primary p,
.contact-method-primary
.contact-method-action {
    color:
        var(--poseidon-brand-orange-dark);
}


.contact-method-number {
    color:
        var(--poseidon-brand-blue-dark);

    font-size:
        .72rem;

    font-weight:
        900;
}


.contact-method-card h3 {
    margin:
        20px
        0
        8px;

    font-size:
        1.3rem;
}


.contact-method-card p {
    max-width:
        410px;

    margin:
        0;

    color:
        var(--poseidon-muted);

    line-height:
        1.55;
}


.contact-method-action {
    margin-top:
        26px;

    color:
        var(--poseidon-brand-blue-dark);

    font-size:
        .78rem;

    font-weight:
        900;
}


/* ------------------------------------------------------------
   CONTACT FORM
------------------------------------------------------------ */

.contact-form-section {
    padding:
        90px
        0;

    background:
        #fff;
}


.contact-form-layout {
    display:
        grid;

    grid-template-columns:
        .72fr
        1.28fr;

    gap:
        70px;

    align-items:
        start;
}


.contact-form-copy {
    position:
        sticky;

    top:
        110px;
}


.contact-form-copy h2 {
    max-width:
        430px;

    margin:
        14px
        0
        16px;

    font-size:
        clamp(
            2.3rem,
            4.5vw,
            3.6rem
        );

    line-height:
        .98;

    letter-spacing:
        -.05em;
}


.contact-form-copy p {
    max-width:
        430px;

    margin:
        0;

    color:
        var(--poseidon-muted);

    line-height:
        1.65;
}


.contact-form-card {
    padding:
        34px;

    border:
        1px solid
        var(--poseidon-border);

    border-radius:
        26px;

    background:
        #f7f9f8;
}


.contact-form-grid {
    display:
        grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0,1fr)
        );

    gap:
        20px;
}


.contact-field {
    display:
        flex;

    flex-direction:
        column;

    gap:
        8px;
}


.contact-field-full {
    grid-column:
        1 / -1;
}


.contact-field > span {
    color:
        var(--poseidon-dark);

    font-size:
        .82rem;

    font-weight:
        800;
}


.contact-field input,
.contact-field select,
.contact-field textarea {
    width:
        100%;

    min-height:
        52px;

    padding:
        13px
        15px;

    border:
        1px solid
        #cbd9da;

    border-radius:
        13px;

    outline:
        none;

    background:
        #fff;

    color:
        var(--poseidon-dark);

    font:
        inherit;

    transition:
        border-color .15s ease,
        box-shadow .15s ease;
}


.contact-field textarea {
    min-height:
        145px;

    resize:
        vertical;
}


.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color:
        var(--poseidon-brand-blue);

    box-shadow:
        0 0 0 3px
        rgba(7,130,142,.1);
}


.contact-form-footer {
    display:
        flex;

    align-items:
        center;

    gap:
        22px;

    margin-top:
        24px;
}


.contact-form-footer p {
    margin:
        0;

    color:
        var(--poseidon-muted);

    font-size:
        .84rem;

    line-height:
        1.45;
}


.contact-form-footer a {
    color:
        var(--poseidon-brand-orange-dark);

    font-weight:
        800;
}


.contact-form-notice {
    display:
        flex;

    flex-direction:
        column;

    gap:
        4px;

    margin-bottom:
        24px;

    padding:
        16px
        18px;

    border-radius:
        13px;
}


.contact-form-notice-success {
    background:
        #e6f7f0;

    color:
        #185f46;
}


.contact-form-notice-error {
    background:
        #fff0ed;

    color:
        #8b3024;
}


.contact-form-honeypot {
    position:
        absolute !important;

    left:
        -10000px !important;

    width:
        1px !important;

    height:
        1px !important;

    overflow:
        hidden !important;
}



/* ------------------------------------------------------------
   PICKUP
------------------------------------------------------------ */

.contact-pickup {
    padding:
        80px
        0;
}


.contact-pickup-card {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        50px;

    padding:
        42px
        44px;

    border-radius:
        28px;

    background:
        #073947;

    color:
        #fff;
}


.contact-pickup-card h2 {
    max-width:
        650px;

    margin:
        13px
        0
        12px;

    color:
        #fff;

    font-size:
        clamp(
            2rem,
            4vw,
            3.2rem
        );

    letter-spacing:
        -.045em;
}


.contact-pickup-card p {
    max-width:
        670px;

    margin:
        0;

    color:
        #cde7ea;

    line-height:
        1.6;
}


/* ------------------------------------------------------------
   CHOOSE
------------------------------------------------------------ */

.contact-choose {
    padding:
        80px
        0
        100px;

    background:
        #f7f9f8;
}


.contact-choice-grid {
    display:
        grid;

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

    gap:
        14px;
}


.contact-choice-card {
    min-height:
        280px;

    display:
        flex;

    flex-direction:
        column;

    padding:
        26px;

    border:
        1px solid
        var(--poseidon-border);

    border-radius:
        23px;

    background:
        #fff;

    color:
        var(--poseidon-dark);

    text-decoration:
        none;

    transition:
        transform .18s ease,
        box-shadow .18s ease;
}


.contact-choice-card:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 16px 40px
        rgba(3,30,43,.06);
}


.contact-choice-card > span {
    color:
        var(--poseidon-brand-orange-dark);

    font-size:
        .72rem;

    font-weight:
        900;

    text-transform:
        uppercase;

    letter-spacing:
        .05em;
}


.contact-choice-card strong {
    margin:
        24px
        0
        10px;

    font-size:
        1.35rem;

    line-height:
        1.15;
}


.contact-choice-card p {
    margin:
        0;

    color:
        var(--poseidon-muted);

    line-height:
        1.55;
}


.contact-choice-card b {
    margin-top:
        auto;

    padding-top:
        30px;

    color:
        var(--poseidon-brand-orange-dark);

    font-size:
        .78rem;
}


/* ------------------------------------------------------------
   FINAL CTA
------------------------------------------------------------ */

.contact-final {
    padding:
        80px
        0
        100px;
}


.contact-final-card {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        45px;

    padding:
        42px
        44px;

    border-radius:
        28px;

    background:
        #052f3c;

    color:
        #fff;
}


.contact-final-card h2 {
    margin:
        12px
        0
        10px;

    color:
        #fff;

    font-size:
        clamp(
            2rem,
            4vw,
            3.25rem
        );

    line-height:
        1;

    letter-spacing:
        -.045em;
}


.contact-final-card p {
    max-width:
        620px;

    margin:
        0;

    color:
        #c9e4e8;
}


.contact-final-actions {
    min-width:
        190px;

    text-align:
        center;
}


.contact-final-actions > a:last-child {
    display:
        block;

    margin-top:
        13px;

    color:
        #fff;

    font-size:
        .8rem;

    font-weight:
        800;
}


/* ============================================================
   CONTACT MOBILE
============================================================ */

@media (max-width: 800px) {

    .contact-hero {
        min-height:
            420px;

        padding:
            125px
            0
            55px;
    }


    .contact-hero h1 {
        font-size:
            clamp(
                3rem,
                14vw,
                4.5rem
            );
    }


    .contact-hero-actions {
        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            15px;
    }


    .contact-intro {
        padding:
            60px
            0;
    }


    .contact-intro-grid {
        grid-template-columns:
            1fr;

        gap:
            30px;
    }


    .contact-methods,
    .contact-choose {
        padding:
            60px
            0
            70px;
    }


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

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


    @media (max-width: 560px) {

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

    }


    .contact-method-card,
    .contact-choice-card {
        min-height:
            210px;
    }


    .contact-form-section {
        padding:
            60px
            0;
    }


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

        gap:
            30px;
    }


    .contact-form-copy {
        position:
            static;
    }


    .contact-form-card {
        padding:
            24px;
    }


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


    .contact-field-full {
        grid-column:
            auto;
    }


    .contact-form-footer {
        align-items:
            flex-start;

        flex-direction:
            column;
    }


    .contact-pickup {
        padding:
            60px
            0;
    }


    .contact-pickup-card,
    .contact-final-card {
        align-items:
            flex-start;

        flex-direction:
            column;

        padding:
            30px
            24px;
    }


    .contact-final {
        padding:
            60px
            0
            75px;
    }


    .contact-final-actions {
        width:
            100%;

        text-align:
            left;
    }


    .contact-final-actions
    .poseidon-button {
        width:
            100%;

        justify-content:
            center;
    }

}



/* ============================================================
   MOBILE HEADER — KEEP LANGUAGE SWITCHER VISIBLE
============================================================ */

@media (max-width: 700px) {

    .header-lang {
        display: block !important;
        flex: 0 0 auto !important;
    }

    .header-actions {
        margin-left: auto;
        gap: 4px;
    }

    .header-lang summary {
        min-width: 46px;
        height: 40px;
        padding: 0 8px;
    }

}

@media (max-width: 360px) {

    .header-lang summary {
        min-width: 42px;
        padding: 0 6px;
        font-size: .70rem;
    }

    .mobile-menu-button {
        width: 42px !important;
        height: 42px !important;
    }

}
