:root {
    --green: #00776b;
    --green-dark: #006d63;
    --teal: #00997d;
    --aqua: #50b9ac;
    --mint: #98d0ca;
    --lime: #dfe51f;
    --green-soft: #e9f7f4;
    --lake: #08b1b3;
    --sky: #dff4f1;
    --ink: #073c37;
    --muted: #5a7773;
    --paper: #fbfdfb;
    --white: #ffffff;
    --gold: #dfe51f;
    --shadow: 0 24px 80px rgba(0, 119, 107, 0.16);
    --brand-gradient: linear-gradient(90deg, var(--green-dark), var(--teal), var(--aqua), var(--lime));
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Exo, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

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

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

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

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

.skip-link:focus {
    z-index: 999;
    width: auto;
    height: auto;
    padding: 10px 14px;
    color: var(--white);
    background: var(--green);
    clip: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 70;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(0, 109, 99, 0);
    transition: box-shadow 0.2s ease;
}

.has-compact-header .site-header {
    box-shadow: 0 8px 22px rgba(0, 109, 99, 0.08);
}

.topbar,
.site-header .topbar,
.site-header .topbar__inner {
    display: none !important;
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 130px;
    transition: min-height 0.2s ease;
}

.has-compact-header .nav-shell {
    min-height: 48px;
}

.site-header .primary-nav,
.nav-shell > .primary-nav,
.site-header .menu,
.site-header #primary-menu {
    display: none !important;
}

.site-header .menu-toggle {
    display: inline-flex !important;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: min(250px, 54vw);
    transition: width 0.2s ease;
}

.brand img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.has-compact-header .brand {
    width: 105px;
}

.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 56px;
    padding: 0 0 15px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 0;
    background: var(--green);
}

.site-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    align-items: center;
    min-height: 100vh;
    color: var(--white);
    background: rgba(0, 109, 99, 0.86);
    opacity: 0;
    transform: scale(1.015);
    visibility: hidden;
    transition: opacity 0.32s ease, transform 0.42s ease, visibility 0.32s ease;
}

.site-menu-overlay .primary-nav,
.site-menu-overlay .menu {
    display: grid;
}

.menu-is-open .site-menu-overlay {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

.menu-is-open {
    overflow: hidden;
}

.menu-close {
    position: absolute;
    top: 58px;
    right: 58px;
    width: 58px;
    height: 58px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-close::before,
.menu-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    height: 6px;
    border-radius: 999px;
    background: var(--white);
}

.menu-close::before {
    transform: rotate(45deg);
}

.menu-close::after {
    transform: rotate(-45deg);
}

.menu-overlay__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    gap: 80px;
    align-items: center;
    transform: translate(34px, 30px);
    opacity: 0;
    transition: opacity 0.36s ease 0.08s, transform 0.44s ease 0.08s;
}

.menu-is-open .menu-overlay__inner {
    transform: translate(34px, 40px);
    opacity: 1;
}

.primary-nav .menu {
    display: grid;
    gap: 6px;
    justify-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav a {
    color: var(--white);
    font-size: clamp(25px, 2vw, 30px);
    font-weight: 700;
    line-height: 1.45;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
    color: var(--white);
}

.primary-nav a:hover {
    color: var(--lime);
}

.menu-overlay__contacts {
    display: grid;
    gap: 19px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

.menu-overlay__phone-row {
    display: flex;
    gap: 5px;
    align-items: center;
    white-space: nowrap;
}

.menu-overlay__email {
    white-space: nowrap;
}

.hero {
    position: relative;
    display: grid;
    min-height: 590px;
    align-items: end;
    color: var(--white);
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0, 109, 99, 0.88), rgba(0, 153, 125, 0.54) 52%, rgba(223, 229, 31, 0.36));
}

.hero__content {
    position: relative;
    z-index: 1;
    padding: 108px 0 82px;
    text-align: left;
}

