:root {
    --bg: #0b100f;
    --surface: #111816;
    --card: #16201c;
    --text: #f7f9f8;
    --muted: #b6c0bb;
    --line: rgba(255, 255, 255, .10);
    --green: #73b82c;
    --green2: #9bd347;
    --whatsapp: #25d366;
    --max: 1180px;
    --radius: 22px;
    --shadow: 0 18px 50px rgba(0, 0, 0, .26);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: clip;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
}

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

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

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

.wrap {
    width: min(var(--max), calc(100% - 40px));
    margin: auto;
}

.topbar {
    background: #080b0a;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    color: #dfe5e2;
}

.topbar .wrap,
.nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar .wrap {
    min-height: 38px;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(10, 15, 13, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.nav .wrap {
    min-height: 78px;
}

.site-branding {
    flex: 0 0 auto;
    min-width: 170px;
}

.site-branding .custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.site-branding .custom-logo {
    width: auto;
    max-width: 210px;
    max-height: 58px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: .4px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--green), #456e17);
    font-size: 25px;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 2px;
}

.menu {
    margin-left: auto;
}

.menu-list {
    display: flex;
    align-items: center;
    gap: 21px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    font-weight: 800;
}

.menu-list a:hover,
.menu-list .current-menu-item > a,
.menu-list .current_page_item > a {
    color: var(--green2);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 19px;
    border-radius: 12px;
    font-weight: 850;
    border: 1px solid transparent;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--green);
    color: #10160e;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--green2);
}

.btn-ghost {
    border-color: rgba(255, 255, 255, .25);
    background: rgba(0, 0, 0, .16);
    color: #fff;
}

.btn:focus-visible,
.mobile-toggle:focus-visible,
.mobile-action:focus-visible,
.floating-whatsapp:focus-visible,
.footer-credit a:focus-visible {
    outline: 3px solid rgba(155, 211, 71, .7);
    outline-offset: 3px;
}

.header-cta {
    white-space: nowrap;
}

.hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(5, 9, 8, .95) 0%, rgba(5, 9, 8, .73) 43%, rgba(5, 9, 8, .08) 75%),
        url('../images/hero-munte-atv-sinaia.webp') center / cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(transparent, var(--bg));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 90px 0 135px;
}

.eyebrow {
    color: var(--green2);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 900;
    font-size: 13px;
}

