/* ==========================================================================
   Sommertour Landingpage - Base Styles
   ========================================================================== */

@font-face {
    font-family: 'Geomanist-Light';
    src: url('../fonts/geomanist-light-webfont.woff2') format('woff2'),
         url('../fonts/geomanist-light-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geomanist-Bold';
    src: url('../fonts/geomanist-bold-webfont.woff2') format('woff2'),
         url('../fonts/geomanist-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --paper: #f8f4eb;
    --paper-light: #fffdf7;
    --paper-deep: #efe6d5;
    --turquoise: #62c3d0;
    --turquoise-dark: var(--charcoal);
    --turquoise-soft: rgba(98, 195, 208, .16);
    --orange: #f09828;
    --orange-soft: rgba(240, 152, 40, .18);
    --charcoal: #272727;
    --grey: #585858;
    --muted: #807b72;
    --line: rgba(88, 88, 88, .18);
    --white: #ffffff;
    --shadow-paper: 0 22px 55px rgba(55, 44, 28, .14);
    --shadow-soft: 0 14px 35px rgba(55, 44, 28, .10);
    --radius: 10px;
}

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

body {
    overflow-x: hidden;
    min-width: 320px;
    background: var(--paper);
    color: var(--charcoal);
    font-family: 'Geomanist-Light', Arial, sans-serif;
    font-weight: 300;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .34;
    background-image:
        repeating-linear-gradient(15deg, rgba(255,255,255,.22) 0 1px, transparent 1px 9px),
        repeating-linear-gradient(105deg, rgba(80,65,40,.05) 0 1px, transparent 1px 11px);
}

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

button, input {
    font: inherit;
}

button {
    cursor: pointer;
}

h1, h2, h3, strong, .btn-primary, .btn-secondary, .btn-nav, .date-badge, .kicker {
    font-family: 'Geomanist-Bold', Arial, sans-serif;
    font-weight: 700;
}

a {
    color: inherit;
}

#prog {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, var(--turquoise), var(--orange));
}

.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}

.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .22s; }

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: 76px;
    padding: 0 clamp(1rem, 4vw, 3.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

nav.stuck {
    background: rgba(248, 244, 235, .86);
    backdrop-filter: blur(18px);
    border-color: rgba(88, 88, 88, .12);
    box-shadow: 0 10px 30px rgba(55, 44, 28, .08);
}

.brand img {
    width: 156px;
    height: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--grey);
    font-family: 'Geomanist-Bold', Arial, sans-serif;
    font-size: .86rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--turquoise-dark);
}