.hero h1,
.page-hero h1,
.intro-grid h2,
.booking-copy h2,
.gift-banner h2,
.seasons-grid h2,
.prefooter-sidebar h2 {
    margin: 0;
    font-family: Exo, Arial, sans-serif;
    font-weight: 800;
    line-height: 1.04;
}

.hero h1 {
    max-width: 690px;
    font-size: clamp(44px, 5.2vw, 68px);
    font-weight: 800;
    letter-spacing: 0;
}

.hero p:not(.eyebrow) {
    max-width: 640px;
    margin: 22px 0 30px;
    font-size: 18px;
    line-height: 1.5;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.button--primary {
    color: var(--green-dark);
    background: var(--lime);
}

.button--primary:hover {
    background: #f0f438;
}

.button--light {
    color: var(--green-dark);
    background: var(--white);
}

.intro-section,
.booking-section,
.content-section {
    padding: 88px 0;
}

.intro-section,
.booking-section {
    position: relative;
    overflow: hidden;
}

.brand-mark {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.09;
}

.brand-mark--intro {
    right: max(-170px, -10vw);
    top: 34px;
    width: min(520px, 48vw);
}

.brand-mark--booking {
    left: max(-190px, -11vw);
    bottom: -120px;
    width: min(560px, 54vw);
    transform: rotate(12deg);
}

.intro-grid,
.booking-layout {
    position: relative;
    z-index: 1;
}

.intro-grid,
.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 64px;
    align-items: start;
}

.intro-grid h2,
.booking-copy h2,
.gift-banner h2,
.seasons-grid h2,
.prefooter-sidebar h2 {
    color: var(--green-dark);
    font-size: clamp(32px, 3.6vw, 50px);
}

.intro-copy {
    color: var(--muted);
    font-size: 17px;
}

.experience-band {
    padding: 72px 0;
    color: var(--white);
    background: var(--brand-gradient);
}

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

.feature-grid article {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.feature-grid span {
    color: var(--gold);
    font-weight: 800;
}

.feature-grid h3 {
    margin: 10px 0;
    font-size: 20px;
}

.feature-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.booking-section {
    background: linear-gradient(180deg, var(--paper), var(--green-soft));
}

.booking-copy {
    position: sticky;
    top: 150px;
}

.booking-copy p:not(.eyebrow) {
    color: var(--muted);
    font-size: 17px;
}

.booking-panel {
    min-height: 420px;
    padding: 28px;
    border: 1px solid rgba(36, 90, 53, 0.14);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.shortcode-placeholder {
    display: grid;
    min-height: 350px;
    place-content: center;
    padding: 32px;
    border: 1px dashed rgba(36, 90, 53, 0.36);
    border-radius: 8px;
    color: var(--muted);
    text-align: center;
}

.shortcode-placeholder strong {
    display: block;
    color: var(--green);
    font-size: 22px;
}

.gift-banner {
    position: relative;
    overflow: hidden;
    padding: 82px 0;
    color: var(--white);
    background: var(--brand-gradient);
}

.gift-banner::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -110px;
    width: 410px;
    height: 410px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
}

.gift-banner__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
}

.gift-banner h2 {
    color: var(--white);
    font-size: clamp(38px, 4.4vw, 58px);
}

.gift-banner p:not(.eyebrow) {
    max-width: 680px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 17px;
}

.seasons-section {
    padding: 88px 0;
    background: var(--white);
}

.seasons-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 56px;
    align-items: center;
}

.seasons-grid p:not(.eyebrow) {
    max-width: 480px;
    color: var(--muted);
    font-size: 17px;
}

.season-images {
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    grid-template-rows: 180px 180px;
    gap: 16px;
}

.season-images img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 16px 42px rgba(0, 109, 99, 0.14);
}

.season-images img:first-child {
    grid-row: span 2;
}

.prefooter-panel-section {
    padding: 84px 0 66px;
    background: var(--brand-gradient);
}