.hero h1,
.page-hero h1 {
    font-size: clamp(48px, 7vw, 90px);
    line-height: .96;
    margin: 12px 0 22px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero h1 span {
    color: var(--green2);
}

.lead {
    font-size: 20px;
    color: #dce3df;
    max-width: 690px;
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.trust {
    position: relative;
    z-index: 3;
    margin-top: -70px;
}

.trust-grid,
.grid-3,
.grid-4 {
    display: grid;
    gap: 18px;
}

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

.trust-card {
    background: rgba(19, 28, 24, .96);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 21px;
    box-shadow: var(--shadow);
}

.trust-card b {
    display: block;
    margin-bottom: 4px;
}

.icon {
    font-size: 28px;
    color: var(--green2);
}

section {
    padding: 92px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.section-head h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    margin: 8px 0;
}

.section-head p {
    max-width: 620px;
    color: var(--muted);
}

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

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

.card {
    background: linear-gradient(180deg, #15201b, #111815);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.card-media {
    height: 230px;
    background: linear-gradient(135deg, #293a31, #0f1713);
    display: grid;
    place-items: center;
    overflow: hidden;
}

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

.card-placeholder {
    font-size: 62px;
}

.card-body {
    padding: 24px;
}

.card h3 {
    margin: 0 0 8px;
    font-size: 23px;
    line-height: 1.25;
}

.muted {
    color: var(--muted);
}

.meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    color: #dbe3de;
    font-size: 14px;
    margin: 16px 0;
}

.price {
    font-size: 25px;
    font-weight: 900;
    color: var(--green2);
}

.card-actions {
    margin-top: 18px;
}

.light {
    background: #f4f6f4;
    color: #111814;
}

.light .muted {
    color: #617068;
}

.light .card {
    background: #fff;
    color: #111814;
    border-color: #dfe5e1;
    box-shadow: 0 18px 42px rgba(15, 30, 22, .09);
}

.light .eyebrow {
    color: #578b20;
}

.steps {
    counter-reset: step;
}

.step {
    position: relative;
    padding: 30px 25px 25px 75px;
    background: #151d19;
    border: 1px solid var(--line);
    border-radius: 18px;
}

.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 22px;
    top: 24px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: #0b100f;
    font-weight: 900;
}

.cta {
    background: linear-gradient(135deg, #6aa826, #2e5614);
    border-radius: 30px;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.cta h2 {
    font-size: 42px;
    line-height: 1.05;
    margin: 0 0 10px;
}

.page-hero {
    padding: 105px 0 75px;
    background: radial-gradient(circle at 80% 20%, rgba(115, 184, 44, .25), transparent 30%), #0d1411;
    border-bottom: 1px solid var(--line);
}

.page-hero h1 {
    font-size: clamp(44px, 6vw, 70px);
    max-width: 1000px;
}

.breadcrumbs {
    font-size: 14px;
    color: #aab5af;
    margin-bottom: 18px;
}

.breadcrumbs a {
    color: var(--green2);
}

.prose {
    max-width: 900px;
}

.prose h2 {
    font-size: 34px;
    margin-top: 44px;
    line-height: 1.2;
}

.prose h3 {
    font-size: 25px;
    margin-top: 34px;
}

.prose p,
.prose li {
    color: #c6cfca;
}

.route-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 36px;
    align-items: start;
}

.route-aside,
.booking-aside {
    position: sticky;
    top: 105px;
    background: #141d19;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 26px;
}

.route-aside .price {
    font-size: 34px;
}

.route-aside .btn,
.booking-aside .btn {
    width: 100%;
}

.facts {
    display: grid;
    gap: 12px;
    margin: 20px 0;
}

.fact {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 11px;
    border-bottom: 1px solid var(--line);
}

.route-cover {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 30px;
    max-height: 520px;
}

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

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: #121a16;
    border-radius: 18px;
    overflow: hidden;
    min-width: 760px;
}

.table th,
.table td {
    padding: 17px 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.table th {
    color: var(--green2);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 220px;
    gap: 16px;
}

.gallery-item {
    border-radius: 18px;
    background: linear-gradient(135deg, #24362c, #0f1612);
    display: grid;
    place-items: center;
    font-size: 50px;
    border: 1px solid var(--line);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:first-child {
    grid-row: span 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
}

.form,
.booking-form {
    display: grid;
    gap: 16px;
}

.form input,
.form textarea,
.form select,
.booking-form input,
.booking-form textarea,
.booking-form select {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #cfd7d2;
    background: #fff;
    color: #111;
}

.form textarea,
.booking-form textarea {
    min-height: 150px;
    resize: vertical;
}

.form .btn {
    width: max-content;
}

.map {
    min-height: 430px;
    border: 0;
    width: 100%;
    border-radius: 22px;
}

.notice {
    font-size: 13px;
    color: #8b9791;
    margin-top: 4px;
}

.alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.alert-success {
    background: #18331d;
    border: 1px solid rgba(155, 211, 71, .35);
}

.alert-error {
    background: #3a1717;
    border: 1px solid rgba(255, 118, 118, .45);
}

.faq {
    display: grid;
    gap: 12px;
}

.faq details {
    background: #131b17;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 20px;
}

.faq summary {
    cursor: pointer;
    font-weight: 850;
}

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

.reviews-empty {
    padding: 30px;
    border: 1px dashed rgba(255, 255, 255, .24);
    border-radius: 18px;
    text-align: center;
}

.booking-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 36px;
    align-items: start;
}

.booking-form {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #121a16;
    box-shadow: var(--shadow);
}

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

.field {
    min-width: 0;
}

.field label {
    display: block;
    margin-bottom: 7px;
    font-weight: 800;
    color: #e8efeb;
}

.consent {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: start;
    color: var(--muted);
    font-size: 14px;
}

.consent input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.booking-submit {
    width: max-content;
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}

.footer {
    padding: 54px 0 26px;
    border-top: 1px solid var(--line);
    background: #080c0a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 30px;
}

.footer a {
    color: #c2ccc6;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--line);
    margin-top: 30px;
    padding-top: 18px;
}

.copyright {
    color: #89958f;
    font-size: 14px;
}

.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #89958f;
    font-size: 12px;
    white-space: nowrap;
}

.footer-credit a {
    display: inline-flex;
    align-items: center;
}

.seo-dma-logo {
    width: 90px;
    height: auto;
    object-fit: contain;
    background: transparent;
    transition: transform .25s ease;
}

.footer-credit a:hover .seo-dma-logo {
    transform: scale(1.03);
}

.mobile-toggle {
    display: none;
    background: none;
    border: 1px solid var(--line);
    color: #fff;
    border-radius: 9px;
    padding: 8px 10px;
}

.admin-note {
    background: #fff7d6;
    color: #322b0b;
    padding: 10px 16px;
    text-align: center;
    font-size: 14px;
}

.wp-caption-text {
    font-size: 13px;
    color: var(--muted);
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1100;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--whatsapp);
    color: #fff;
    box-shadow: 0 12px 35px rgba(37, 211, 102, .34);
    transition: transform .2s ease, box-shadow .2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 40px rgba(37, 211, 102, .42);
}

.floating-whatsapp svg {
    width: 31px;
    height: 31px;
}

.mobile-action-bar {
    display: none;
}

@media (max-width: 1120px) {
    .menu-list {
        gap: 14px;
        font-size: 13px;
    }

    .header-cta {
        padding-inline: 14px;
    }
}

@media (max-width: 980px) {
    body {
        padding-bottom: calc(82px + env(safe-area-inset-bottom));
    }

    .menu {
        display: none;
    }

    .mobile-toggle {
        display: block;
        margin-left: auto;
    }

    .menu.open {
        display: block;
        position: absolute;
        left: 20px;
        right: 20px;
        top: 74px;
        background: #101713;
        border: 1px solid var(--line);
        padding: 18px;
        border-radius: 16px;
        box-shadow: var(--shadow);
    }

    .menu.open .menu-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .menu.open .menu-list a {
        display: block;
        padding: 10px 8px;
    }

    .header-cta {
        display: none;
    }

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

    .grid-3,
    .contact-grid,
    .footer-grid,
    .route-layout,
    .booking-grid {
        grid-template-columns: 1fr;
    }

    .route-aside,
    .booking-aside {
        position: static;
    }

    .hero {
        min-height: 600px;
    }

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

    .gallery-item:first-child {
        grid-row: auto;
        grid-column: span 2;
    }

    .cta {
        display: block;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: calc(92px + env(safe-area-inset-bottom));
        width: 58px;
        height: 58px;
    }

    .mobile-action-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1090;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        align-items: end;
        min-height: 72px;
        padding: 7px 6px calc(7px + env(safe-area-inset-bottom));
        background: rgba(10, 16, 28, .97);
        border-top: 1px solid rgba(255, 255, 255, .12);
        box-shadow: 0 -10px 32px rgba(0, 0, 0, .28);
        backdrop-filter: blur(16px);
    }

    .mobile-action {
        min-width: 0;
        min-height: 58px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        color: #d9dfdc;
        font-size: 11px;
        font-weight: 750;
        text-align: center;
        line-height: 1.15;
        border-radius: 12px;
    }

    .mobile-action svg {
        width: 23px;
        height: 23px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.9;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .mobile-action-primary {
        align-self: start;
        min-height: 78px;
        margin: -27px 4px 0;
        padding: 10px 5px 8px;
        border-radius: 19px;
        background: var(--green);
        color: #0d150b;
        box-shadow: 0 12px 28px rgba(115, 184, 44, .34);
        font-size: 10.5px;
    }

    .mobile-action-primary svg {
        width: 29px;
        height: 29px;
        stroke-width: 2;
    }
}

@media (max-width: 640px) {
    .wrap {
        width: min(100% - 24px, var(--max));
    }

    .topbar {
        display: none;
    }

    .nav .wrap {
        min-height: 68px;
    }

    .site-branding {
        min-width: 0;
    }

    .site-branding .custom-logo {
        max-width: 165px;
        max-height: 48px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .hero {
        min-height: 650px;
        background-position: 62% center;
    }

    .hero-content {
        padding: 95px 0 120px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .lead {
        font-size: 17px;
    }

    .trust-grid,
    .grid-4,
    .grid-3,
    .field-grid {
        grid-template-columns: 1fr;
    }

    .trust {
        margin-top: -40px;
    }

    section {
        padding: 68px 0;
    }

    .section-head {
        display: block;
    }

    .cta {
        padding: 32px 24px;
    }

    .cta h2 {
        font-size: 34px;
    }

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

    .gallery-item:first-child {
        grid-column: auto;
    }

    .page-hero {
        padding: 85px 0 58px;
    }

    .booking-form {
        padding: 20px 16px;
    }

    .booking-submit {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        gap: 7px;
        text-align: center;
    }

    .footer-credit {
        justify-content: center;
        flex-wrap: wrap;
        white-space: normal;
    }

    .floating-whatsapp {
        width: 56px;
        height: 56px;
    }

    .mobile-action {
        font-size: 10px;
    }

    .mobile-action-primary {
        margin-inline: 2px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
