:root {
    --gtp-ink: #142640;
    --gtp-gold: #b88746;
    --gtp-muted: #7b818b;
    --gtp-line: #e7e2db;
    --gtp-card: #ffffff;
    --gtp-bg: #fbfaf8;
}

.gtp-app,
.gtp-app * {
    box-sizing: border-box;
}

.gtp-app {
    width: min(100%, 780px);
    margin: 0 auto;
    color: var(--gtp-ink);
    background: var(--gtp-bg);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 70px rgba(31, 43, 56, .10);
}

.gtp-app h1,
.gtp-app h2 {
    margin: 0;
    color: var(--gtp-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.05;
}

.gtp-topbar {
    min-height: 76px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(20, 38, 64, .07);
}

.gtp-plane,
.gtp-back {
    color: var(--gtp-ink);
    font-size: 29px;
    line-height: 1;
    text-decoration: none;
}

.gtp-brand {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .24em;
}

.gtp-language-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    font-size: 29px;
    line-height: 1;
    transition: background-color .2s ease, transform .2s ease;
}

.gtp-language-toggle:hover,
.gtp-language-toggle:focus-visible {
    background: rgba(20, 38, 64, .07);
    outline: none;
    transform: scale(1.05);
}

.gtp-app .gtp-lang-it {
    display: none;
}

.gtp-app[data-gtp-lang="it"] .gtp-lang-en {
    display: none;
}

.gtp-app[data-gtp-lang="it"] .gtp-lang-it {
    display: inline;
}

.gtp-trip-hero,
.gtp-day-hero {
    background-position: center;
    background-size: cover;
}

.gtp-trip-hero {
    height: 250px;
}

.gtp-day-hero {
    height: 330px;
    border-radius: 0 0 42px 42px;
}

.gtp-overview-content,
.gtp-day-content {
    padding: 34px 36px 46px;
}

.gtp-overview-content > h1 {
    text-align: center;
    font-size: clamp(38px, 7vw, 58px);
}

.gtp-subtitle {
    margin: 12px 0 0;
    text-align: center;
    color: var(--gtp-gold);
    font-size: 18px;
}

.gtp-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 24px 0 34px;
}

.gtp-ornament span {
    width: 38px;
    height: 1px;
    background: var(--gtp-gold);
}

.gtp-ornament b {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gtp-gold);
}

.gtp-days-list {
    display: grid;
    gap: 18px;
}

.gtp-restaurants {
    margin-bottom: 34px;
}

.gtp-section-heading {
    margin-bottom: 18px;
    text-align: center;
}