.btn-nav, .btn-primary, .btn-secondary, .btn-mob {
    border: 0;
    border-radius: 999px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-nav, .btn-primary, .btn-mob {
    background: var(--turquoise);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(98, 195, 208, .24);
}

.btn-nav {
    padding: .72rem 1.2rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: .84rem;
}

.btn-primary {
    padding: .95rem 1.35rem;
    font-size: 1rem;
}

.btn-secondary {
    padding: .9rem 1.25rem;
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(88,88,88,.16);
    color: var(--charcoal);
}

.btn-nav:hover, .btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.hbg {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: rgba(255,255,255,.72);
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: var(--charcoal);
}

.hbg .ph-x {
    display: none;
}

.hbg.open .ph-list { display: none; }
.hbg.open .ph-x { display: block; }

.mob-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    z-index: 45;
    padding: 1rem 1.25rem 1.35rem;
    background: rgba(248, 244, 235, .96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.mob-menu.open {
    display: block;
}

.mob-menu a {
    display: block;
    padding: .9rem 0;
    text-decoration: none;
    font-family: 'Geomanist-Bold', Arial, sans-serif;
    border-bottom: 1px solid rgba(88,88,88,.12);
}

.btn-mob {
    margin-top: 1rem;
    width: 100%;
    padding: 1rem;
}

.hero-section {
    position: relative;
    min-height: auto;
    padding: 9.5rem clamp(1rem, 5vw, 5rem) 1rem;
    overflow: visible;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.kicker {
    color: var(--turquoise-dark);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .78rem;
}

.campaign-logo {
    width: min(740px, 114%);
    max-width: none;
    margin: -.1rem -3.5rem .9rem -1.1rem;
    position: relative;
    z-index: 4;
}

.hero-lead {
    margin-top: 1.6rem;
    max-width: 620px;
    color: var(--grey);
    font-size: clamp(1.1rem, 1.7vw, 1.35rem);
    line-height: 1.55;
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
}

.hero-collage {
    position: relative;
    min-height: 610px;
}

.polaroid {
    position: absolute;
    background: var(--white);
    padding: .85rem .85rem 2.3rem;
    box-shadow: var(--shadow-paper);
}

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

.polaroid-main {
    width: 74%;
    height: 460px;
    right: 5%;
    top: 4%;
    transform: rotate(2deg);
}

.polaroid-one {
    width: 38%;
    height: 245px;
    left: 0;
    bottom: 11%;
    transform: rotate(-7deg);
}

.polaroid-two {
    width: 34%;
    height: 215px;
    right: 1%;
    bottom: 0;
    transform: rotate(7deg);
}

.notes-section {
    position: relative;
    z-index: 4;
    max-width: 1180px;
    margin: 2.5rem auto 0;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.notes-card {
    background: rgba(255,253,247,.92);
    border: 1px solid rgba(88,88,88,.14);
    border-radius: 14px;
    box-shadow: var(--shadow-paper);
    padding: clamp(1.1rem, 3vw, 2rem);
    display: grid;
    grid-template-columns: .8fr 1.8fr;
    gap: 1.5rem;
    align-items: center;
}

.notes-heading p:not(.kicker) {
    margin-top: .65rem;
    color: var(--grey);
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .8rem;
    align-items: start;
}

.note-item {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    min-width: 0;
}

.note-mark {
    flex: 0 0 auto;
    width: 2.8rem;
    height: 2.8rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--turquoise);
    font-size: 1.15rem;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.note-mark i {
    font-size: 2.55rem;
    line-height: 1;
}

.note-item strong,
.note-item small {
    display: block;
}

.note-item strong {
    line-height: 1.15;
}

.note-item small {
    margin-top: .2rem;
    color: var(--muted);
    font-size: .82rem;
}

.intro-section,
.tours-section,
.impressions-section {
    position: relative;
    padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 5vw, 5rem);
}

.intro-grid,
.section-head,
.tour-list,
.impressions-grid {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    max-width: 1180px;
    margin: 0 auto 1rem;
    color: var(--turquoise-dark);
    font-family: 'Geomanist-Bold', Arial, sans-serif;
    letter-spacing: .13em;
    text-transform: uppercase;
    font-size: .78rem;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.intro-text h2,
.section-head h2 {
    font-size: clamp(2.3rem, 5vw, 4.7rem);
    line-height: .98;
    letter-spacing: -.035em;
}

.intro-text p,
.section-head p {
    margin-top: 1.2rem;
    max-width: 760px;
    color: var(--grey);
    font-size: clamp(1.05rem, 1.7vw, 1.24rem);
}

.intro-panel {
    background: var(--paper-light);
    border: 1px solid rgba(88,88,88,.14);
    border-radius: 14px;
    padding: 1.4rem;
    box-shadow: var(--shadow-soft);
    transform: rotate(1.2deg);
}

.panel-row {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(88,88,88,.12);
    color: var(--grey);
    font-size: 1.02rem;
}

.panel-row:last-child {
    border-bottom: 0;
}

.panel-row .ph {
    flex: 0 0 auto;
    color: var(--turquoise-dark);
    font-size: 1.15rem;
}

.tours-section {
    background: rgba(255,253,247,.44);
}

.tour-list {
    margin-top: 2.5rem;
    display: grid;
    gap: 1rem;
}

.tour-card {
    overflow: hidden;
    background: rgba(255,253,247,.94);
    border: 1px solid rgba(88,88,88,.14);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(55,44,28,.07);
}

.tour-summary {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 1.15rem;
    display: grid;
    grid-template-columns: 180px 1fr 1.2fr auto;
    gap: 1rem;
    align-items: center;
    text-align: left;
    color: var(--charcoal);
}

.date-badge {
    display: inline-flex;
    width: fit-content;
    padding: .58rem .74rem;
    border-radius: 999px;
    background: var(--orange-soft);
    color: #9a580d;
    font-size: .88rem;
}

.tour-title {
    font-family: 'Geomanist-Bold', Arial, sans-serif;
    font-size: clamp(1.22rem, 2vw, 1.6rem);
}

.tour-meta {
    color: var(--grey);
}

.tour-open-label {
    justify-self: end;
    color: var(--turquoise-dark);
    font-family: 'Geomanist-Bold', Arial, sans-serif;
    white-space: nowrap;
}

.tour-details {
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
    align-items: start;
    padding: 0 1.15rem 1.15rem;
}

.tour-card.is-open .tour-details {
    display: grid;
}

.tour-detail-copy,
.meeting-map,
.tour-form {
    min-width: 0;
    background: rgba(248,244,235,.68);
    border: 1px dashed rgba(88,88,88,.22);
    border-radius: 13px;
    padding: 1.2rem;
}

.start-label {
    color: var(--turquoise-dark);
    font-family: 'Geomanist-Bold', Arial, sans-serif;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .75rem;
}

.tour-detail-copy h3 {
    margin-top: .45rem;
    font-size: 1.45rem;
    line-height: 1.1;
}

.tour-detail-copy p:not(.start-label) {
    margin-top: .6rem;
    color: var(--grey);
}

.tour-detail-copy dl {
    margin-top: 1rem;
    display: grid;
    gap: .55rem;
}

.tour-detail-copy dl div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: .55rem;
    border-top: 1px solid rgba(88,88,88,.12);
}

.tour-detail-copy dt {
    color: var(--muted);
}

.tour-detail-copy dd {
    font-family: 'Geomanist-Bold', Arial, sans-serif;
    text-align: right;
}

.map-placeholder {
    position: relative;
    min-height: 255px;
    height: 100%;
    overflow: hidden;
    border-radius: 11px;
    background:
        linear-gradient(34deg, transparent 0 23%, rgba(96,96,96,.34) 23% 24%, transparent 24% 62%, rgba(96,96,96,.27) 62% 63%, transparent 63%),
        linear-gradient(112deg, transparent 0 18%, rgba(96,96,96,.28) 18% 19%, transparent 19% 57%, rgba(96,96,96,.20) 57% 58%, transparent 58%),
        linear-gradient(0deg, rgba(98, 195, 208,.14), rgba(240,152,40,.08)),
        #e8e0d2;
    background-size: 210px 180px, 170px 150px, auto, auto;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 1.4rem;
}

.map-placeholder strong,
.map-placeholder small {
    position: relative;
    z-index: 2;
    display: block;
}

.map-placeholder strong {
    align-self: end;
    margin-top: 5.3rem;
    font-family: 'Geomanist-Bold', Arial, sans-serif;
}

.map-placeholder small {
    color: var(--grey);
}

.map-pin {
    position: absolute;
    top: 34%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    color: var(--turquoise);
    font-size: 3rem;
    filter: drop-shadow(0 10px 12px rgba(98, 195, 208,.24));
}

.static-map {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 11px;
    border: 1px solid rgba(88,88,88,.14);
    box-shadow: var(--shadow-soft);
}

.map-credit {
    display: block;
    margin-top: .35rem;
    color: var(--muted);
    font-size: .68rem;
    text-align: right;
}

.map-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    width: 100%;
    margin-top: .85rem;
    padding: .85rem 1rem;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid rgba(88,88,88,.16);
    color: var(--black);
    font-family: 'Geomanist-Bold', Arial, sans-serif;
    text-decoration: none;
}

.map-link i {
    color: var(--turquoise);
    font-size: 1.25rem;
}

.form-title {
    font-family: 'Geomanist-Bold', Arial, sans-serif;
    font-size: 1.25rem;
    line-height: 1.2;
}

.dynamics-slot {
    margin: 1rem 0;
    min-height: 120px;
    max-width: 100%;
    overflow: hidden;
}

.dynamics-slot,
.dynamics-slot * {
    box-sizing: border-box;
    max-width: 100% !important;
    overflow-wrap: anywhere;
}

.dynamics-slot form,
.dynamics-slot [data-layout],
.dynamics-slot [data-editorblocktype] {
    width: 100% !important;
    max-width: 100% !important;
}

.dynamics-slot :where([data-editorblocktype="Field"], .marketing-field, .form-field, .lp-form-field) {
    margin: 0 0 1rem !important;
    padding: 0 !important;
}

.dynamics-slot :where(label) {
    display: block !important;
    margin: 0 0 .35rem !important;
    font-family: 'Geomanist-Bold', Arial, sans-serif !important;
    color: var(--charcoal) !important;
}

.dynamics-slot :where(input:not([type="checkbox"]):not([type="radio"]), textarea, select) {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 44px;
    border: 1px solid rgba(88,88,88,.18) !important;
    border-radius: 8px !important;
    background: rgba(255,255,255,.82) !important;
    padding: .65rem .8rem !important;
    font-family: 'Geomanist-Light', Arial, sans-serif !important;
    color: var(--charcoal) !important;
}

.dynamics-slot :where(input[type="checkbox"], input[type="radio"]) {
    width: 1.15rem !important;
    height: 1.15rem !important;
    flex: 0 0 auto;
}

.dynamics-slot :where(label, p) {
    color: var(--grey) !important;
}

.dynamics-slot :where(iframe) {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 240px;
    overflow: hidden;
    border: 0 !important;
    border-radius: 10px;
    background: rgba(255,255,255,.78);
}

.dynamics-slot :where(button, input[type="submit"]) {
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--turquoise) !important;
    color: var(--white) !important;
    font-family: 'Geomanist-Bold', Arial, sans-serif !important;
    padding: .85rem 1.35rem !important;
}

.impressions-section {
    padding-top: 5rem;
}

.impressions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
    margin-top: 2rem;
    align-items: center;
}