.prefooter-panel {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 32px;
    align-items: stretch;
    padding: 30px;
    border-radius: 6px;
    background: var(--white);
    box-shadow: 0 22px 64px rgba(0, 109, 99, 0.16);
}

.prefooter-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 4px;
}

.prefooter-sidebar h2 {
    margin: 0;
    color: var(--green-dark);
    font-size: 34px;
    line-height: 1.08;
}

.prefooter-sidebar p:not(.eyebrow) {
    margin: 16px 0 22px;
    color: var(--muted);
    font-size: 16px;
}

.prefooter-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    align-items: stretch;
}

.prefooter-gallery img {
    width: 100%;
    height: 210px;
    border-radius: 2px;
    object-fit: cover;
}

.page-hero {
    padding: 96px 0 72px;
    color: var(--white);
    background: linear-gradient(135deg, rgba(0, 109, 99, 0.96), rgba(8, 177, 179, 0.82)), url("https://www.loricaly.it/wp-content/uploads/2021/07/CM5A0561-scaled.jpg");
    background-position: center;
    background-size: cover;
}

.page-hero h1 {
    max-width: 800px;
    font-size: clamp(38px, 4.7vw, 64px);
}

.page-hero--compact {
    padding: 74px 0 54px;
}

.content-wrap {
    max-width: 850px;
    padding: 48px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 16px 55px rgba(18, 51, 31, 0.1);
}

.content-wrap h2,
.content-wrap h3 {
    color: var(--green-dark);
    line-height: 1.2;
}

.content-wrap a {
    color: var(--lake);
    font-weight: 700;
}

.plugin-content-section {
    padding: 72px 0 96px;
    background: linear-gradient(180deg, var(--paper), var(--green-soft));
}

.plugin-content-wrap {
    max-width: 1180px;
}

.footer-map {
    height: 360px;
    overflow: hidden;
    background: var(--green-soft);
}

.footer-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.site-footer {
    color: var(--white);
    font-size: 14px;
    line-height: 1.55;
    background:
        radial-gradient(ellipse at -8% 104%, rgba(223, 229, 31, 0.96) 0%, rgba(155, 195, 55, 0.72) 23%, rgba(0, 124, 111, 0) 50%),
        linear-gradient(135deg, #007c6f 0%, #006f63 56%, #4f9850 100%);
}

.footer-grid {
    display: grid;
    width: min(1046px, calc(100% - 40px));
    grid-template-columns: 0.88fr 0.95fr 1.12fr;
    gap: 74px;
    align-items: start;
    margin-inline: auto;
    padding: 80px 0 56px;
}

.site-footer h2,
.site-footer h3 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 15px;
    line-height: 1.25;
    font-weight: 700;
    text-transform: uppercase;
}

.site-footer h2 {
    font-family: Exo, Arial, sans-serif;
    font-weight: 800;
    font-size: 36px;
}

.footer-brand img {
    display: block;
    width: 152px;
    margin: 0 auto;
}

.footer-social {
    display: flex;
    gap: 22px;
    justify-content: center;
    margin-top: 26px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: var(--white);
}

.footer-social svg {
    display: block;
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.site-footer .menu {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    line-height: 1.48;
}

.site-footer .menu li + li {
    margin-top: 6px;
}

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

.site-footer strong {
    font-weight: 400;
}

.site-footer a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 18px 0 92px;
    border-top: 0;
    font-size: 13px;
    text-align: center;
}

.footer-bottom .wrap {
    width: min(1046px, calc(100% - 40px));
}

.footer-bottom p {
    margin: 0;
}

.post-card {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(36, 90, 53, 0.12);
}