.gtp-section-kicker,
.gtp-restaurant-type {
    color: var(--gtp-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.gtp-section-heading h2 {
    margin-top: 7px;
    font-size: clamp(30px, 5vw, 40px);
}

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

.gtp-restaurant-card {
    min-width: 0;
    padding: 0;
    overflow: hidden;
    color: inherit;
    text-align: left;
    background: var(--gtp-card);
    border: 0;
    border-radius: 20px;
    box-shadow: 0 8px 26px rgba(27, 39, 53, .09);
    cursor: pointer;
    font: inherit;
    transition: transform .2s ease, box-shadow .2s ease;
}

.gtp-restaurant-card:hover,
.gtp-restaurant-card:focus-visible {
    outline: none;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(27, 39, 53, .14);
}

.gtp-restaurant-card:focus-visible {
    box-shadow: 0 0 0 3px rgba(184, 135, 70, .3), 0 14px 36px rgba(27, 39, 53, .14);
}

.gtp-restaurant-image {
    display: block;
    min-height: 145px;
    background: linear-gradient(135deg, #e8e0d5, #c9d7df);
    background-position: center;
    background-size: cover;
}

.gtp-restaurant-copy {
    display: flex;
    min-height: 150px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
}

.gtp-restaurant-copy strong {
    margin-top: 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.12;
}

.gtp-restaurant-more {
    margin-top: auto;
    padding-top: 18px;
    color: var(--gtp-muted);
    font-size: 13px;
    font-weight: 600;
}

.gtp-section-divider {
    height: 1px;
    margin: 0 12% 34px;
    background: var(--gtp-line);
}

.gtp-restaurant-modal {
    position: fixed;
    z-index: 999999;
    inset: 0;
    display: grid;
    padding: 24px;
    place-items: center;
    background: rgba(14, 24, 38, .68);
    backdrop-filter: blur(5px);
}

.gtp-restaurant-modal[hidden] {
    display: none;
}

.gtp-restaurant-dialog {
    position: relative;
    width: min(100%, 590px);
    max-height: calc(100vh - 48px);
    overflow: auto;
    background: var(--gtp-card);
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.gtp-modal-close {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    padding: 0 0 3px;
    color: #c62828;
    background: rgba(255, 255, 255, .96);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 3px 14px rgba(20, 38, 64, .2);
    cursor: pointer;
    font: 700 31px/1 Arial, sans-serif;
}

.gtp-modal-close:hover,
.gtp-modal-close:focus-visible {
    color: #fff;
    background: #c62828;
    outline: none;
}

.gtp-modal-image {
    min-height: 260px;
    background-position: center;
    background-size: cover;
}

.gtp-modal-content {
    padding: 30px 32px 34px;
}

.gtp-modal-content h2 {
    margin-top: 8px;
    font-size: clamp(32px, 6vw, 44px);
}

.gtp-modal-content > p {
    margin: 18px 0 0;
    color: var(--gtp-muted);
    line-height: 1.65;
}

.gtp-restaurant-maps {
    display: inline-flex;
    margin-top: 24px;
    padding: 12px 18px;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    background: var(--gtp-ink);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.gtp-restaurant-maps:hover,
.gtp-restaurant-maps:focus-visible {
    color: #fff;
    background: var(--gtp-gold);
    outline: none;
}

.gtp-restaurant-maps svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

body.gtp-modal-open {
    overflow: hidden;
}

.gtp-day-card {
    display: grid;
    grid-template-columns: 44% 56%;
    min-height: 220px;
    color: inherit;
    text-decoration: none;
    background: var(--gtp-card);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(27, 39, 53, .09);
    transition: transform .2s ease, box-shadow .2s ease;
}

.gtp-day-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 42px rgba(27, 39, 53, .13);
}

.gtp-day-card-copy {
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gtp-day-label {
    color: var(--gtp-gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
}

.gtp-day-card h2 {
    margin-top: 14px;
    font-size: clamp(27px, 4vw, 36px);
}

.gtp-card-location,
.gtp-day-meta span,
.gtp-event-location span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.gtp-card-location {
    margin-top: 24px;
    color: #989ca4;
}

.gtp-card-location svg,
.gtp-day-meta svg,
.gtp-event-location svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.gtp-day-card-image {
    min-height: 220px;
    background: linear-gradient(135deg, #e8e0d5, #c9d7df);
    background-position: center;
    background-size: cover;
}

.gtp-day-content > h1 {
    margin-top: 8px;
    font-size: clamp(42px, 7vw, 62px);
}

.gtp-day-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 14px;
    color: var(--gtp-muted);
}

.gtp-day-summary {
    max-width: 640px;
    margin: 18px 0 0;
    color: var(--gtp-muted);
    line-height: 1.65;
}

.gtp-timeline {
    position: relative;
}

.gtp-optional-group {
    margin: 26px -14px 24px;
    padding: 22px 14px 6px;
    border: 1px solid #d6e3dc;
    border-radius: 22px;
    background: #eef6f1;
}

.gtp-optional-group-title {
    margin: 0 0 20px 108px !important;
    color: #376653 !important;
    font-size: 24px;
}

.gtp-optional-group .gtp-event-card {
    background: #f9fcfa;
    box-shadow: 0 8px 26px rgba(43, 91, 70, .09);
}

.gtp-optional-group .gtp-event-icon {
    color: #477b65;
    background: #e5f1ea;
}

.gtp-optional-group .gtp-timeline-dot {
    border-color: #477b65;
    background: #eef6f1;
}

.gtp-timeline::before {
    content: "";
    position: absolute;
    left: 95px;
    top: 6px;
    bottom: 20px;
    width: 1px;
    background: #d9d5cf;
}

.gtp-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 76px 18px 1fr;
    gap: 10px;
    align-items: start;
    margin-bottom: 18px;
}

.gtp-timeline-item time {
    padding-top: 20px;
    color: var(--gtp-gold);
    font-size: 18px;
    font-weight: 600;
}

.gtp-timeline-dot {
    position: relative;
    z-index: 2;
    width: 10px;
    height: 10px;
    margin: 25px auto 0;
    border: 1px solid var(--gtp-gold);
    border-radius: 50%;
    background: var(--gtp-bg);
}

.gtp-event-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding: 22px;
    background: var(--gtp-card);
    border-radius: 18px;
    box-shadow: 0 8px 26px rgba(27, 39, 53, .08);
}

.gtp-event-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--gtp-gold);
    background: #faf7f2;
    border-radius: 50%;
}

.gtp-event-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gtp-event-body h2 {
    font-size: 25px;
}

.gtp-event-body > p {
    margin: 8px 0 0;
    color: var(--gtp-muted);
    line-height: 1.55;
}

.gtp-event-location {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 14px;
    color: #355b92;
    font-size: 14px;
}

.gtp-event-location a {
    padding-left: 15px;
    color: var(--gtp-ink);
    text-decoration: none;
    border-left: 1px solid #dad6d0;
}

.gtp-empty,
.gtp-notice {
    padding: 18px;
    background: #fff;
    border: 1px solid var(--gtp-line);
    border-radius: 12px;
}

@media (max-width: 640px) {
    .gtp-app {
        border-radius: 0;
        box-shadow: none;
    }

    .gtp-topbar {
        min-height: 66px;
        padding: 0 18px;
    }

    .gtp-trip-hero {
        height: 210px;
    }

    .gtp-day-hero {
        height: 260px;
        border-radius: 0 0 30px 30px;
    }

    .gtp-overview-content,
    .gtp-day-content {
        padding: 28px 20px 40px;
    }

    .gtp-day-card {
        grid-template-columns: 48% 52%;
        min-height: 185px;
        border-radius: 19px;
    }

    .gtp-day-card-copy {
        padding: 24px 18px;
    }

    .gtp-day-card-image {
        min-height: 185px;
    }

    .gtp-restaurant-modal {
        padding: 14px;
    }

    .gtp-restaurant-dialog {
        max-height: calc(100vh - 28px);
        border-radius: 20px;
    }

    .gtp-modal-image {
        min-height: 210px;
    }

    .gtp-modal-content {
        padding: 25px 22px 28px;
    }

    .gtp-timeline::before {
        left: 69px;
    }

    .gtp-timeline-item {
        grid-template-columns: 52px 14px 1fr;
        gap: 8px;
    }

    .gtp-timeline-item time {
        padding-top: 18px;
        font-size: 15px;
    }

    .gtp-timeline-dot {
        margin-top: 22px;
    }

    .gtp-event-card {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .gtp-event-icon {
        width: 44px;
        height: 44px;
    }

    .gtp-event-body h2 {
        font-size: 22px;
    }

    .gtp-optional-group-title {
        margin-left: 74px !important;
        font-size: 21px;
    }
}

@media (max-width: 410px) {
    .gtp-brand {
        font-size: 12px;
    }

    .gtp-day-card {
        grid-template-columns: 1fr;
    }

    .gtp-restaurant-list {
        grid-template-columns: 1fr;
    }

    .gtp-restaurant-card {
        display: grid;
        grid-template-columns: 42% 58%;
    }

    .gtp-restaurant-image {
        min-height: 150px;
    }

    .gtp-restaurant-copy {
        min-height: 150px;
        padding: 17px;
    }

    .gtp-restaurant-copy strong {
        font-size: 22px;
    }

    .gtp-day-card-image {
        order: -1;
        min-height: 165px;
    }

    .gtp-day-card-copy {
        min-height: 170px;
    }

    .gtp-event-location a {
        width: 100%;
        padding-left: 0;
        border-left: 0;
    }
}