.impressions-grid figure {
    background: var(--white);
    padding: .75rem .75rem 2rem;
    box-shadow: var(--shadow-paper);
}

.impressions-grid figure:nth-child(1) { transform: rotate(-2.5deg); }
.impressions-grid figure:nth-child(2) { transform: rotate(1.5deg) translateY(-1rem); }
.impressions-grid figure:nth-child(3) { transform: rotate(3deg); }
.impressions-grid figure:nth-child(4) { transform: rotate(1.5deg); }
.impressions-grid figure:nth-child(5) { transform: rotate(-2deg) translateY(.5rem); }
.impressions-grid figure:nth-child(6) { transform: rotate(2.2deg); }
.impressions-grid figure:nth-child(7) { transform: rotate(-1.5deg); }
.impressions-grid figure:nth-child(8) { transform: rotate(2deg) translateY(-.5rem); }
.impressions-grid figure:nth-child(9) { transform: rotate(-2.2deg); }

.impressions-grid img {
    aspect-ratio: 4 / 3;
    width: 100%;
    object-fit: cover;
}

.swipe-hint {
    display: none !important;
}

footer {
    padding: 2.5rem clamp(1rem, 5vw, 5rem) 7rem;
    background: rgba(255,253,247,.7);
    border-top: 1px solid rgba(88,88,88,.14);
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.footer-inner img {
    width: 148px;
}

.footer-copy {
    color: var(--grey);
    text-align: right;
}

.foot-links {
    margin-top: .4rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.foot-links a {
    color: var(--turquoise-dark);
    text-decoration: none;
    font-family: 'Geomanist-Bold', Arial, sans-serif;
}

#mob-float {
    display: none;
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 60;
}

#mob-float .btn-primary {
    width: 100%;
    box-shadow: 0 14px 32px rgba(98, 195, 208,.32);
}