@media (max-width: 860px) {
    .nav-shell {
        min-height: 112px;
    }

    .site-menu-overlay {
        min-height: 100dvh;
        align-items: center;
        overflow-y: auto;
        padding: max(22px, env(safe-area-inset-top)) 0 max(24px, env(safe-area-inset-bottom));
    }

    .hero {
        min-height: min(620px, calc(100svh - 112px));
        background-position: 56% center;
    }

    .hero__content {
        padding: 72px 0 58px;
    }

    .menu-overlay__inner {
        grid-template-columns: 1fr;
        gap: 0;
        justify-items: end;
        padding-right: max(28px, 8vw);
        text-align: center;
    }

    .menu-is-open .menu-overlay__inner {
        transform: translate(0, 42px);
    }

    .menu-overlay__contacts {
        display: none;
    }

    .primary-nav .menu {
        gap: 7px;
    }

    .primary-nav a {
        font-size: clamp(44px, 10.4vw, 66px);
        line-height: 1.28;
    }

    .menu-close {
        top: 28px;
        right: 28px;
        width: 56px;
        height: 56px;
    }

    .intro-grid,
    .booking-layout,
    .feature-grid,
    .gift-banner__inner,
    .seasons-grid,
    .prefooter-panel,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .intro-grid,
    .booking-layout,
    .seasons-grid {
        gap: 30px;
    }

    .feature-grid {
        gap: 14px;
    }

    .feature-grid article {
        padding: 22px;
    }

    .gift-banner__inner {
        gap: 24px;
        justify-items: start;
    }

    .gift-banner::after {
        width: 260px;
        height: 260px;
        right: -110px;
        bottom: -90px;
    }

    .prefooter-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .prefooter-gallery img {
        height: 210px;
    }

    .season-images {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 210px);
    }

    .season-images img:first-child {
        grid-row: auto;
    }

    .booking-copy {
        position: static;
    }

    .booking-panel {
        min-height: 0;
        box-shadow: 0 14px 42px rgba(0, 109, 99, 0.12);
    }

    .shortcode-placeholder {
        min-height: 260px;
        padding: 24px 18px;
    }

    .booking-panel,
    .content-wrap {
        padding: 22px;
    }

    .footer-map {
        height: 300px;
    }

    .footer-grid {
        gap: 32px;
        padding: 58px 0 36px;
        text-align: center;
    }

    .footer-brand img {
        width: 132px;
    }

    .footer-bottom {
        padding-bottom: 64px;
    }
}

@media (max-width: 520px) {
    .wrap {
        width: min(100% - 28px, 1140px);
    }

    .nav-shell {
        min-height: 108px;
    }

    .brand {
        width: min(210px, 64vw);
    }

    .menu-toggle {
        padding-bottom: 14px;
    }

    .menu-close {
        top: 26px;
        right: 22px;
        width: 52px;
        height: 52px;
    }

    .menu-close::before,
    .menu-close::after {
        left: 10px;
        right: 10px;
        height: 5px;
    }

    .menu-overlay__inner {
        padding-right: 22px;
    }

    .menu-is-open .menu-overlay__inner {
        transform: translate(0, 34px);
    }

    .primary-nav a {
        font-size: clamp(39px, 11.4vw, 56px);
    }

    .hero {
        min-height: min(610px, calc(100svh - 108px));
    }

    .hero h1 {
        font-size: clamp(36px, 11vw, 44px);
    }

    .hero p:not(.eyebrow),
    .intro-copy,
    .booking-copy p:not(.eyebrow) {
        font-size: 16px;
    }

    .intro-grid h2,
    .booking-copy h2,
    .seasons-grid h2 {
        font-size: 34px;
    }

    .gift-banner h2 {
        font-size: 38px;
    }

    .button {
        width: 100%;
        min-height: 48px;
        padding-inline: 18px;
    }

    .intro-section,
    .booking-section,
    .gift-banner,
    .seasons-section,
    .prefooter-panel-section,
    .content-section {
        padding: 54px 0;
    }

    .prefooter-panel {
        padding: 18px;
    }

    .footer-map {
        height: 260px;
    }

    .site-footer {
        font-size: 13px;
    }

    .site-footer .menu {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}