@media (max-width: 1100px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-collage {
        min-height: 470px;
    }

    .polaroid-main {
        width: 66%;
        height: 360px;
        right: 8%;
    }

    .polaroid-one {
        width: 34%;
        height: 210px;
        left: 8%;
    }

    .tour-summary {
        grid-template-columns: 1fr;
        gap: .55rem;
    }

    .tour-open-label {
        justify-self: start;
    }

    .tour-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    nav {
        height: 68px;
        padding-inline: 1rem;
    }

    .brand img {
        width: 126px;
    }

    .nav-links,
    .btn-nav {
        display: none;
    }

    .hbg {
        display: flex;
    }

    .mob-menu {
        top: 68px;
    }

    .hero-section {
        min-height: auto;
        padding: 7.5rem 1rem 1rem;
    }

    .campaign-logo {
        width: min(430px, 92%);
        max-width: 100%;
        display: block;
        margin: 0 auto 1rem;
    }

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

    .hero-collage {
        width: 100%;
        min-height: 265px;
        max-width: 560px;
        margin: .75rem auto 0;
    }

    .polaroid-main {
        width: 74%;
        height: 210px;
        left: 50%;
        transform: translateX(-50%) rotate(2deg);
    }

    .polaroid-one {
        width: 43%;
        height: 112px;
        left: 5%;
        bottom: 1.5rem;
    }

    .polaroid-two {
        width: 39%;
        height: 106px;
        right: 5%;
    }

    .notes-section {
        margin-top: 0;
        padding-inline: 1rem;
    }

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

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

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

    .intro-panel {
        transform: none;
    }

    .tour-summary {
        padding: 1rem;
    }

    .tour-details {
        padding: 0 1rem 1rem;
    }

    .tour-detail-copy dl div {
        display: block;
    }

    .map-placeholder {
        min-height: 220px;
    }

    .impressions-grid {
        display: flex;
        gap: 1rem;
        margin-inline: -1rem;
        padding: .5rem 12vw 1.25rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .impressions-grid::-webkit-scrollbar {
        display: none;
    }

    .impressions-grid figure {
        display: block;
        flex: 0 0 76vw;
        scroll-snap-align: center;
    }

    .impressions-grid figure:nth-child(6n+1) { transform: rotate(-2.5deg); }
    .impressions-grid figure:nth-child(6n+2) { transform: rotate(1.5deg); }
    .impressions-grid figure:nth-child(6n+3) { transform: rotate(3deg); }
    .impressions-grid figure:nth-child(6n+4) { transform: rotate(1.5deg); }
    .impressions-grid figure:nth-child(6n+5) { transform: rotate(-2deg); }
    .impressions-grid figure:nth-child(6n+6) { transform: rotate(2.2deg); }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-copy {
        text-align: left;
    }

    .foot-links {
        justify-content: flex-start;
    }

    #mob-float {
        display: block;
    }
}

@media (max-width: 520px) {
    .notes-grid {
        grid-template-columns: 1fr;
    }

    .date-badge {
        font-size: .8rem;
    }

    .tour-meta {
        font-size: .95rem;
    }
}
