:root {
    --cream: #f7ecd6;
    --panel: rgba(255, 251, 242, .86);
    --card: rgba(255, 253, 248, .96);
    --white: #fffdf8;
    --brown: #4a3b2e;
    --brown-mid: #5c5043;
    --brown-soft: #6b5d4f;
    --faint: #8a7d6e;
    --coral: #e85540;
    --teal: #199c95;
    --dark-teal: #11504c;
    --sun: #f6b73c;
    --border: #e3d4bd;
    --pink: #fdeede;
    --coral-tint: #fde6e0;
    --teal-tint: #ddf3f1;
    --amber: #fdf0d6;
    --green: #e3f0dd;
    --deep-coral: #c43f29;
    --dont-ink: #ffe9e3;
    --dont-highlight: #ffd9b0;
    --dont-title: #fff8ec;
    --light-teal: #7fc3bd;
    --pale-teal: #cdeae7;
    --mist-teal: #eafaf8;
    --conduct-card: #fdf8ee;
    --soft-coral-border: #ec9a8d;
    --season-border: #f0d79a;
    --sand-border: #ead9b2;
    --deep-green: #4a8d44;
    --guidelines-shadow: 0 26px 60px rgba(17, 80, 76, .28);
    --shadow: 0 12px 28px rgba(120, 90, 40, .16);
    --shadow-hover: 0 18px 36px rgba(120, 90, 40, .24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.summit26 {
    margin: 0;
    background: var(--cream);
    color: var(--brown);
    font-family: "Nunito", Arial, sans-serif;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; }

@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.summit-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 251, 242, .88);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(120, 90, 40, .1);
}
.summit-header__inner {
    max-width: 1280px;
    height: 66px;
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.summit-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    flex: none;
}
.summit-brand__logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: contain;
}
.summit-brand__sun {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--sun);
    box-shadow: 0 3px 0 rgba(176, 120, 20, .35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    animation: bob 4s ease-in-out infinite;
}
.summit-brand__text,
.access-logo span:last-child {
    font-family: "Fredoka", sans-serif;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: .5px;
    color: var(--brown);
}
.summit-nav {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.6vw, 22px);
    font-weight: 700;
    font-size: 14px;
}
.summit-nav a {
    color: var(--brown-mid);
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: 2.5px solid transparent;
    transition: color .15s ease, border-color .15s ease;
}
.summit-nav a:hover { color: var(--teal); }
.summit-nav a.is-active {
    color: var(--coral);
    border-bottom-color: var(--coral);
}
.summit-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    padding: 8px;
    cursor: pointer;
}
.summit-menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    margin: 5px 0;
    background: var(--brown);
    border-radius: 2px;
}
.summit-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    flex-direction: column;
    padding: 24px clamp(22px, 6vw, 48px);
    overflow-y: auto;
    background: rgba(255, 251, 242, .98);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.summit-mobile-menu.is-open { display: flex; }
.summit-mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    font-family: "Fredoka", sans-serif;
    font-weight: 500;
    font-size: 22px;
}
.summit-mobile-menu__top button {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: var(--coral-tint);
    color: var(--coral);
    font-size: 22px;
    cursor: pointer;
}
.summit-mobile-menu a {
    font-family: "Fredoka", sans-serif;
    font-weight: 500;
    font-size: 32px;
    color: var(--brown);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1.5px dashed var(--border);
}
.summit-mobile-menu a.is-active { color: var(--coral); }

.summit-page {
    width: 100%;
    min-height: calc(100vh - 66px);
    overflow-x: hidden;
}
.summit-page--home {
    background: var(--cream) url("../uploads/home_bg.webp") center top / cover no-repeat scroll;
}
.summit-page--inner {
    background: var(--cream) url("../uploads/other_bg.png") center top / cover no-repeat fixed;
    padding: clamp(32px, 6vh, 64px) clamp(20px, 5vw, 40px) 60px;
}
.summit-container {
    max-width: 1080px;
    margin: 0 auto;
}
.summit-container--narrow { max-width: 960px; }
.summit-panel,
.section-block {
    background: var(--panel);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    border-radius: 26px;
    padding: clamp(24px, 4vw, 40px);
    box-shadow: 0 16px 40px rgba(120, 90, 40, .16);
}
.page-hero { margin-bottom: 40px; }
.summit-eyebrow {
    margin: 0;
    color: var(--teal);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.page-hero h1 {
    margin: 0;
    font-family: "Fredoka", sans-serif;
    font-weight: 700;
    font-size: clamp(44px, 8vw, 76px);
    line-height: .97;
    letter-spacing: -.5px;
    color: var(--brown);
    text-shadow: 0 2px 8px rgba(255, 250, 240, .9), 0 0 20px rgba(255, 250, 240, .6);
}
.summit-panel h1 {
    margin: 6px 0 0;
    font-family: "Fredoka", sans-serif;
    font-size: 64px;
    line-height: 1;
    font-weight: 500;
}

.home-hero {
    position: relative;
    min-height: calc(100vh - 66px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(40px, 7vh, 90px) clamp(20px, 5vw, 60px);
    text-align: center;
}
.home-hero__copy {
    max-width: 860px;
    padding: clamp(20px, 4vw, 44px) clamp(20px, 5vw, 64px);
}
.home-hero h1 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 72px;
    line-height: 1.05;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(255, 250, 240, .9), 0 1px 3px rgba(255, 250, 240, .85);
}
.home-hero h1 span { color: var(--coral); }
.home-hero__slogan {
    margin: 16px 0 0;
    font-family: "Playfair Display", serif;
    font-size: 34px;
    line-height: 1.4;
    font-style: italic;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(255, 250, 240, .9), 0 1px 3px rgba(255, 250, 240, .85);
}
.home-hero__meta {
    margin: 14px 0 0;
    color: var(--brown-soft);
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 1px 6px rgba(255, 250, 240, .9), 0 1px 2px rgba(255, 250, 240, .85);
}
.summit-cta,
.summit-callout a,
.room-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 30px;
    margin-top: 26px;
    border: 0;
    border-radius: 26px;
    background: var(--coral);
    color: #fff;
    box-shadow: 0 8px 18px rgba(232, 85, 64, .34);
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
}
.summit-cta:hover,
.summit-callout a:hover,
.room-search button:hover {
    transform: translateY(-2px);
    box-shadow: 0 13px 26px rgba(232, 85, 64, .44);
}
.countdown {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.countdown p {
    margin: 0;
    padding: 4px 18px;
    border-radius: 14px;
    background: rgba(255, 251, 242, .74);
    color: var(--brown-mid);
    font-family: "Fredoka", sans-serif;
    font-size: 19px;
    font-weight: 500;
}
.countdown__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}
.countdown__tile {
    width: 90px;
    height: 92px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 8px 18px rgba(120, 90, 40, .16);
}
.countdown__tile span {
    color: var(--coral);
    font-family: "Fredoka", sans-serif;
    font-size: 44px;
    line-height: 1;
    font-weight: 500;
}
.countdown__tile small,
.summit-card small,
.event-facts small,
.flight-legs small,
.check-grid small,
.note-box small,
.gallery-label small {
    color: #9a8f80;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}
.home-section {
    min-height: 100vh;
    padding: clamp(56px, 9vh, 100px) clamp(20px, 5vw, 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.home-section h2,
.section-block h2 {
    margin: 0;
    color: var(--brown);
    font-family: "Fredoka", sans-serif;
    font-size: 48px;
    line-height: 1.05;
    font-weight: 500;
}
.home-section > p,
.section-block > p,
.outfit-panel > p {
    margin: 8px 0 34px;
    color: var(--brown-soft);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600;
}
.home-cards {
    width: 100%;
    max-width: 1080px;
    display: grid;
    gap: 22px;
}
.home-cards--essentials { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.home-cards--explore { grid-template-columns: repeat(auto-fit, minmax(225px, 1fr)); gap: 20px; }
.summit-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 170px;
    padding: 28px 26px;
    border-radius: 22px;
    background: var(--card);
    box-shadow: var(--shadow);
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}
.summit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.summit-card strong {
    color: var(--brown);
    font-family: "Fredoka", sans-serif;
    font-size: 30px;
    line-height: 1.05;
    font-weight: 500;
}
.summit-card--compact {
    min-height: 170px;
    padding: 24px;
    border-radius: 20px;
    gap: 8px;
}
.summit-card--compact strong { font-size: 25px; }
.summit-card em {
    color: var(--faint);
    font-size: 13px;
    line-height: 1.4;
    font-style: normal;
    font-weight: 600;
}
.summit-icon {
    width: 50px;
    height: 50px;
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 23px;
    font-style: normal;
    font-weight: 800;
}
.summit-card > .summit-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    font-size: 27px;
}
.summit-icon--pink { background: var(--pink); }
.summit-icon--teal { background: var(--teal-tint); }
.summit-icon--amber { background: var(--amber); }
.summit-icon--green { background: var(--green); }
.summit-icon--coral { background: var(--coral-tint); }

.jump-chips,
.faq-filters,
.day-switcher {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}
.jump-chips span {
    color: var(--faint);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 1px 7px rgba(255, 250, 240, .95), 0 0 16px rgba(255, 250, 240, .72);
}
.jump-chips a,
.faq-filters button,
.day-switcher button {
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 6px 14px;
    background: rgba(255, 253, 248, .92);
    color: var(--brown-mid);
    font-family: "Nunito", sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}
.jump-chips a:hover { border-color: var(--teal); color: var(--teal); }
.jump-chips .is-primary,
.faq-filters .is-active,
.day-switcher .is-active {
    border-color: transparent;
    background: var(--coral);
    color: #fff;
    box-shadow: 0 6px 14px rgba(232, 85, 64, .3);
}
.day-switcher button {
    min-width: 112px;
    min-height: 48px;
    border-radius: 24px;
    font-size: 15px;
}
.schedule-panel { display: none; }
.schedule-panel.is-active { display: block; }
.schedule-panel,
.section-block {
    margin-bottom: 26px;
}
.schedule-panel__head {
    padding: 24px 28px 0;
    border-radius: 24px 24px 0 0;
    background: var(--card);
    box-shadow: 0 8px 18px rgba(120, 90, 40, .08);
}
.schedule-panel__head p {
    margin: 0 0 4px;
    color: var(--teal);
    font-weight: 800;
    letter-spacing: 1.5px;
    font-size: 11px;
}
.schedule-panel__head h2 {
    margin: 0;
    color: var(--brown-soft);
    font-size: 14px;
    font-weight: 600;
}
.schedule-list {
    padding: 10px 28px 28px;
    border-radius: 0 0 24px 24px;
    background: var(--card);
    box-shadow: var(--shadow);
}
.schedule-item {
    display: grid;
    grid-template-columns: minmax(92px, 140px) 1fr;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1.5px solid #f0e6d2;
}
.schedule-item:last-child { border-bottom: 0; }
.schedule-item time {
    color: var(--coral);
    font-family: "Fredoka", sans-serif;
    font-size: 19px;
    font-weight: 500;
}
.schedule-item h3 {
    margin: 0;
    color: var(--brown);
    font-family: "Fredoka", sans-serif;
    font-size: 24px;
    font-weight: 500;
}
.schedule-item span {
    display: inline-flex;
    margin-top: 7px;
    padding: 4px 10px;
    border-radius: 12px;
    background: var(--teal-tint);
    color: var(--teal);
    font-size: 12px;
    font-weight: 800;
}
.schedule-item p {
    margin: 6px 0 0;
    color: var(--faint);
    font-size: 14px;
    font-weight: 600;
}
.summit-callout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    padding: 18px 22px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
}
.summit-callout strong { font-family: "Fredoka", sans-serif; font-size: 22px; font-weight: 500; }
.summit-callout--amber { border-left: 4px solid var(--sun); background: #fdf6e6; color: var(--brown-soft); }
.summit-callout--teal {
    justify-content: space-between;
    border-radius: 24px;
    background: var(--dark-teal);
    color: #cdeae7;
    box-shadow: 0 16px 36px rgba(17, 80, 76, .28);
}
.summit-callout--teal strong { color: #fff; }
.summit-callout--teal a {
    margin: 0;
    background: #fff;
    color: var(--dark-teal);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
}

.feature-card {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 26px;
    overflow: hidden;
    border-radius: 24px;
    background: var(--card);
    box-shadow: 0 16px 36px rgba(120, 90, 40, .16);
    scroll-margin-top: 84px;
}
.feature-card--reverse { flex-direction: row-reverse; }
.feature-card__body {
    flex: 1 1 360px;
    padding: clamp(24px, 3.5vw, 34px);
}
.feature-card__body h2,
.feature-title h2 {
    margin: 0;
    color: var(--brown);
    font-family: "Fredoka", sans-serif;
    font-size: 38px;
    line-height: 1;
    font-weight: 500;
}
.feature-card__body p {
    color: var(--brown-soft);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
}
.feature-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.feature-card__media {
    flex: 1 1 300px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-card__media--warm { background: linear-gradient(140deg, #fde0d8, #fbe4cf); }
.feature-card__media--cool { background: linear-gradient(140deg, #cdeee9, #d9efd2); }
.feature-card__media span {
    padding: 8px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .7);
    color: var(--brown-soft);
    font-size: 13px;
    font-weight: 700;
}
.event-facts,
.flight-legs,
.check-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin: 18px 0;
    padding: 14px 0;
    border-top: 1.5px solid #f0e6d2;
    border-bottom: 1.5px solid #f0e6d2;
}
.event-facts div,
.flight-legs div,
.check-grid article {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.event-facts strong,
.flight-legs strong,
.check-grid strong {
    color: var(--brown);
    font-family: "Fredoka", sans-serif;
    font-size: 22px;
    font-weight: 500;
}
.dress-pill,
.gallery-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    padding: 6px 16px;
    border-radius: 16px;
    background: var(--dark-teal);
}
.dress-pill strong,
.gallery-label strong {
    color: #fff;
    font-family: "Fredoka", sans-serif;
    font-size: 18px;
    font-weight: 500;
}
.note-box {
    border-left: 4px solid var(--sun);
    border-radius: 0 12px 12px 0;
    background: #fdf6e6;
    padding: 12px 16px;
    color: var(--brown-soft);
    font-weight: 600;
    line-height: 1.5;
}
.note-box ul {
    margin: 6px 0 0;
    padding-left: 18px;
}
.note-box a {
    display: inline-block;
    margin-top: 10px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}
.outfit-panel { scroll-margin-top: 84px; }
.outfit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
    margin: 0 0 30px;
}
.outfit-grid figure {
    aspect-ratio: 195 / 335;
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    background: #f0e6d2;
    box-shadow: 0 8px 20px rgba(120, 90, 40, .14);
}
.outfit-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.current-flight-panel {
    margin-bottom: 26px;
    padding: clamp(24px, 3.5vw, 34px);
    border-radius: 26px;
    background: var(--dark-teal);
    color: #eafaf8;
    box-shadow: 0 18px 42px rgba(17, 80, 76, .28);
}
.current-flight-panel__intro {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 16px;
    margin-bottom: 18px;
}
.current-flight-panel__intro .summit-eyebrow {
    width: 100%;
    color: #7fc3bd;
}
.current-flight-panel__intro h2 {
    margin: 0;
    color: #fff;
    font-family: "Fredoka", sans-serif;
    font-size: 44px;
    line-height: 1;
    font-weight: 500;
}
.current-flight-panel__intro span {
    color: #cdeae7;
    font-size: 15px;
    font-weight: 700;
}
.current-flight-panel__legs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
}
.current-flight-panel__legs article {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .1);
}
.current-flight-panel__legs small {
    color: #7fc3bd;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}
.current-flight-panel__legs strong {
    color: #fff;
    font-family: "Fredoka", sans-serif;
    font-size: 28px;
    line-height: 1.05;
    font-weight: 500;
}
.current-flight-panel__legs span,
.current-flight-panel__legs em {
    color: #eafaf8;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
}
.current-flight-panel__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
}
.current-flight-panel__footer span {
    color: #cdeae7;
    font-size: 14px;
    font-weight: 800;
}
.current-flight-panel__footer a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 20px;
    background: #fff;
    color: var(--dark-teal);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.flight-grid,
.do-dont-grid,
.two-col,
.amenity-grid,
.packing-grid,
.contacts-grid,
.room-directory,
.conduct-grid {
    display: grid;
    gap: 18px;
}
.flight-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.flight-card,
.amenity-card,
.list-card,
.packing-card,
.conduct-grid article,
.room-directory article,
.room-search-panel {
    border-radius: 22px;
    background: var(--card);
    padding: 24px;
    box-shadow: var(--shadow);
}
.flight-card__head,
.amenity-card__title {
    display: flex;
    align-items: center;
    gap: 14px;
}
.flight-card h2,
.amenity-card h3,
.list-card h3,
.packing-card h3,
.contacts-panel h2 {
    margin: 0;
    font-family: "Fredoka", sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.05;
}
.flight-card__head p,
.lead-row {
    margin: 4px 0 0;
    color: var(--brown-soft);
    font-size: 14px;
    font-weight: 700;
}
.flight-card.is-current {
    outline: 3px solid var(--coral);
    box-shadow: 0 18px 42px rgba(232, 85, 64, .24);
}
.flight-card.is-current::before {
    content: "YOUR TEAM";
    display: inline-flex;
    margin-bottom: 12px;
    padding: 4px 11px;
    border-radius: 999px;
    background: var(--coral);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.4px;
}
.flight-legs { gap: 14px; }
.flight-legs div {
    flex: 1 1 200px;
    padding: 16px;
    border-radius: 16px;
    background: #fff8eb;
}
.flight-legs span,
.flight-legs em {
    color: var(--brown-soft);
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
}
.lead-row {
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--teal-tint);
    color: var(--teal);
}
.passenger-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}
.passenger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 14px;
    background: #fff8eb;
}
.passenger span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-teal);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}
.passenger strong { font-size: 14px; }

.info-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.info-stack p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}
.info-stack strong {
    color: var(--teal);
    font-size: 10px;
    letter-spacing: 1px;
}
.info-stack a {
    color: var(--teal);
    font-weight: 800;
    text-decoration: none;
}
.amenity-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.amenity-card p {
    color: var(--brown-soft);
    font-size: 13.5px;
    line-height: 1.55;
    font-weight: 600;
}
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.chip-row span {
    display: inline-flex;
    padding: 4px 11px;
    border-radius: 12px;
    background: var(--teal-tint);
    color: var(--teal);
    font-size: 12px;
    font-weight: 700;
}
.chip-row span + span {
    background: var(--amber);
    color: #b06a2e;
}
.check-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    border: 0;
    margin: 16px 0;
    padding: 0;
}
.check-grid article {
    padding: 24px 26px;
    border-radius: 22px;
    background: var(--card);
    box-shadow: var(--shadow);
}
.check-grid strong {
    color: var(--coral);
    font-size: 44px;
}
.check-grid span {
    color: var(--brown-soft);
    font-size: 14px;
    font-weight: 600;
}
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 15px 18px;
}
.rule-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.rule-row span {
    width: 28px;
    height: 28px;
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--pink);
    color: var(--coral);
    font-family: "Fredoka", sans-serif;
    font-size: 14px;
    font-weight: 500;
}
.rule-row p {
    margin: 0;
    color: var(--brown-mid);
    font-size: 13.5px;
    line-height: 1.55;
    font-weight: 600;
}

.do-dont-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.list-card h3 { margin-bottom: 14px; }
.list-card ul,
.simple-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.list-card li,
.simple-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--brown-soft);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
}
.list-card li::before,
.simple-list li::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}
.list-card--do li::before {
    content: "✓";
    background: var(--green);
    color: #4a8d44;
}
.list-card--dont li::before {
    content: "×";
    background: var(--coral-tint);
    color: var(--coral);
}
.conduct-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.conduct-grid article {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 12px 14px;
}
.conduct-grid strong {
    align-self: end;
    font-family: "Fredoka", sans-serif;
    font-size: 22px;
    font-weight: 500;
}
.conduct-grid p {
    grid-column: 2;
    margin: 0;
    color: var(--brown-soft);
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
}
.two-col { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.simple-list--coral li::before { content: "•"; color: var(--coral); }
.simple-list--teal li::before { content: "•"; color: var(--teal); }
.simple-list a {
    color: var(--teal);
    font-weight: 800;
    text-decoration: none;
}
.section-title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 18px;
}
.section-title-row span {
    padding: 3px 12px;
    border-radius: 12px;
    background: var(--amber);
    color: #c98a1e;
    font-size: 12px;
    font-weight: 700;
}
.packing-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.packing-card {
    border: 1.5px solid #f0e6d2;
    box-shadow: none;
}
.packing-card--hot { border: 2px solid #f0a99c; }
.packing-card h3 {
    color: var(--teal);
    font-size: 23px;
    margin-bottom: 12px;
}
.packing-card--hot h3 { color: var(--coral); }
.packing-card p {
    margin: 0 0 9px;
    color: var(--brown-soft);
    font-size: 14px;
    font-weight: 600;
}

.faq-filters button { min-height: 34px; }
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}
.faq-item {
    overflow: hidden;
    border-radius: 18px;
    background: var(--card);
    box-shadow: 0 10px 24px rgba(120, 90, 40, .14);
}
.faq-item[hidden] { display: none; }
.faq-item button {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    text-align: left;
    cursor: pointer;
}
.faq-item button span {
    color: var(--brown);
    font-family: "Fredoka", sans-serif;
    font-size: 22px;
    font-weight: 500;
}
.faq-item button b {
    color: var(--coral);
    font-family: "Fredoka", sans-serif;
    font-size: 26px;
    font-weight: 500;
}
.faq-answer {
    display: none;
    padding: 0 20px 18px;
    border-top: 1.5px solid #f0e6d2;
    color: var(--brown-soft);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
}
.faq-item.is-open .faq-answer { display: block; }
.contacts-panel {
    overflow: hidden;
    border-radius: 24px;
    background: var(--dark-teal);
    box-shadow: 0 16px 40px rgba(17, 80, 76, .3);
}
.contacts-panel header {
    padding: 20px clamp(22px, 3vw, 30px);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.contacts-panel h2 { color: #fff; font-size: 28px; }
.contacts-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    padding: clamp(22px, 3vw, 28px);
    gap: 14px;
}
.contacts-grid article {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .08);
}
.contacts-grid article > span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-tint);
    color: var(--dark-teal);
    font-size: 14px;
    font-weight: 900;
}
.contacts-grid h3 {
    margin: 0;
    color: #fff;
    font-family: "Fredoka", sans-serif;
    font-size: 22px;
    line-height: 1;
    font-weight: 500;
}
.contacts-grid small {
    display: block;
    margin-top: 3px;
    color: #7fc3bd;
    font-size: 11px;
    font-weight: 700;
}
.contacts-grid p {
    margin: 6px 0 0;
    color: #eafaf8;
    font-size: 14px;
    font-weight: 600;
}
.local-emergency {
    margin: 0 clamp(22px, 3vw, 28px) clamp(22px, 3vw, 28px);
    padding: 13px 18px;
    border-left: 4px solid var(--coral);
    border-radius: 0 12px 12px 0;
    background: rgba(232, 85, 64, .16);
    color: #fdeede;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
}
.local-emergency strong {
    color: #ffb3a7;
    font-size: 11px;
    letter-spacing: 1px;
}

.room-search-panel {
    margin-bottom: 26px;
    padding: clamp(24px, 3.5vw, 34px);
    border-radius: 24px;
}
.room-search label {
    display: block;
    margin-bottom: 7px;
    color: var(--teal);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.room-search div {
    display: flex;
    gap: 10px;
}
.room-search input {
    min-width: 0;
    flex: 1;
    height: 52px;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 0 18px;
    background: var(--white);
    color: var(--brown);
    font: 600 15px "Nunito", sans-serif;
}
.room-search button { margin: 0; border-radius: 16px; }
.room-results {
    margin-top: 18px;
    color: var(--brown-soft);
    font-size: 15px;
    font-weight: 600;
}
.room-result {
    padding: 16px;
    margin-top: 10px;
    border-radius: 16px;
    background: #fff8eb;
}
.room-result strong {
    display: block;
    color: var(--coral);
    font-family: "Fredoka", sans-serif;
    font-size: 32px;
    font-weight: 500;
}
.room-directory {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.room-directory article {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.room-directory strong {
    color: var(--brown);
    font-family: "Fredoka", sans-serif;
    font-size: 22px;
    font-weight: 500;
}
.room-directory span {
    color: var(--coral);
    font-size: 14px;
    font-weight: 800;
}
.room-directory small {
    color: var(--brown-soft);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

.your-room-section {
    margin-bottom: 16px;
}
.your-room-section__label {
    margin: 0 0 10px 4px;
    color: #9a8f80;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}
.your-room-card {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    border-radius: 24px;
    background: var(--card);
    box-shadow: 0 16px 36px rgba(120, 90, 40, .16);
}
.your-room-card__left {
    flex: 1 1 200px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(24px, 3.5vw, 34px);
    background: var(--dark-teal);
}
.your-room-card__eyebrow {
    color: #7fc3bd;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}
.your-room-card__number {
    display: block;
    margin-top: 4px;
    color: #fff;
    font-family: "Fredoka", sans-serif;
    font-size: 76px;
    line-height: .95;
    font-weight: 500;
}
.your-room-card__tower {
    display: block;
    margin-top: 8px;
    color: #b6ded9;
    font-size: 14px;
    font-weight: 700;
}
.your-room-card__right {
    flex: 2 1 320px;
    padding: clamp(24px, 3.5vw, 34px);
}
.your-room-card__sharing-label {
    margin: 0 0 12px;
    color: var(--teal);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}
.your-room-card__occupants {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.your-room-card__person {
    display: flex;
    align-items: center;
    gap: 12px;
}
.your-room-card__avatar {
    width: 38px;
    height: 38px;
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--teal-tint);
    font-size: 18px;
}
.your-room-card__avatar--you {
    background: var(--pink);
}
.your-room-card__name {
    font-family: "Fredoka", sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--brown);
}
.your-room-card__badge {
    padding: 2px 8px;
    margin-left: 4px;
    border-radius: 10px;
    background: var(--coral);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}
.your-room-card__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 16px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1.5px solid #f0e6d2;
}
.your-room-card__footer span {
    color: var(--faint);
    font-size: 13px;
    font-weight: 600;
}
.your-room-card__footer a {
    color: var(--teal);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}
.room-divider {
    height: 1.5px;
    margin: 30px 4px;
    background: rgba(120, 90, 40, .16);
}
.room-search__title {
    margin: 0;
    font-family: "Fredoka", sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--brown);
}
.room-search__subtitle {
    margin: 2px 0 18px;
    color: var(--faint);
    font-size: 14px;
    font-weight: 600;
}
.room-prompt,
.room-no-match {
    border: 1.5px dashed #d8cab4;
    border-radius: 16px;
    padding: 26px;
    text-align: center;
    background: var(--white);
}
.room-prompt > span,
.room-no-match > span {
    display: block;
    font-size: 30px;
    margin-bottom: 6px;
}
.room-prompt strong,
.room-no-match strong {
    display: block;
    font-family: "Fredoka", sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--brown-soft);
}
.room-prompt p,
.room-no-match p {
    margin: 4px 0 0;
    color: #9a8f80;
    font-size: 13px;
    font-weight: 600;
}
.room-no-match {
    border-color: #f0a99c;
    background: #fdf3f1;
}
.room-no-match strong {
    color: #c2502f;
}
.room-no-match a {
    color: var(--teal);
    font-weight: 700;
    text-decoration: none;
}
.room-result-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.room-result-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 18px;
    border: 1.5px solid #f0e6d2;
    border-radius: 16px;
    background: var(--white);
}
.room-result-item__room {
    flex: none;
    min-width: 60px;
    text-align: center;
}
.room-result-item__room small {
    display: block;
    color: #9a8f80;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}
.room-result-item__room b {
    display: block;
    color: var(--coral);
    font-family: "Fredoka", sans-serif;
    font-size: 34px;
    line-height: 1;
    font-weight: 500;
}
.room-result-item__divider {
    width: 1.5px;
    align-self: stretch;
    background: #f0e6d2;
}
.room-result-item__info strong {
    display: block;
    font-family: "Fredoka", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--brown);
}
.room-result-item__info em {
    display: block;
    margin-top: 2px;
    color: var(--brown-soft);
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
}

.access-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 6vw, 56px);
    background: var(--cream) url("../uploads/other_bg.png") center center / cover no-repeat fixed;
}
.access-card {
    width: 100%;
    max-width: 440px;
    padding: clamp(30px, 5vw, 46px);
    border-radius: 30px;
    background: rgba(255, 251, 242, .92);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    box-shadow: 0 24px 60px rgba(120, 90, 40, .26);
    text-align: center;
}
.access-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 26px;
}
.access-logo .summit-brand__logo {
    width: 42px;
    height: 42px;
}
.access-logo .summit-brand__sun {
    width: 42px;
    height: 42px;
    font-size: 22px;
}
.access-card h1 {
    margin: 6px 0 0;
    color: var(--brown);
    font-family: "Fredoka", sans-serif;
    font-size: 40px;
    line-height: 1.05;
    font-weight: 500;
}
.access-card > p:not(.summit-eyebrow) {
    max-width: 320px;
    margin: 12px auto 0;
    color: var(--brown-soft);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
}
.access-form {
    margin-top: 30px;
    text-align: left;
}
.access-form label {
    display: block;
    margin-bottom: 18px;
}
.access-form label span {
    display: block;
    margin-bottom: 7px;
    color: var(--teal);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}
.access-form input {
    width: 100%;
    height: 52px;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 0 18px;
    background: var(--white);
    color: var(--brown);
    outline: none;
    font: 600 15px "Nunito", sans-serif;
}
.access-form input:focus { border-color: var(--teal); }
.access-form button {
    width: 100%;
    height: 54px;
    border: 0;
    border-radius: 27px;
    background: var(--coral);
    color: #fff;
    box-shadow: 0 10px 22px rgba(232, 85, 64, .36);
    font: 800 16px "Nunito", sans-serif;
    cursor: pointer;
}
.access-error {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 14px;
    border-radius: 12px;
    background: #fdf3f1;
    color: #c2502f;
    font-size: 13px;
    font-weight: 700;
}
.access-form small {
    display: block;
    margin-top: 18px;
    color: var(--faint);
    text-align: center;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

.summit-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px clamp(20px, 5vw, 56px);
    background: var(--dark-teal);
}
.summit-footer__contacts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 30px;
}
.summit-footer__eyebrow {
    color: #7fc3bd;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}
.summit-footer__contacts span:not(.summit-footer__eyebrow) {
    color: #eafaf8;
    font-size: 13px;
    font-weight: 600;
}
.summit-footer__meta {
    color: #5f9b96;
    font-size: 11px;
    font-weight: 600;
}

@media (max-width: 980px) {
    .home-hero h1 { font-size: 56px; }
    .home-hero__slogan { font-size: 28px; }
    .page-hero h1, .summit-panel h1 { font-size: 52px; }
}

@media (max-width: 859px) {
    .summit-nav { display: none; }
    .summit-menu-toggle { display: block; }
    .home-hero h1 { font-size: 46px; }
    .home-hero__slogan { font-size: 24px; }
    .home-hero__meta { font-size: 15px; }
    .home-section h2, .section-block h2 { font-size: 38px; }
    .page-hero h1, .summit-panel h1 { font-size: 46px; }
    .schedule-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .feature-card,
    .feature-card--reverse { flex-direction: column; }
}

@media (max-width: 560px) {
    .countdown__tile {
        width: 74px;
        height: 78px;
    }
    .countdown__tile span { font-size: 34px; }
    .summit-mobile-menu a { font-size: 28px; }
    .room-search div { flex-direction: column; }
    .room-search button { width: 100%; }
    .rules-grid { grid-template-columns: 1fr; }
    .home-cards--essentials,
    .home-cards--explore,
    .flight-grid,
    .amenity-grid,
    .do-dont-grid,
    .two-col,
    .packing-grid,
    .contacts-grid,
    .room-directory { grid-template-columns: 1fr; }
}

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

@keyframes heroStampBob {
    0%, 100% { transform: rotate(-9deg) translateY(0); }
    50% { transform: rotate(-9deg) translateY(-6px); }
}
@keyframes heroSway {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.025) rotate(-0.8deg); }
    75% { transform: scale(1.025) rotate(0.8deg); }
}
@keyframes heroSwayMobile {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.02) rotate(-0.8deg); }
    75% { transform: scale(1.02) rotate(0.8deg); }
}

.summit-page:has(.hero-banner) {
    min-height: 0;
}

.hero-banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: url("../uploads/home_hero_bg.png") center / cover no-repeat;
    box-shadow: 0 26px 64px rgba(74,59,46,.30);
    font-family: "DM Sans", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    padding: clamp(90px, 12vh, 130px) clamp(30px, 5vw, 80px) clamp(24px, 4vh, 48px);
    gap: clamp(16px, 2vh, 26px);
}

/* ---- nav ---- */
.hero-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 22px clamp(18px, 4vw, 40px) 36px;
}
.hero-nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: linear-gradient(180deg, rgba(74,59,46,.5) 0%, rgba(74,59,46,.18) 55%, rgba(74,59,46,0) 100%);
    z-index: -1;
}
.hero-nav__brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: "Baloo 2", cursive;
    font-weight: 800;
    font-size: 21px;
    color: #fff8ec;
    text-shadow: 0 2px 8px rgba(74,59,46,.5);
    text-decoration: none;
}
.hero-nav__brand span { font-size: 19px; }
.hero-nav__links {
    display: flex;
    align-items: center;
    gap: 26px;
    white-space: nowrap;
}
.hero-nav__links a {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 14.5px;
    color: #fff8ec;
    text-decoration: none;
    text-shadow: 0 1px 6px rgba(74,59,46,.45);
    transition: color .15s ease;
}
.hero-nav__links a:hover { color: #ffd9b0; }
.hero-nav__links a.is-active {
    color: #ffd9b0;
    border-bottom: 2px solid #e85540;
    padding-bottom: 3px;
}

/* ---- hamburger ---- */
.hero-hamburger { display: none; }

/* ---- passport stamp ---- */
.hero-stamp {
    position: absolute;
    top: clamp(80px, 9vw, 116px);
    left: clamp(30px, 4.5vw, 70px);
    width: clamp(110px, 10vw, 148px);
    height: clamp(110px, 10vw, 148px);
    border-radius: 50%;
    border: 3px dashed #f7ecd6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #f7ecd6;
    background: rgba(232,85,64,.32);
    backdrop-filter: blur(2px);
    transform: rotate(-9deg);
    box-shadow: 0 10px 24px rgba(74,59,46,.35);
    z-index: 2;
    animation: heroStampBob 5s ease-in-out infinite;
}
.hero-stamp__arrive {
    font-family: "Space Mono", monospace;
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 700;
}
.hero-stamp__date {
    font-family: "Baloo 2", cursive;
    font-weight: 800;
    font-size: clamp(22px, 2.4vw, 34px);
    line-height: .9;
    margin: 3px 0;
}
.hero-stamp__year {
    font-family: "Space Mono", monospace;
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 700;
}
.hero-stamp__place {
    font-family: "Space Mono", monospace;
    font-size: 8px;
    letter-spacing: 2px;
    margin-top: 3px;
    opacity: .85;
}

/* ---- headline ---- */
.hero-headline__row {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 16px;
}
.hero-headline__aloha {
    font-family: "Pacifico", cursive;
    font-size: clamp(30px, 3.3vw, 48px);
    line-height: .8;
    color: #ffd9b0;
    text-shadow: 0 3px 0 #e85540, 0 12px 26px rgba(74,59,46,.5);
}
.hero-headline__subtitle {
    font-family: "Space Mono", monospace;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    color: #f7ecd6;
    padding-bottom: 10px;
    opacity: .9;
}
.hero-headline__welcome {
    margin: 4px 0 0;
    font-family: "Baloo 2", cursive;
    font-weight: 800;
    font-size: clamp(32px, 3.5vw, 50px);
    line-height: .96;
    color: #fff8ec;
    letter-spacing: -1px;
    text-shadow: 0 6px 22px rgba(74,59,46,.55);
}
.hero-wordmark--mobile { display: none; }

/* ---- slogan ---- */
.hero-slogan { max-width: 880px; }
.hero-wordmark--desktop {
    font-family: "Spicy Rice", cursive;
    font-weight: 400;
    font-size: clamp(60px, 8.2vw, 118px);
    line-height: .9;
    color: #fff3df;
    letter-spacing: 1px;
    transform-origin: right center;
    animation: heroSway 5.5s ease-in-out infinite;
    will-change: transform;
    text-shadow: 0 3px 0 #e85540, 0 6px 0 #e85540, 0 9px 0 #d8462f, 0 12px 0 #c43f29, 0 15px 0 #c43f29, 0 20px 30px rgba(74,59,46,.55);
}
.hero-slogan__text {
    font-family: "Baloo 2", cursive;
    font-weight: 700;
    font-size: clamp(20px, 2.2vw, 31px);
    line-height: 1.12;
    color: #4a3b2e;
    margin-top: 14px;
    max-width: 720px;
    margin-left: auto;
    text-shadow: 0 1px 1px rgba(255,248,236,.7);
}
.hero-slogan__text span { color: #e85540; }

/* ---- boarding pass ---- */
.hero-ticket {
    display: flex;
    width: 660px;
    max-width: 100%;
    transform: rotate(-1.1deg);
    transform-origin: right center;
    border-radius: 20px;
    box-shadow: 0 28px 56px rgba(74,59,46,.45);
    margin-top: 6px;
    margin-left: auto;
}
.hero-ticket__main {
    flex: 1;
    background: #fff8ec;
    border-radius: 20px 0 0 20px;
    padding: 22px 28px;
}
.hero-ticket__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px dashed rgba(74,59,46,.22);
    padding-bottom: 13px;
}
.hero-ticket__airline {
    font-family: "Baloo 2", cursive;
    font-weight: 800;
    font-size: 16px;
    color: #e85540;
    letter-spacing: .5px;
}
.hero-ticket__badge {
    font-family: "Space Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #4a3b2e;
    border: 1.5px solid #4a3b2e;
    border-radius: 5px;
    padding: 3px 7px;
}
.hero-ticket__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 22px;
    margin-top: 16px;
}
.hero-ticket__label {
    font-family: "Space Mono", monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e85540;
    text-transform: uppercase;
}
.hero-ticket__value {
    font-family: "Space Mono", monospace;
    font-size: 16px;
    font-weight: 700;
    color: #4a3b2e;
    margin-top: 3px;
}
.hero-ticket__barcode {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 40px;
    margin-top: 18px;
}
.hero-ticket__barcode > span {
    display: block;
    height: 100%;
    background: #4a3b2e;
}
.hero-ticket__route {
    height: auto !important;
    background: none !important;
    opacity: 1 !important;
    font-family: "Space Mono", monospace;
    font-size: 10px;
    color: #4a3b2e;
    margin-left: 10px;
    letter-spacing: 1px;
    align-self: center;
    flex: none;
}
.hero-ticket__perf {
    width: 0;
    border-left: 2px dashed rgba(247,236,214,.55);
}
.hero-ticket__stub {
    width: 188px;
    background: #4a3b2e;
    color: #f7ecd6;
    border-radius: 0 20px 20px 0;
    padding: 18px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.hero-ticket__cd-top--mobile { display: none; }
.hero-ticket__cd-label {
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 9px;
    letter-spacing: 3px;
    color: #e8a87c;
}
.hero-ticket__cd-title {
    display: block;
    font-family: "Baloo 2", cursive;
    font-weight: 800;
    font-size: 18px;
    color: #ffd9b0;
    margin: 1px 0 12px;
}
.hero-ticket__cd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.hero-ticket__cd-tile {
    background: rgba(247,236,214,.10);
    border-radius: 10px;
    padding: 8px 2px 6px;
}
.hero-ticket__cd-tile span {
    display: block;
    font-family: "Baloo 2", cursive;
    font-weight: 800;
    font-size: 24px;
    line-height: 1;
    color: #fff8ec;
}
.hero-ticket__cd-tile small {
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 8px;
    letter-spacing: 1px;
    color: #d9b88a;
    margin-top: 4px;
}
.hero-ticket__cd-footer {
    font-family: "Space Mono", monospace;
    font-size: 9px;
    letter-spacing: 2px;
    color: #e8a87c;
    margin-top: 12px;
}

/* ---- CTA ---- */
.hero-cta-row {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 18px;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: #e85540;
    color: #fff8ec;
    font-family: "Baloo 2", cursive;
    font-weight: 800;
    font-size: 19px;
    padding: 17px 34px;
    border-radius: 50px;
    border: 0;
    box-shadow: 0 14px 28px rgba(232,85,64,.5);
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease;
}
.hero-cta:hover {
    transform: translateY(-3px) rotate(-1deg);
    box-shadow: 0 20px 36px rgba(232,85,64,.55);
    color: #fff8ec;
}

/* ---- mobile overlay ---- */
.hero-overlay { display: none; }

/* ---- reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
    .hero-stamp,
    .hero-wordmark--desktop,
    .hero-wordmark--mobile { animation: none !important; }
}

/* ---- mobile (hero) ---- */
@media (max-width: 859px) {
    .hero-banner {
        height: auto;
        overflow: visible;
        background: #f7ecd6;
        box-shadow: none;
        display: block;
        padding: 0;
    }
    .hero-nav { display: none; }

    .hero-hamburger {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        position: absolute;
        top: 18px;
        right: 18px;
        z-index: 30;
        width: 44px;
        height: 44px;
        border: none;
        cursor: pointer;
        border-radius: 13px;
        background: rgba(74,59,46,.5);
        backdrop-filter: blur(3px);
        box-shadow: 0 6px 16px rgba(74,59,46,.3);
    }
    .hero-hamburger span {
        display: block;
        width: 20px;
        height: 2.5px;
        border-radius: 2px;
        background: #fff8ec;
    }

    .hero-stamp {
        top: 20px;
        left: 20px;
        width: 102px;
        height: 102px;
        border-width: 2.5px;
    }
    .hero-stamp__arrive { font-size: 8px; letter-spacing: 2px; }
    .hero-stamp__date { font-size: 24px; margin: 2px 0; }
    .hero-stamp__year { font-size: 8px; letter-spacing: 3px; }
    .hero-stamp__place { display: none; }

    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .hero-headline {
        position: relative;
        min-height: 318px;
        padding: 0 22px 22px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        text-align: right;
        background: url("../uploads/home_hero_bg.png") 58% center / cover no-repeat;
    }
    .hero-headline::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(74,59,46,0) 40%, rgba(74,59,46,.32) 68%, rgba(74,59,46,.62) 100%);
        pointer-events: none;
        z-index: 0;
    }
    .hero-headline > * { position: relative; z-index: 1; }
    .hero-headline__aloha {
        font-size: 34px;
        text-shadow: 0 2px 0 #e85540, 0 8px 18px rgba(74,59,46,.5);
    }
    .hero-headline__subtitle { display: none; }
    .hero-headline__welcome {
        font-size: 30px;
        margin: 4px 0 6px;
        text-shadow: 0 4px 16px rgba(74,59,46,.7);
    }

    .hero-wordmark--mobile {
        display: block;
        font-family: "Spicy Rice", cursive;
        font-size: 58px;
        line-height: .84;
        color: #fff3df;
        letter-spacing: .5px;
        transform-origin: right center;
        animation: heroSwayMobile 5.5s ease-in-out infinite;
        will-change: transform;
        text-shadow: 0 2px 0 #e85540, 0 5px 0 #d8462f, 0 8px 0 #c43f29, 0 11px 0 #c43f29, 0 16px 22px rgba(74,59,46,.5);
    }
    .hero-wordmark--desktop { display: none; }

    .hero-slogan { padding: 24px 22px 0; max-width: none; }
    .hero-slogan__text {
        font-size: 21px;
        line-height: 1.18;
        text-align: center;
        margin-top: 0;
        max-width: none;
        margin-left: 0;
        text-shadow: none;
    }

    .hero-ticket {
        flex-direction: column;
        width: auto;
        margin: 22px 22px 0;
        transform: none;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(74,59,46,.32);
    }
    .hero-ticket__main {
        border-radius: 0;
        padding: 20px 22px;
    }
    .hero-ticket__header { padding-bottom: 12px; }
    .hero-ticket__airline { font-size: 14px; }
    .hero-ticket__badge { font-size: 8px; letter-spacing: 1.5px; padding: 3px 6px; }
    .hero-ticket__fields { gap: 14px 18px; margin-top: 15px; }
    .hero-ticket__label { font-size: 8px; }
    .hero-ticket__value { font-size: 15px; }
    .hero-ticket__barcode { height: 34px; margin-top: 16px; }
    .hero-ticket__route { font-size: 9px; margin-left: 8px; }

    .hero-ticket__perf {
        width: auto;
        height: 0;
        border-left: 0;
        border-top: 2px dashed rgba(247,236,214,.6);
        background: #4a3b2e;
    }
    .hero-ticket__stub {
        width: auto;
        border-radius: 0;
        padding: 18px 22px 20px;
    }
    .hero-ticket__cd-top--desktop { display: none; }
    .hero-ticket__cd-top--mobile {
        display: block;
        font-family: "Space Mono", monospace;
        font-size: 9px;
        letter-spacing: 3px;
        color: #e8a87c;
    }
    .hero-ticket__cd-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 9px;
        margin-top: 13px;
    }
    .hero-ticket__cd-tile {
        border-radius: 12px;
        padding: 11px 2px 8px;
    }
    .hero-ticket__cd-tile span { font-size: 26px; }
    .hero-ticket__cd-tile small { margin-top: 5px; }
    .hero-ticket__cd-footer { display: none; }

    .hero-cta-row {
        padding: 22px 22px 30px;
        margin-top: 0;
    }
    .hero-cta {
        width: 100%;
        justify-content: center;
        font-size: 18px;
        border-radius: 16px;
        padding: 17px 0;
        box-shadow: 0 12px 24px rgba(232,85,64,.45);
        gap: 10px;
    }
    .hero-cta:hover {
        transform: none;
        box-shadow: 0 12px 24px rgba(232,85,64,.45);
    }
    .hero-cta:active { transform: scale(0.97); }

    /* ---- mobile overlay menu ---- */
    .hero-overlay.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        inset: 0;
        z-index: 40;
        background: rgba(74,59,46,.97);
        backdrop-filter: blur(4px);
        padding: 24px;
    }
    .hero-overlay__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .hero-overlay__brand {
        display: flex;
        align-items: center;
        gap: 9px;
        font-family: "Baloo 2", cursive;
        font-weight: 800;
        font-size: 20px;
        color: #fff8ec;
    }
    .hero-overlay__brand span { font-size: 18px; }
    .hero-overlay__close {
        width: 42px;
        height: 42px;
        border: none;
        cursor: pointer;
        border-radius: 12px;
        background: rgba(247,236,214,.12);
        color: #fff8ec;
        font-size: 20px;
        line-height: 1;
    }
    .hero-overlay__links {
        display: flex;
        flex-direction: column;
        margin-top: 30px;
    }
    .hero-overlay__links a {
        font-family: "Baloo 2", cursive;
        font-weight: 700;
        font-size: 25px;
        color: #fff8ec;
        text-decoration: none;
        padding: 15px 0;
        border-bottom: 1px solid rgba(247,236,214,.12);
    }
    .hero-overlay__links a:last-child { border-bottom: 0; }
    .hero-overlay__links a.is-active { color: #ff8e79; }

    @keyframes heroStampBob {
        0%, 100% { transform: rotate(-9deg) translateY(0); }
        50% { transform: rotate(-9deg) translateY(-5px); }
    }
}

/* ===================================================================
   ITINERARY REDESIGN (scoped under .smt-itin)
   =================================================================== */

.summit-page--inner:has(.smt-itin){padding:0;}
.smt-itin{--smt-accent:var(--coral);--smt-cream:#FAF3E1;--smt-card:#FFFDF6;--smt-ink:var(--brown);--smt-muted:var(--brown-soft);--smt-line:#ECDDBD;--smt-border:#EEE2C5;
  font-family:'Nunito Sans',system-ui,sans-serif;color:var(--brown);background:transparent;
  -webkit-font-smoothing:antialiased;line-height:1.5;}
.smt-eyebrow{text-shadow:0 1px 4px rgba(255,250,240,.9),0 0 12px rgba(255,250,240,.7);}
.smt-h1{text-shadow:0 2px 8px rgba(255,250,240,.9),0 0 20px rgba(255,250,240,.6);}
.smt-lede{text-shadow:0 1px 6px rgba(255,250,240,.95),0 0 14px rgba(255,250,240,.7);}
.smt-itin *{box-sizing:border-box;}
.smt-itin h1,.smt-itin h2,.smt-itin h3,.smt-itin p{margin:0;}
.smt-wrap{max-width:1080px;margin:0 auto;padding:clamp(48px,8vh,80px) 32px 72px;}
.smt-eyebrow{font-size:13px;font-weight:800;letter-spacing:.2em;text-transform:uppercase;color:var(--teal);margin-bottom:13px;}
.smt-itin .smt-h1{font-family:'Fredoka',sans-serif;font-weight:700;font-size:clamp(44px,8vw,76px);line-height:.97;letter-spacing:-.5px;color:var(--smt-ink);margin-bottom:40px;}
.smt-lede{font-size:clamp(15px,2.5vw,18px);color:var(--smt-muted);max-width:520px;margin-bottom:30px;}
.smt-tabs{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-bottom:28px;}
.smt-tab{text-align:left;cursor:pointer;font:inherit;border:1.5px solid var(--smt-line);background:var(--smt-card);
  border-radius:20px;padding:18px 20px;transition:transform .15s,box-shadow .15s,background .15s;display:flex;flex-direction:column;}
.smt-tab:hover{transform:translateY(-2px);}
.smt-tab-label{font-family:'Fredoka',sans-serif;font-weight:600;font-size:13px;letter-spacing:.14em;text-transform:uppercase;color:var(--smt-accent);}
.smt-tab-date{font-size:12px;font-weight:700;color:var(--faint);margin-top:-15px;align-self:flex-end;}
.smt-tab-theme{font-family:'Fredoka',sans-serif;font-weight:600;font-size:clamp(18px,3vw,23px);color:var(--smt-ink);margin-top:9px;line-height:1.1;}
.smt-tab-dow{font-size:13.5px;font-weight:600;color:var(--brown-soft);margin-top:3px;}
.smt-tab.is-active{background:var(--smt-accent);border-color:var(--smt-accent);box-shadow:0 14px 26px -16px var(--smt-accent);}
.smt-tab.is-active .smt-tab-label{color:#fff;}
.smt-tab.is-active .smt-tab-theme{color:#fff;}
.smt-tab.is-active .smt-tab-date,.smt-tab.is-active .smt-tab-dow{color:rgba(255,255,255,.82);}
.smt-panel{background:var(--smt-card);border:1px solid var(--smt-border);border-radius:28px;padding:38px 40px 30px;box-shadow:0 18px 40px -28px rgba(120,90,40,.35);}
.smt-day{display:none;}
.smt-day.is-active{display:block;}
.smt-dayhead{display:flex;align-items:baseline;gap:14px;flex-wrap:wrap;padding-bottom:26px;margin-bottom:8px;border-bottom:1px solid #F1E7CC;}
.smt-dow{font-family:'Fredoka',sans-serif;font-weight:600;font-size:26px;color:var(--smt-ink);}
.smt-ddate{font-family:'Fredoka',sans-serif;font-weight:500;font-size:26px;color:var(--smt-accent);}
.smt-dtheme{font-size:15px;font-weight:600;color:var(--brown-soft);margin-left:auto;}
.smt-group{margin-top:30px;}
.smt-group.is-first{margin-top:4px;}
.smt-row{display:grid;grid-template-columns:88px 40px 1fr;align-items:stretch;}
.smt-phase{align-items:start;}
.smt-time{text-align:right;padding:18px 0 0;}
.smt-row.is-feat .smt-time{padding-top:24px;}
.smt-phase .smt-time{padding:0;}
.smt-start{font-family:'Fredoka',sans-serif;font-weight:600;font-size:17px;line-height:1.15;}
.smt-end{font-size:12.5px;font-weight:700;color:var(--faint);margin-top:1px;}
.smt-rail{position:relative;}
.smt-itin .smt-line{position:absolute;left:19px;top:0;bottom:0;width:2px;background:var(--smt-line);}
.smt-line--ph{top:11px;}
.smt-dot{position:absolute;left:13px;top:22px;width:14px;height:14px;border-radius:50%;box-shadow:0 0 0 4px var(--smt-card);}
.smt-row.is-feat .smt-dot{top:30px;}
.smt-node{position:absolute;left:12px;top:4px;width:16px;height:16px;border-radius:50%;background:var(--smt-card);border:2.5px solid #C9B68A;}
.smt-itin .smt-card{position:relative;padding-bottom:2px;}
.smt-body{padding:17px 2px;}
.smt-row.is-feat .smt-body{padding:17px 20px;margin:6px 0;border-radius:16px;}
.smt-tagrow{display:flex;align-items:center;gap:9px;margin-bottom:4px;flex-wrap:wrap;}
.smt-tag{font-size:11px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;}
.smt-pill{font-size:10.5px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:#fff;padding:2px 9px;border-radius:999px;}
.smt-title{font-family:'Fredoka',sans-serif;font-weight:500;font-size:22px;color:var(--smt-ink);line-height:1.2;}
.smt-detail{font-size:14.5px;font-weight:600;color:var(--brown-soft);margin-top:5px;}
.smt-divider{height:1px;background:#F2E8CE;margin-left:2px;}
.smt-phase-title{font-family:'Fredoka',sans-serif;font-weight:600;font-size:19px;color:var(--smt-ink);}
.smt-phase-sub{font-size:13.5px;font-weight:600;color:var(--brown-soft);margin-top:1px;}
.smt-note{margin-top:22px;background:#FFF6E4;border:1px solid #F3E2BC;border-left:5px solid #E0A12E;border-radius:18px;padding:18px 24px;display:flex;gap:16px;align-items:baseline;flex-wrap:wrap;}
.smt-note-h{font-family:'Fredoka',sans-serif;font-weight:600;font-size:16px;color:var(--brown);white-space:nowrap;}
.smt-note-t{font-size:14.5px;font-weight:600;color:var(--brown-soft);}

/* Normalize static itinerary time/tag accents to the shared Summit palette. */
.smt-start[style*="#1F8A86"], .smt-tag[style*="#1F8A86"]{color:var(--teal)!important;}
.smt-start[style*="#E5552F"], .smt-tag[style*="#E5552F"]{color:var(--coral)!important;}
.smt-start[style*="#DC9A1F"], .smt-tag[style*="#DC9A1F"]{color:var(--sun)!important;}
.smt-start[style*="#7A6CCB"], .smt-tag[style*="#7A6CCB"]{color:var(--dark-teal)!important;}
.smt-start[style*="#C2497E"], .smt-tag[style*="#C2497E"]{color:var(--coral)!important;}
.smt-start[style*="#3F9E5A"], .smt-tag[style*="#3F9E5A"]{color:var(--teal)!important;}
@media (max-width:640px){
  .smt-wrap{padding:32px 18px 56px;}
  .smt-tabs{gap:8px;}
  .smt-tab{padding:12px 12px;border-radius:16px;}
  .smt-tab-theme,.smt-tab-dow{display:none;}
  .smt-tab-date{align-self:flex-start;margin-top:3px;}
  .smt-panel{padding:20px 16px 16px;border-radius:22px;}
  .smt-dayhead{padding-bottom:16px;}
  .smt-dow,.smt-ddate{font-size:21px;}
  .smt-dtheme{font-size:13px;width:100%;margin-left:0;}
  .smt-row{grid-template-columns:54px 26px 1fr;}
  .smt-time{padding-right:6px;}
  .smt-start{font-size:14.5px;}
  .smt-itin .smt-line{left:12px;}
  .smt-dot{left:6px;width:13px;height:13px;}
  .smt-node{left:5px;width:15px;height:15px;}
  .smt-itin .smt-card{padding-left:4px;}
  .smt-row.is-feat .smt-body{padding:14px;}
  .smt-title{font-size:18.5px;}
  .smt-detail{font-size:13px;}
  .smt-note{flex-direction:column;gap:5px;}
}

/* ===================================================================
   EVENT DETAILS — REDESIGN
   Append to assets/css/summit.css (or @import as a partial).
   Uses the existing Summit '26 :root tokens (--coral, --teal, etc.).
   Fonts (Fredoka, Nunito, "Baloo 2", "Space Mono") are already
   enqueued by the theme for the home hero — no new fonts needed.

   NOTE: Header, footer and .page-hero are untouched by this file.
   =================================================================== */

/* ---- Jump nav ---- */
.ed-jump {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0 0 30px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}
.ed-jump__label {
    font-family: "Space Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--faint);
}
.ed-jump__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.ed-jump a {
    font-family: "Nunito", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    padding: 6px 14px;
    border-radius: 16px;
    border: 1.5px solid var(--border);
    background: rgba(255, 253, 248, .92);
    color: var(--brown-mid);
    text-decoration: none;
    transition: all .15s ease;
}
.ed-jump a:hover { border-color: var(--teal); color: var(--teal); }
.ed-jump a.is-active {
    border-color: transparent;
    background: var(--coral);
    color: #fff;
    box-shadow: 0 6px 14px rgba(232, 85, 64, .3);
}

/* ---- Boarding-pass ticket ---- */
.ed-ticket {
    --ed-accent: var(--coral);
    --ed-accent-tint: var(--coral-tint);
    display: flex;
    flex-wrap: nowrap;
    position: relative;
    margin: 0 0 30px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 22px 46px rgba(120, 90, 40, .18);
    scroll-margin-top: 90px;
}
.ed-ticket--cool {
    --ed-accent: var(--teal);
    --ed-accent-tint: var(--teal-tint);
}
.ed-ticket__body {
    flex: 1 1 auto;
    min-width: 0;
    padding: clamp(26px, 3.4vw, 40px);
}
.ed-ticket__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 2px dashed rgba(74, 59, 46, .18);
}
.ed-ticket__airline {
    font-family: "Space Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--ed-accent);
}
.ed-ticket__code {
    font-family: "Space Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--brown);
    border: 1.5px solid var(--brown);
    border-radius: 6px;
    padding: 4px 9px;
}
.ed-ticket__title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 22px 0 4px;
}
.ed-ticket__title-icon {
    width: 54px;
    height: 54px;
    flex: none;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}
.ed-ticket__title-icon--coral { background: var(--coral-tint); }
.ed-ticket__title-icon--teal { background: var(--teal-tint); }
.ed-ticket__eyebrow {
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--faint);
}
.ed-ticket__title h2 {
    margin: 2px 0 0;
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
    font-size: clamp(30px, 3.6vw, 42px);
    line-height: 1;
    color: var(--brown);
}
.ed-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 30px;
    margin: 22px 0;
    padding: 16px 0;
    border-top: 1.5px solid #f0e6d2;
    border-bottom: 1.5px solid #f0e6d2;
}
.ed-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.ed-field small {
    font-family: "Space Mono", monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--ed-accent);
}
.ed-field strong {
    font-family: "Baloo 2", cursive;
    font-weight: 700;
    font-size: 18px;
    color: var(--brown);
}
.ed-ticket__desc {
    margin: 0 0 22px;
    color: var(--brown-soft);
    font-size: 15px;
    line-height: 1.65;
    font-weight: 600;
}
.ed-expect-label {
    font-family: "Space Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--faint);
}
.ed-expect {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ed-expect li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.ed-expect li span:last-child {
    font-size: 14.5px;
    color: var(--brown-mid);
    font-weight: 600;
    line-height: 1.45;
}
.ed-expect__check {
    margin-top: 2px;
    width: 19px;
    height: 19px;
    flex: none;
    border-radius: 50%;
    background: var(--ed-accent-tint);
    color: var(--ed-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}
.ed-ticket__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

/* ---- Ticket stub ---- */
.ed-stub {
    position: relative;
    flex: 0 0 268px;
    width: 268px;
    display: flex;
    flex-direction: column;
    border-left: 2px dashed rgba(74, 59, 46, .2);
}
.ed-ticket--warm .ed-stub { background: linear-gradient(160deg, #fde0d8, #fbe4cf); }
.ed-ticket--cool .ed-stub { background: linear-gradient(160deg, #cdeee9, #d9efd2); }
.ed-stub__photo {
    position: relative;
    flex: 1 1 auto;
    min-height: 248px;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}
.ed-ticket--warm .ed-stub__photo {
    background: repeating-linear-gradient(135deg, rgba(255,255,255,0) 0 16px, rgba(255,255,255,.28) 16px 18px), linear-gradient(160deg, #fad7cd, #f7dcc4);
}
.ed-ticket--cool .ed-stub__photo {
    background: repeating-linear-gradient(135deg, rgba(255,255,255,0) 0 16px, rgba(255,255,255,.28) 16px 18px), linear-gradient(160deg, #c7ebe5, #d6eccf);
}
.ed-stub__photo img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.ed-stub__tag {
    position: relative;
    z-index: 2;
    font-family: "Space Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #9a6b58;
    background: rgba(255, 255, 255, .72);
    padding: 5px 10px;
    border-radius: 10px;
}
.ed-ticket--cool .ed-stub__tag { color: #3f7d76; }
.ed-stamp {
    position: absolute;
    top: 18px;
    right: 16px;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}
.ed-stamp i {
    font-style: normal;
    font-family: "Space Mono", monospace;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}
.ed-stamp b {
    font-family: "Baloo 2", cursive;
    font-weight: 800;
    font-size: 22px;
    line-height: .9;
    margin: 3px 0;
}
.ed-stamp--warm {
    border: 2.5px dashed rgba(232, 85, 64, .7);
    background: rgba(255, 248, 236, .35);
    color: #c43f29;
    transform: rotate(-12deg);
}
.ed-stamp--cool {
    border: 2.5px dashed rgba(17, 80, 76, .6);
    background: rgba(255, 255, 255, .32);
    color: var(--dark-teal);
    transform: rotate(10deg);
}
.ed-stub__foot {
    padding: 14px 18px 16px;
    background: rgba(255, 255, 255, .55);
    border-top: 2px dashed rgba(74, 59, 46, .18);
}
.ed-stub__gates {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}
.ed-stub__gate--right { text-align: right; }
.ed-stub__gate small {
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #9a8f80;
}
.ed-stub__gate strong {
    font-family: "Baloo 2", cursive;
    font-weight: 700;
    font-size: 18px;
    color: var(--brown);
}
.ed-barcode {
    margin-top: 12px;
    height: 34px;
    border-radius: 4px;
    background: repeating-linear-gradient(90deg, #4a3b2e 0 2px, transparent 2px 4px, #4a3b2e 4px 7px, transparent 7px 9px, #4a3b2e 9px 10px, transparent 10px 13px, #4a3b2e 13px 16px, transparent 16px 18px);
}
.ed-stub__code {
    display: block;
    margin-top: 7px;
    text-align: center;
    font-family: "Space Mono", monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #9a8f80;
}

/* ---- Punched notches (decorative; match page background color) ---- */
.ed-notch {
    position: absolute;
    right: 255px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f4e6cd;
    z-index: 3;
}
.ed-notch--top { top: -13px; }
.ed-notch--bottom { bottom: -13px; }

/* ---- Lookbook ---- */
.ed-lookbook {
    margin: 36px 0 0;
    border-radius: 28px;
    background: var(--panel);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    box-shadow: 0 18px 44px rgba(120, 90, 40, .16);
    padding: clamp(26px, 4vw, 42px);
    scroll-margin-top: 90px;
}
.ed-lookbook__eyebrow {
    font-family: "Space Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--teal);
}
.ed-lookbook__title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 10px 0 4px;
}
.ed-lookbook__title .ed-ticket__title-icon { width: 50px; height: 50px; border-radius: 14px; font-size: 23px; }
.ed-lookbook__title h2 {
    margin: 0;
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
    font-size: clamp(30px, 3.6vw, 42px);
    line-height: 1;
    color: var(--brown);
}
.ed-lookbook__intro {
    margin: 8px 0 28px;
    color: var(--brown-soft);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
}
.ed-lookbook .gallery-label { margin-bottom: 16px; }
.ed-look-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin: 0 0 34px;
}
.ed-look-row:last-child { margin-bottom: 0; }
.ed-look-feature {
    flex: 1 1 270px;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(120, 90, 40, .16);
    align-self: flex-start;
    height: fit-content;
}
.ed-look-feature__img {
    position: relative;
    aspect-ratio: 4 / 5;
    background: #f0e6d2;
}
.ed-look-feature__img img,
.ed-look-tile__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ed-look-pick {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 9px;
    border-radius: 10px;
    background: var(--coral);
    color: #fff;
    font-family: "Space Mono", monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}
.ed-look-pick--teal { background: var(--teal); }
.ed-look-feature figcaption,
.ed-look-tile figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: var(--white);
}
.ed-look-feature figcaption { padding: 13px 16px; }
.ed-look-tile figcaption { padding: 11px 13px; }
.ed-look-feature figcaption span { font-family: "Baloo 2", cursive; font-weight: 700; font-size: 17px; color: var(--brown); }
.ed-look-tile figcaption span { font-family: "Baloo 2", cursive; font-weight: 700; font-size: 14px; color: var(--brown); }
.ed-look-feature figcaption b,
.ed-look-tile figcaption b {
    font-family: "Space Mono", monospace;
    font-size: 9px;
    font-weight: 700;
    color: #9a8f80;
}
.ed-look-grid {
    flex: 1.5 1 340px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    align-content: start;
}
.ed-look-tile {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(120, 90, 40, .14);
}
.ed-look-tile__img {
    aspect-ratio: 4 / 5;
    background: #f0e6d2;
}

/* ---- Responsive ----
   (The theme header already swaps to its own mobile menu via summit.js,
   so only the redesigned content needs breakpoints here.) */
@media (max-width: 840px) {
    .ed-ticket { flex-direction: column; }
    .ed-stub {
        flex-basis: auto;
        width: auto;
        border-left: 0;
        border-top: 2px dashed rgba(74, 59, 46, .2);
    }
    .ed-notch { display: none; }
}
@media (max-width: 720px) {
    .ed-look-row { flex-direction: column; }
}
@media (max-width: 480px) {
    .ed-look-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ACTIVITY TEAM GROUPS
   ============================================================ */

.tb-teams {
    margin-top: 52px;
    scroll-margin-top: 90px;
    background: var(--white);
    border-radius: 24px;
    padding: 36px 32px 32px;
    box-shadow: 0 22px 46px rgba(120, 90, 40, .18);
}

/* ---- Your team badge ---- */
.tb-teams__badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 22px 12px 16px;
    border-radius: 999px;
    background: var(--cream);
    box-shadow: 0 4px 12px rgba(74, 59, 46, .10);
    margin-bottom: 28px;
}
.tb-teams__badge-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--team-accent);
    flex-shrink: 0;
}
.tb-teams__badge-label {
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 10px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--team-accent);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
}
.tb-teams__badge-name {
    display: block;
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--brown);
    line-height: 1.2;
}
.tb-teams__badge-team {
    display: block;
    font-family: "Nunito", sans-serif;
    font-size: 13px;
    color: #8a7d6e;
}

/* ---- Section header ---- */
.tb-teams__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 6px;
}
.tb-teams__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    border-radius: 16px;
    background: rgba(25, 156, 149, .12);
    flex-shrink: 0;
}
.tb-teams__header h2 {
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
    font-size: 26px;
    color: var(--brown);
    margin: 0;
}
.tb-teams__intro {
    font-family: "Nunito", sans-serif;
    font-size: 15px;
    color: #8a7d6e;
    margin: 0 0 24px;
}

/* ---- Search + Filters ---- */
.tb-teams__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}
.tb-teams__search {
    position: relative;
    flex: 1 1 240px;
    max-width: 360px;
}
.tb-teams__search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
    opacity: .5;
}
.tb-teams__search input {
    width: 100%;
    padding: 10px 14px 10px 40px;
    border: 2px solid #e8dcc8;
    border-radius: 12px;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    background: var(--cream);
    color: var(--brown);
    outline: none;
    transition: border-color .2s;
    box-sizing: border-box;
}
.tb-teams__search input:focus {
    border-color: var(--teal);
}
.tb-teams__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.tb-teams__filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border: 2px solid #e8dcc8;
    border-radius: 999px;
    background: var(--cream);
    font-family: "Nunito", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--brown);
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.tb-teams__filter:hover {
    border-color: #d4c8b0;
}
.tb-teams__filter.is-active {
    background: var(--brown);
    color: #fff;
    border-color: var(--brown);
}
.tb-teams__filter.is-active .tb-teams__filter-dot {
    box-shadow: 0 0 0 2px #fff;
}
.tb-teams__filter-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--filter-color);
    flex-shrink: 0;
}

/* ---- Feedback ---- */
.tb-teams__feedback:empty { display: none; }
.tb-teams__nomatch,
.tb-teams__result {
    padding: 10px 16px;
    border-radius: 12px;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    margin-bottom: 16px;
}
.tb-teams__nomatch {
    background: #fff0ed;
    color: #c53a29;
}
.tb-teams__result {
    background: #e8faf8;
    color: #137a73;
}
.tb-teams__result button {
    background: none;
    border: none;
    text-decoration: underline;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 0;
    margin-left: 6px;
}

/* ---- Team card grid ---- */
.tb-teams__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

/* ---- Individual team card ---- */
.tb-card {
    position: relative;
    background: var(--cream);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 4px 14px rgba(120, 90, 40, .08);
    transition: transform .2s, box-shadow .2s;
}
.tb-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(120, 90, 40, .16);
}
.tb-card.is-hidden { display: none; }
.tb-card__ring {
    position: absolute;
    inset: -3px;
    border-radius: 23px;
    border: 3px solid var(--team-accent);
    pointer-events: none;
}
.tb-card__stamp {
    position: absolute;
    top: -10px;
    right: 18px;
    padding: 3px 12px;
    border-radius: 999px;
    background: var(--team-accent);
    color: #fff;
    font-family: "Space Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

/* ---- Card header ---- */
.tb-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.tb-card__dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--team-accent);
    flex-shrink: 0;
}
.tb-card__title {
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--brown);
    margin: 0;
    line-height: 1.2;
}
.tb-card__count {
    font-family: "Nunito", sans-serif;
    font-size: 13px;
    color: #8a7d6e;
}

/* ---- Members list ---- */
.tb-card__members {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.tb-card__member {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px 4px 4px;
    border-radius: 999px;
    background: rgba(74, 59, 46, .06);
    border: 2px solid transparent;
    transition: background .2s, border-color .2s;
}
.tb-card__member.is-you {
    background: color-mix(in srgb, var(--team-accent) 12%, transparent);
    border-color: var(--team-accent);
}
.tb-card__member.is-match {
    background: #fef9c3;
    border-color: #eab308;
}
.tb-card__member-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--team-accent);
    color: #fff;
    font-family: "Space Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tb-card__member-name {
    font-family: "Nunito", sans-serif;
    font-size: 13px;
    color: var(--brown);
    white-space: nowrap;
}
.tb-card__member-badge {
    padding: 1px 6px;
    border-radius: 999px;
    background: var(--team-accent);
    color: #fff;
    font-family: "Space Mono", monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .8px;
}
.tb-card__empty {
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    color: #b0a590;
    font-style: italic;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
    .tb-teams {
        padding: 28px 18px 24px;
        border-radius: 20px;
    }
    .tb-teams__grid {
        grid-template-columns: 1fr;
    }
    .tb-teams__search {
        max-width: 100%;
    }
    .tb-teams__controls {
        flex-direction: column;
        align-items: stretch;
    }
    .tb-teams__filters {
        justify-content: flex-start;
    }
}

/* ============================================================
   ROOMING REDESIGN — "Room Pass" + "Front Desk"
   Append this to assets/css/summit.css (it relies on the
   :root variables already defined at the top of that file).

   It REPLACES the visual role of the old .your-room-card and
   .your-room-section rules — you can delete those, or just
   leave them unused (the new template no longer outputs them).
   Search-result items reuse your existing .room-result-item
   styles, so the search JS needs no changes.
   ============================================================ */

@keyframes roomPassFloat {
    0%, 100% { transform: rotate(-.7deg) translateY(0); }
    50%      { transform: rotate(-.7deg) translateY(-7px); }
}

/* ---- eyebrow ---- */
.room-pass__eyebrow {
    margin: 0 0 16px 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 248, 236, .94);
    box-shadow: 0 8px 20px rgba(74, 59, 46, .18);
    font-family: "Space Mono", monospace;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--brown);
}
.room-pass__eyebrow span {
    display: inline-block;
    width: 22px;
    height: 3px;
    border-radius: 999px;
    background: var(--coral);
}

/* ---- the pass ---- */
.room-pass {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 14px;
    border-radius: 22px;
    box-shadow: 0 30px 60px rgba(74, 59, 46, .28);
    transform: rotate(-.7deg);
    transform-origin: left center;
    animation: roomPassFloat 7s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
    .room-pass { animation: none; }
}

.room-pass__main {
    flex: 1 1 360px;
    padding: clamp(24px, 3.4vw, 34px);
    border-radius: 22px 0 0 22px;
    background: linear-gradient(155deg, #13564f, #0f4641);
}
.room-pass__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 2px dashed rgba(127, 195, 189, .4);
}
.room-pass__airline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Baloo 2", cursive;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: .3px;
    color: #fff8ec;
}
.room-pass__sun {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--sun);
    box-shadow: 0 2px 0 rgba(176, 120, 20, .4);
}
.room-pass__tag {
    padding: 4px 8px;
    border: 1.5px solid rgba(127, 195, 189, .55);
    border-radius: 6px;
    font-family: "Space Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #7fc3bd;
}

.room-pass__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 26px;
    margin-top: 20px;
}
.room-pass__label {
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #7fc3bd;
}
.room-pass__label--party { margin: 24px 0 10px; }
.room-pass__value {
    display: block;
    margin-top: 4px;
    font-family: "Baloo 2", cursive;
    font-weight: 700;
    font-size: 21px;
    line-height: 1;
    color: #fff8ec;
}

.room-pass__party {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.room-pass__chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 6px 16px 6px 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
}
.room-pass__chip--you { background: var(--coral); }
.room-pass__avatar {
    width: 30px;
    height: 30px;
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--teal-tint);
    font-size: 16px;
}
.room-pass__chip--you .room-pass__avatar { background: var(--pink); }
.room-pass__chip-name {
    font-family: "Baloo 2", cursive;
    font-weight: 700;
    font-size: 15px;
    color: #fff8ec;
}
.room-pass__chip-badge {
    padding: 2px 6px;
    border-radius: 6px;
    background: rgba(0, 0, 0, .18);
    color: #fff;
    font-family: "Space Mono", monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.room-pass__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 16px;
    margin-top: 22px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}
.room-pass__footer span {
    font-size: 13px;
    font-weight: 600;
    color: #b6ded9;
}
.room-pass__footer a {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    padding-bottom: 1px;
    border-bottom: 2px solid var(--coral);
}

/* ---- perforation ---- */
.room-pass__perf {
    position: relative;
    width: 0;
    border-left: 2px dashed rgba(74, 59, 46, .22);
}
.room-pass__notch {
    position: absolute;
    left: -13px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    /* matches the sandy page background so the ticket looks torn.
       If your beach bg is darker behind the card, tweak this color. */
    background: var(--cream);
}
.room-pass__notch--a { top: -13px; }
.room-pass__notch--b { bottom: -13px; }

/* ---- stub ---- */
.room-pass__stub {
    flex: 0 0 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(22px, 3vw, 30px) 24px;
    border-radius: 0 22px 22px 0;
    background: #fff8ec;
}
.room-pass__stub-label {
    font-family: "Space Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #9a8f80;
}
.room-pass__stub-number {
    margin-top: 2px;
    font-family: "Baloo 2", cursive;
    font-weight: 800;
    font-size: 84px;
    line-height: .9;
    color: var(--coral);
}
.room-pass__stub-loc {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--brown-soft);
}
.room-pass__barcode {
    width: 116px;
    height: 34px;
    margin-top: 18px;
    background:
        repeating-linear-gradient(90deg,
            var(--brown) 0 2px, transparent 2px 5px,
            var(--brown) 5px 9px, transparent 9px 11px,
            var(--brown) 11px 14px, transparent 14px 18px);
}
.room-pass__stub-code {
    margin-top: 9px;
    font-family: "Space Mono", monospace;
    font-size: 9px;
    letter-spacing: 2px;
    color: #9a8f80;
}

/* ============================================================
   FRONT DESK SEARCH PANEL
   ============================================================ */
.room-search-panel--desk {
    margin-top: 40px;
    padding: 0;            /* head + body manage their own padding */
    overflow: hidden;
}
.room-search-panel__head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px clamp(24px, 3.4vw, 34px);
    background: linear-gradient(155deg, #13564f, #0f4641);
}
.room-search-panel__bell {
    width: 46px;
    height: 46px;
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, .12);
    font-size: 22px;
}
.room-search-panel__eyebrow {
    margin: 0;
    font-family: "Space Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #7fc3bd;
}
.room-search-panel__title {
    margin: 2px 0 0;
    font-family: "Fredoka", sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1;
    color: #fff8ec;
}
.room-search-panel__body { padding: clamp(22px, 3.4vw, 32px); }
.room-search-panel--desk .room-search input {
    width: 100%;
    min-height: 54px;
    box-sizing: border-box;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 0 18px;
    background: var(--white);
    color: var(--brown);
    font: 700 16px "Nunito", sans-serif;
    line-height: 1.2;
    -webkit-appearance: none;
    appearance: none;
}
.room-search-panel--desk .room-search input::placeholder {
    color: #9a8f80;
    opacity: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 760px) {
    .room-pass {
        flex-direction: column;
        transform: none;
        animation: none;
    }
    .room-pass__main { border-radius: 22px 22px 0 0; flex-basis: auto; }
    .room-pass__stub { border-radius: 0 0 22px 22px; flex: 1 1 auto; width: 100%; }
    .room-pass__perf {
        width: 100%;
        align-self: stretch;
        border-left: 0;
        border-top: 2px dashed rgba(74, 59, 46, .22);
    }
    .room-pass__notch--a { top: -13px; left: -13px; }
    .room-pass__notch--b { top: -13px; left: auto; right: -13px; bottom: auto; }
}

@media (max-width: 520px) {
    .room-pass__stub-number { font-size: 68px; }
    .room-search-panel__title { font-size: 24px; }
    .room-search-panel--desk .room-search div { gap: 12px; }
    .room-search-panel--desk .room-search input {
        min-height: 58px;
        padding: 0 16px;
        border-radius: 14px;
    }
}

/* ============================================================
   GUIDELINES REDESIGN - Field Manual
   ============================================================ */
.guidelines-section {
    margin: 0 0 60px;
    scroll-margin-top: 90px;
}
.guidelines-section--packing { margin-bottom: 16px; }
.guidelines-section__header {
    margin: 0 0 26px;
}
.guidelines-section__header::after {
    content: "";
    display: block;
    height: 1.5px;
    margin-top: 18px;
    background: rgba(74, 59, 46, .16);
}
.guidelines-section__title {
    display: flex;
    align-items: flex-end;
    gap: 16px;
}
.guidelines-section__number {
    color: var(--coral);
    font-family: "Fredoka", sans-serif;
    font-size: clamp(46px, 7vw, 82px);
    font-weight: 700;
    line-height: .78;
    text-shadow: 0 2px 8px rgba(255, 250, 240, .9), 0 0 20px rgba(255, 250, 240, .68);
}
.guidelines-section__eyebrow {
    display: block;
    margin-bottom: 6px;
    color: var(--teal);
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    text-shadow: 0 1px 7px rgba(255, 250, 240, .95), 0 0 16px rgba(255, 250, 240, .72);
}
.guidelines-section h2 {
    margin: 0;
    color: var(--brown);
    font-family: "Fredoka", sans-serif;
    font-size: clamp(30px, 5vw, 50px);
    font-weight: 700;
    line-height: .95;
    text-shadow: 0 2px 8px rgba(255, 250, 240, .9), 0 0 20px rgba(255, 250, 240, .62);
}
.guidelines-section--conduct .guidelines-section__number,
.guidelines-section--packing .guidelines-section__eyebrow { color: var(--teal); }
.guidelines-section--conduct .guidelines-section__eyebrow { color: var(--coral); }
.guidelines-section--logistics .guidelines-section__number { color: var(--dark-teal); }
.guidelines-section--packing .guidelines-section__number { color: #c98a1e; }
.guidelines-section--packing .guidelines-section__title {
    flex-wrap: wrap;
}
.guidelines-section--packing .guidelines-section__title > div {
    flex: 1 1 180px;
}

.guidelines-diptych {
    overflow: hidden;
    padding: 4px;
    border-radius: 28px;
    background: var(--dark-teal);
    box-shadow: var(--guidelines-shadow);
}
.guidelines-diptych__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
    gap: 4px;
}
.guidelines-list-panel {
    padding: clamp(24px, 3vw, 38px) clamp(22px, 3vw, 34px);
}
.guidelines-list-panel__eyebrow {
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.guidelines-list-panel h3 {
    margin: 6px 0 16px;
    font-family: "Fredoka", sans-serif;
    font-size: clamp(40px, 5.5vw, 62px);
    font-weight: 700;
    line-height: .9;
}
.guidelines-list-panel ul,
.guidelines-packing-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.guidelines-list-panel li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 11px 0;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.5;
}
.guidelines-check {
    width: 26px;
    height: 26px;
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-family: "Fredoka", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
}
.guidelines-list-panel--do {
    background: var(--white);
}
.guidelines-list-panel--do .guidelines-list-panel__eyebrow,
.guidelines-list-panel--do h3 {
    color: var(--teal);
}
.guidelines-list-panel--do li {
    border-bottom: 1px solid rgba(74, 59, 46, .08);
    color: var(--brown-mid);
}
.guidelines-list-panel--do .guidelines-check {
    background: var(--green);
    color: #2f7d34;
}
.guidelines-list-panel--dont {
    background: var(--deep-coral);
    color: var(--dont-ink);
}
.guidelines-list-panel--dont .guidelines-list-panel__eyebrow,
.guidelines-list-panel--dont .guidelines-check {
    color: var(--dont-highlight);
}
.guidelines-list-panel--dont h3 {
    color: var(--dont-title);
    text-shadow: 0 2px 0 rgba(0, 0, 0, .14);
}
.guidelines-list-panel--dont li {
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}
.guidelines-list-panel--dont .guidelines-check {
    background: rgba(255, 255, 255, .16);
    font-size: 14px;
}

.guidelines-conduct-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    gap: 1.5px;
    overflow: hidden;
    border: 1.5px solid rgba(74, 59, 46, .14);
    border-radius: 20px;
    background: rgba(74, 59, 46, .14);
}
.guidelines-conduct-grid article {
    padding: clamp(26px, 3vw, 34px);
    background: var(--conduct-card);
}
.guidelines-conduct-card__top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.guidelines-conduct-card__top span:last-child {
    color: var(--faint);
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
}
.guidelines-shape {
    flex: none;
    display: inline-block;
}
.guidelines-shape--circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--teal);
}
.guidelines-shape--triangle {
    width: 0;
    height: 0;
    border-right: 17px solid transparent;
    border-bottom: 30px solid var(--sun);
    border-left: 17px solid transparent;
}
.guidelines-shape--diamond {
    width: 24px;
    height: 24px;
    margin: 3px;
    background: var(--deep-green);
    transform: rotate(45deg);
}
.guidelines-conduct-grid h3 {
    margin: 0;
    color: var(--brown);
    font-family: "Fredoka", sans-serif;
    font-size: clamp(22px, 2.6vw, 28px);
    font-weight: 600;
    line-height: 1.05;
}
.guidelines-conduct-grid p {
    margin: 8px 0 0;
    color: var(--brown-soft);
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.55;
}

.guidelines-logistics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
    gap: clamp(28px, 4vw, 48px);
    padding: clamp(28px, 4vw, 46px);
    border-radius: 28px;
    background: var(--dark-teal);
    box-shadow: var(--guidelines-shadow);
    color: var(--mist-teal);
}
.guidelines-logistics__label {
    display: block;
    margin-bottom: 6px;
    color: var(--light-teal);
    font-family: "Space Mono", monospace;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2.5px;
}
.guidelines-logistics h3 {
    margin: 0 0 14px;
    color: #fff;
    font-family: "Fredoka", sans-serif;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 600;
    line-height: 1;
}
.guidelines-logistics__row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.guidelines-logistics__row:last-of-type { border-bottom: 0; }
.guidelines-logistics__row p {
    margin: 0;
    color: var(--mist-teal);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}
.guidelines-bullet {
    width: 8px;
    height: 8px;
    flex: none;
    margin-top: 7px;
    transform: rotate(45deg);
}
.guidelines-bullet--sun { background: var(--sun); }
.guidelines-bullet--teal { background: var(--light-teal); }
.guidelines-pill {
    flex: none;
    display: inline-flex;
    align-items: center;
    margin-top: 1px;
    border-radius: 6px;
    font-family: "Space Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 1.2;
    text-transform: uppercase;
}
.guidelines-pill--mandatory {
    padding: 3px 8px;
    background: var(--sun);
    color: var(--brown);
}
.guidelines-pill--optional {
    padding: 2px 8px;
    border: 1.5px solid rgba(255, 255, 255, .4);
    color: var(--pale-teal);
}
.guidelines-emergency-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 10px 18px;
    border-radius: 22px;
    background: #fff;
    color: var(--dark-teal);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.guidelines-season-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    padding: 7px 13px;
    border: 1.5px solid var(--season-border);
    border-radius: 9px;
    background: var(--amber);
    color: var(--brown);
    font-family: "Space Mono", monospace;
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 1.4px;
    line-height: 1.25;
}
.guidelines-season-tag span {
    width: 10px;
    height: 10px;
    flex: none;
    border-radius: 50%;
    background: var(--sun);
}
.guidelines-packing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    gap: 18px;
}
.guidelines-packing-card {
    --packing-accent: var(--teal);
    --packing-heading: var(--packing-accent);
    --packing-border: #cfe7e4;
    --packing-check-ink: #fff;
    padding: 22px 24px;
    border: 1.5px solid var(--packing-border);
    border-radius: 18px;
    background: var(--white);
}
.guidelines-packing-card--essentials {
    --packing-accent: var(--coral);
    --packing-heading: var(--coral);
    --packing-border: var(--soft-coral-border);
    --packing-check-ink: var(--dont-title);
    border-width: 2px;
}
.guidelines-packing-card--beach {
    --packing-accent: var(--teal);
    --packing-heading: var(--teal);
    --packing-border: #cfe7e4;
}
.guidelines-packing-card--clothing {
    --packing-accent: var(--dark-teal);
    --packing-heading: var(--dark-teal);
    --packing-border: #c9d9d6;
}
.guidelines-packing-card--weather {
    --packing-accent: var(--sun);
    --packing-heading: #c98a1e;
    --packing-border: var(--sand-border);
    --packing-check-ink: var(--brown);
}
.guidelines-packing-card h3 {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 14px;
    color: var(--packing-heading);
    font-family: "Fredoka", sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.1;
}
.guidelines-packing-card h3 span {
    width: 9px;
    height: 9px;
    flex: none;
    border-radius: 50%;
    background: var(--packing-accent);
}
.guidelines-packing-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: var(--brown-mid);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}
.guidelines-packing-card li span {
    width: 16px;
    height: 16px;
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--packing-accent);
    color: var(--packing-check-ink);
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
}

@media (max-width: 520px) {
    .guidelines-section__title { align-items: flex-start; }
    .guidelines-section__number { padding-top: 4px; }
    .guidelines-season-tag { margin-left: 0; }
}


/* ===================================================================
   FLIGHT DETAILS — boarding-pass redesign
   Append to assets/css/summit.css (or enqueue as a separate stylesheet).
   Uses existing theme tokens/fonts: Fredoka, Nunito, Baloo 2, Space Mono
   (all already loaded by the theme — Baloo 2 + Space Mono are used by the
   home hero). No new fonts required.
   =================================================================== */

/* ---- shared ---- */
.bp-eyebrow {
    margin: 0 0 12px 4px;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #199c95;
}

/* ===================== HERO (your boarding pass) ===================== */
.bp-hero {
    display: flex;
    position: relative;
    margin-bottom: 30px;
    border-radius: 24px;
    box-shadow: 0 22px 50px rgba(120, 90, 40, .22);
}
.bp-hero__main {
    flex: 1;
    min-width: 0;
    background: #fffaf0;
    border-radius: 24px 0 0 24px;
    padding: clamp(24px, 3.4vw, 34px);
}
.bp-airline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    padding-bottom: 16px;
    border-bottom: 2px dashed rgba(74, 59, 46, .22);
}
.bp-airline__brand { display: flex; align-items: center; gap: 12px; }
.bp-airline__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #ddf3f1;
    color: #199c95;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.bp-airline__name {
    font-family: "Baloo 2", cursive;
    font-weight: 800;
    font-size: 19px;
    letter-spacing: .5px;
    color: #e85540;
}
.bp-airline__sub {
    margin-top: 2px;
    font-family: "Space Mono", monospace;
    font-size: 10px;
    letter-spacing: 2px;
    color: #8a7d6e;
}
.bp-airline__badge {
    padding: 5px 11px;
    border: 1.5px solid #4a3b2e;
    border-radius: 6px;
    font-family: "Space Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #4a3b2e;
}
.bp-route {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2.5vw, 28px);
    margin: 24px 0;
}
.bp-route__port { flex: none; text-align: center; }
.bp-route__code {
    font-family: "Baloo 2", cursive;
    font-weight: 800;
    font-size: clamp(40px, 5.5vw, 58px);
    line-height: .9;
    color: #11504c;
}
.bp-route__city {
    margin-top: 4px;
    font-family: "Space Mono", monospace;
    font-size: 11px;
    letter-spacing: 1px;
    color: #8a7d6e;
}
.bp-route__line {
    flex: 1;
    min-width: 60px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.bp-route__dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.bp-route__dot--from { background: #e85540; }
.bp-route__dot--to { background: #11504c; }
.bp-route__dash { flex: 1; border-top: 2px dashed #cdbba0; }
.bp-route__plane { font-size: 26px; color: #e85540; }

.bp-legs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}
.bp-leg { background: #fbf2dd; border-radius: 16px; padding: 16px 18px; }
.bp-leg__label {
    font-family: "Space Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e85540;
}
.bp-leg__time {
    margin-top: 7px;
    font-family: "Baloo 2", cursive;
    font-weight: 800;
    font-size: 27px;
    color: #4a3b2e;
}
.bp-leg__time .arr { color: #e85540; }
.bp-leg__route {
    margin-top: 3px;
    font-size: 13px;
    font-weight: 700;
    color: #6b5d4f;
}
.bp-leg__flightno {
    margin-top: 6px;
    font-family: "Space Mono", monospace;
    font-size: 10px;
    letter-spacing: 1px;
    color: #a89a86;
}

.bp-manifest {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 2px dashed rgba(74, 59, 46, .22);
}
.bp-manifest__label {
    font-family: "Space Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #8a7d6e;
}
.bp-pax {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px 5px 5px;
    border: 1.5px solid #efe2c8;
    border-radius: 999px;
    background: #fff;
}
.bp-pax__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #11504c;
    color: #fff;
    font-family: "Space Mono", monospace;
    font-size: 11px;
    font-weight: 700;
}
.bp-pax__name { font-size: 14px; font-weight: 700; color: #4a3b2e; }
.bp-lead {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #ddf3f1;
    color: #199c95;
    font-family: "Space Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* perforation + notches (the "tear" seam) */
.bp-perf {
    position: relative;
    width: 0;
    border-left: 2.5px dashed rgba(255, 255, 255, .45);
}
.bp-perf__notch {
    position: absolute;
    left: -14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f7ecd6; /* must match page background to read as a cut-out */
}
.bp-perf__notch--top { top: -14px; }
.bp-perf__notch--bottom { bottom: -14px; }

.bp-hero__stub {
    width: clamp(180px, 22vw, 240px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: clamp(22px, 2.6vw, 30px) clamp(20px, 2.2vw, 26px);
    border-radius: 0 24px 24px 0;
    background: #11504c;
}
.bp-stub__label {
    font-family: "Space Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #7fc3bd;
}
.bp-stub__team {
    margin-top: 6px;
    font-family: "Baloo 2", cursive;
    font-weight: 800;
    font-size: clamp(30px, 3.4vw, 40px);
    line-height: .95;
    color: #fff;
}
.bp-stub__lead {
    margin-top: 6px;
    font-family: "Space Mono", monospace;
    font-size: 11px;
    color: #9fd3ce;
}
.bp-stub__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 12px; }
.bp-stub__field-label {
    font-family: "Space Mono", monospace;
    font-size: 9px;
    letter-spacing: 2px;
    color: #7fc3bd;
}
.bp-stub__field-value {
    margin-top: 3px;
    font-family: "Space Mono", monospace;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}
.bp-stub__barcode {
    height: 48px;
    border-radius: 6px;
    background: repeating-linear-gradient(90deg, #fff 0 2px, transparent 2px 4px, #fff 4px 5px, transparent 5px 8px, #fff 8px 11px, transparent 11px 12px, #fff 12px 15px, transparent 15px 17px);
}
.bp-stub__code {
    margin-top: 8px;
    text-align: center;
    font-family: "Space Mono", monospace;
    font-size: 9px;
    letter-spacing: 3px;
    color: #7fc3bd;
}

/* ---- placeholder note ---- */
.bp-note {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding: 14px 20px;
    border-left: 4px solid #f6b73c;
    border-radius: 16px;
    background: #fdf6e6;
}
.bp-note__tag {
    font-family: "Space Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #c98a1e;
}
.bp-note p { margin: 0; font-size: 14px; font-weight: 600; line-height: 1.5; color: #6b5d4f; }

/* ---- section heading ---- */
.bp-section-head {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin-bottom: 18px;
}
.bp-section-head h2 {
    margin: 0;
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
    font-size: clamp(28px, 4vw, 38px);
    color: #4a3b2e;
}
.bp-section-head span {
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    color: #8a7d6e;
}

/* ===================== FIND YOUR FLIGHT (search) ===================== */
.flight-search {
    margin-bottom: 24px;
    padding: clamp(20px, 3vw, 28px);
    border-radius: 20px;
    background: #fffaf0;
    box-shadow: 0 14px 32px rgba(120, 90, 40, .14);
}
.flight-search__eyebrow {
    font-family: "Space Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #199c95;
}
.flight-search__title {
    margin-top: 4px;
    font-family: "Fredoka", sans-serif;
    font-weight: 500;
    font-size: clamp(22px, 3vw, 28px);
    color: #4a3b2e;
}
.flight-search__row { display: flex; gap: 10px; margin-top: 16px; }
.flight-search__field { position: relative; flex: 1; min-width: 0; }
.flight-search__icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 17px;
    opacity: .6;
    pointer-events: none;
}
.flight-search__input {
    width: 100%;
    height: 54px;
    padding: 0 18px 0 46px;
    border: 1.5px solid #e3d4bd;
    border-radius: 16px;
    background: #fff;
    color: #4a3b2e;
    font: 700 15px "Nunito", sans-serif;
    outline: none;
}
.flight-search__input:focus { border-color: #199c95; }
.flight-search__button {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 54px;
    padding: 0 30px;
    border: 0;
    border-radius: 16px;
    background: #e85540;
    color: #fff;
    box-shadow: 0 8px 18px rgba(232, 85, 64, .34);
    font: 800 16px "Nunito", sans-serif;
    cursor: pointer;
}
.flight-search__hint { margin-top: 12px; font-size: 13px; font-weight: 600; color: #8a7d6e; }
.flight-search__feedback:empty { display: none; }
.flight-search__feedback { margin-top: 14px; }
.flight-search__result {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #199c95;
}
.flight-search__result button,
.flight-search__nomatch a {
    border: 0;
    background: none;
    padding: 0;
    color: #e85540;
    font: 700 14px "Nunito", sans-serif;
    text-decoration: underline;
    cursor: pointer;
}
.flight-search__nomatch { font-size: 14px; font-weight: 600; color: #c2502f; }

/* ===================== TEAM GRID (mini boarding passes) ===================== */
.bp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(440px, 100%), 1fr));
    gap: 22px;
}
.bp-card {
    position: relative;
    display: flex;
    border-radius: 20px;
    box-shadow: 0 14px 32px rgba(120, 90, 40, .16);
}
.bp-card.is-hidden { display: none; }
.bp-card__ring {
    position: absolute;
    inset: -3px;
    border: 3px solid #e85540;
    border-radius: 22px;
    pointer-events: none;
    z-index: 4;
}
.bp-card__stamp {
    position: absolute;
    top: -12px;
    left: 20px;
    z-index: 5;
    padding: 4px 11px;
    border-radius: 999px;
    background: #e85540;
    color: #fff;
    font-family: "Space Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}
.bp-card__main {
    flex: 1;
    min-width: 0;
    padding: 24px 26px;
    border-radius: 20px 0 0 20px;
    background: #fffaf0;
}
.bp-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.bp-card__title-wrap { display: flex; align-items: center; gap: 11px; }
.bp-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #ddf3f1;
    color: #199c95;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.bp-card__title {
    font-family: "Fredoka", sans-serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 1;
    color: #4a3b2e;
}
.bp-card__sub { margin-top: 2px; font-size: 12px; font-weight: 700; color: #8a7d6e; }
.bp-card__route { display: flex; align-items: center; gap: 12px; margin: 18px 0; }
.bp-card__code { font-family: "Baloo 2", cursive; font-weight: 800; font-size: 24px; color: #11504c; }
.bp-card__dash { flex: 1; border-top: 2px dashed #cdbba0; }
.bp-card__plane { font-size: 16px; color: #e85540; }
.bp-card__legs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
    gap: 12px;
}
.bp-card__leg { padding: 13px 15px; border-radius: 14px; background: #fbf2dd; }
.bp-card__leg-label {
    font-family: "Space Mono", monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #e85540;
}
.bp-card__leg-time {
    margin-top: 5px;
    font-family: "Baloo 2", cursive;
    font-weight: 700;
    font-size: 19px;
    color: #4a3b2e;
}
.bp-card__leg-route { margin-top: 2px; font-size: 12px; font-weight: 700; color: #6b5d4f; }
.bp-card__lead { margin-top: 16px; }
.bp-card__pax-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.bp-card__pax {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 4px 12px 4px 4px;
    border: 1.5px solid #efe2c8;
    border-radius: 999px;
    background: #fff;
}
.bp-card__pax-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #11504c;
    color: #fff;
    font-family: "Space Mono", monospace;
    font-size: 10px;
    font-weight: 700;
}
.bp-card__pax-name { font-size: 13px; font-weight: 700; color: #4a3b2e; }
/* search highlight on a matched passenger */
.bp-card__pax.is-match { border-color: #e85540; background: #fde6e0; }
.bp-card__pax.is-match .bp-card__pax-avatar { background: #e85540; }

.bp-card__perf {
    position: relative;
    width: 0;
    border-left: 2px dashed rgba(255, 255, 255, .4);
}
.bp-card__perf-notch {
    position: absolute;
    left: -11px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f7ecd6;
}
.bp-card__perf-notch--top { top: -11px; }
.bp-card__perf-notch--bottom { bottom: -11px; }
.bp-card__stub {
    width: 64px;
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-radius: 0 20px 20px 0;
    background: #11504c;
}
.bp-card__stub-team {
    font-family: "Baloo 2", cursive;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 1px;
    color: #fff;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}
.bp-card__stub-bar {
    width: 22px;
    flex: 1;
    margin: 14px 0;
    border-radius: 4px;
    background: repeating-linear-gradient(0deg, #fff 0 2px, transparent 2px 4px, #fff 4px 5px, transparent 5px 8px, #fff 8px 10px, transparent 10px 12px);
}
.bp-card__stub-pax {
    font-family: "Space Mono", monospace;
    font-size: 9px;
    letter-spacing: 1px;
    color: #7fc3bd;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 760px) {
    .bp-hero { flex-direction: column; }
    .bp-hero__main { border-radius: 24px 24px 0 0; }
    .bp-hero__stub { width: auto; border-radius: 0 0 24px 24px; }
    .bp-perf {
        width: auto;
        height: 0;
        border-left: none;
        border-top: 2.5px dashed rgba(74, 59, 46, .32);
    }
    .bp-perf__notch--top { top: -14px; left: -14px; bottom: auto; }
    .bp-perf__notch--bottom { top: -14px; left: auto; right: -14px; bottom: auto; }
}
@media (max-width: 560px) {
    .flight-search__row { flex-direction: column; }
    .flight-search__button { width: 100%; }
}

/* ============================================================
   TRIP JOURNAL ITINERARY  — Summit '26 redesign
   Scoped under .tj (added alongside the existing .smt-itin wrapper).
   Append this to assets/css/summit.css, OR enqueue as its own file.
   The page title (.smt-h1), top nav, and footer are left untouched.

   Fonts used: Fredoka, Nunito Sans (already in the theme) +
   Caveat, Space Mono (loaded through the theme font enqueue).
   ============================================================ */

.tj{
  --tj-accent:#e85540;          /* coral — active tab, timeline rail, date stamp */
  --tj-paper:#FFFDF6;
  --tj-ink:#4a3b2e;
  --tj-soft:#6b5d4f;
  --tj-faint:#8a7d6e;
  --tj-border:#EADFC0;
  --c:#4a3b2e;                  /* per-row category colour (overridden below) */
  font-family:'Nunito Sans',system-ui,sans-serif;
  color:var(--tj-ink);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}
.tj *{box-sizing:border-box;}
.tj h1,.tj h2,.tj h3,.tj p{margin:0;}

.smt-itin.tj .smt-h1{margin-bottom:14px;}

/* handwritten "pick a page" cue above the tabs */
.tj-pick{
  display:inline-block;font-family:'Caveat',cursive;font-weight:700;font-size:30px;
  color:#11504c;margin:0 0 8px 6px;transform:rotate(-1deg);
  text-shadow:0 1px 2px rgba(255,253,246,.9);
}

/* ---- calendar day tabs ---- */
.tj-tabs{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;position:relative;z-index:2;}
.tj-tab{
  cursor:pointer;text-align:left;font:inherit;display:flex;flex-direction:column;
  border:1.5px solid var(--tj-border);background:#FBF5E6;border-radius:16px;padding:14px 16px;
  box-shadow:0 8px 16px -14px rgba(120,90,40,.55);transition:transform .15s,box-shadow .15s;
}
.tj-tab:hover{transform:translateY(-2px);}
.tj-tab-bar{height:5px;border-radius:6px;margin-bottom:11px;background:#E2D4B6;}
.tj-tab-top{display:flex;align-items:baseline;justify-content:space-between;gap:8px;}
.tj-tab-label{font-family:'Fredoka',sans-serif;font-weight:600;font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:#b3a892;}
.tj-tab-date{font-family:'Space Mono',monospace;font-size:11px;font-weight:700;color:#b3a892;}
.tj-tab-theme{font-family:'Fredoka',sans-serif;font-weight:600;font-size:clamp(16px,2.3vw,20px);line-height:1.05;margin-top:8px;color:#9a8f80;}
.tj-tab-dow{font-family:'Caveat',cursive;font-weight:600;font-size:20px;line-height:1;margin-top:2px;color:#b3a892;}
.tj-tab.is-active{
  border-color:var(--tj-accent);background:var(--tj-paper);transform:translateY(-3px);
  box-shadow:0 18px 30px -20px color-mix(in srgb,var(--tj-accent) 70%,transparent);
}
.tj-tab.is-active .tj-tab-bar{background:var(--tj-accent);}
.tj-tab.is-active .tj-tab-label{color:var(--tj-accent);}
.tj-tab.is-active .tj-tab-date{color:var(--tj-soft);}
.tj-tab.is-active .tj-tab-theme{color:var(--tj-ink);}
.tj-tab.is-active .tj-tab-dow{color:#199c95;}

/* ---- notebook shell ---- */
.tj-book{
  position:relative;margin-top:16px;background:var(--tj-paper);
  border:1px solid var(--tj-border);border-radius:5px 5px 24px 24px;
  box-shadow:0 30px 64px -34px rgba(120,90,40,.6);
}
.tj-binding{
  height:26px;border-radius:5px 5px 0 0;border-bottom:1px solid #E7DBB8;
  background-color:#F2E8CF;background-position:center;background-size:42px 26px;
  background-image:radial-gradient(circle,#d6c59c 0 3.5px,rgba(0,0,0,0) 4.6px);
}

.tj-day{display:none;}
.tj-day.is-active{display:block;}

/* ---- day header ---- */
.tj-dayhead{position:relative;padding:30px clamp(22px,4vw,40px) 24px;border-bottom:1px dashed #E3D4B5;overflow:hidden;}
.tj-dayhead::before{               /* teal washi-tape accent */
  content:"";position:absolute;top:-9px;left:clamp(40px,12vw,90px);width:128px;height:26px;transform:rotate(-4deg);
  background:repeating-linear-gradient(45deg,rgba(25,156,149,.5) 0 8px,rgba(25,156,149,.26) 8px 16px);
  box-shadow:0 6px 12px -8px rgba(25,156,149,.6);
}
.tj-dayhead-row{display:flex;align-items:flex-start;justify-content:space-between;gap:24px;flex-wrap:wrap;}
.tj-dayhead-main{flex:1 1 260px;min-width:240px;}
.tj-dayhead-top{display:flex;align-items:center;gap:16px;flex-wrap:wrap;}
.tj-dow{font-family:'Fredoka',sans-serif;font-weight:700;font-size:clamp(34px,5.5vw,48px);line-height:1;color:var(--tj-ink);}
.tj-stamp{
  display:flex;flex-direction:column;align-items:center;justify-content:center;width:78px;height:78px;flex:none;
  border-radius:50%;border:2.5px dashed var(--tj-accent);color:var(--tj-accent);transform:rotate(-8deg);
}
.tj-stamp-m{font-family:'Space Mono',monospace;font-size:9px;letter-spacing:2px;font-weight:700;}
.tj-stamp-d{font-family:'Fredoka',sans-serif;font-weight:700;font-size:30px;line-height:.85;}
.tj-stamp-y{font-family:'Space Mono',monospace;font-size:8px;letter-spacing:2px;}
.tj-theme{font-family:'Caveat',cursive;font-weight:600;font-size:clamp(26px,4vw,34px);line-height:1;color:#11504c;margin-top:14px;transform:rotate(-1deg);}
.tj-span{font-family:'Space Mono',monospace;font-size:11px;letter-spacing:1px;color:#9a8f80;margin-top:14px;}

/* pinned polaroid — replace .tj-photo with a real <img class="tj-photo" src="…"> per day */
.tj-polaroid{flex:0 0 auto;transform:rotate(2.6deg);background:#fff;padding:8px 8px 26px;border:1px solid #efe6cf;box-shadow:0 16px 32px -16px rgba(120,90,40,.65);}
.tj-photo{display:block;width:158px;height:118px;object-fit:cover;background:#F2E8CF;}
.tj-polaroid-cap{font-family:'Caveat',cursive;font-weight:600;font-size:18px;color:var(--tj-soft);text-align:center;margin-top:8px;}

/* ---- phases & entries ---- */
.tj-phases{padding:8px clamp(22px,4vw,40px) 36px;}
.tj-phase{display:flex;align-items:center;gap:14px;flex-wrap:wrap;margin:30px 0 8px;}
.tj-phase-tape{        /* amber washi-tape label */
  font-family:'Fredoka',sans-serif;font-weight:600;font-size:13px;letter-spacing:.14em;text-transform:uppercase;color:var(--tj-ink);
  background:repeating-linear-gradient(45deg,rgba(246,183,60,.52) 0 8px,rgba(246,183,60,.26) 8px 16px);
  padding:7px 16px;border-radius:3px;transform:rotate(-1deg);box-shadow:0 7px 14px -9px rgba(120,90,40,.55);
}
.tj-phase-sub{font-family:'Caveat',cursive;font-weight:600;font-size:22px;color:var(--tj-faint);}

.tj-entries{position:relative;}
.tj-row{display:grid;grid-template-columns:86px 26px 1fr;align-items:stretch;padding:15px 0;border-bottom:1px dashed #ECE0C4;}
.tj-time{text-align:right;padding:3px 10px 0 0;}
.tj-start{font-family:'Space Mono',monospace;font-weight:700;font-size:15px;color:var(--tj-ink);}
.tj-end{font-family:'Space Mono',monospace;font-size:11px;color:#b1a486;margin-top:2px;}

.tj-rail{position:relative;display:flex;justify-content:center;padding-top:7px;}
.tj-line{position:absolute;left:50%;top:0;bottom:0;width:2px;transform:translateX(-50%);border-radius:2px;z-index:0;background:color-mix(in srgb,var(--tj-accent) 50%,transparent);}
.tj-dot{position:relative;z-index:1;width:13px;height:13px;border-radius:50%;border:2.5px solid var(--tj-paper);background:var(--c);box-shadow:0 0 0 1px color-mix(in srgb,var(--c) 22%,transparent);}

.tj-tagrow{display:flex;align-items:center;gap:10px;flex-wrap:wrap;}
.tj-tag{font-family:'Fredoka',sans-serif;font-weight:600;font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--c);}
.tj-title{font-family:'Fredoka',sans-serif;font-weight:600;font-size:22px;line-height:1.12;color:var(--tj-ink);margin-top:5px;}
.tj-note{font-family:'Caveat',cursive;font-weight:600;font-size:20px;line-height:1.1;color:var(--tj-soft);margin-top:4px;}

/* ---- spotlight events (taped index card) ---- */
.tj-row.is-spotlight .tj-content{
  position:relative;border-radius:14px;padding:15px 18px;margin-top:2px;
  background:color-mix(in srgb,var(--c) 10%,transparent);
  border:1.5px solid color-mix(in srgb,var(--c) 34%,transparent);
}
.tj-row.is-spotlight .tj-content::before{   /* little tape strip */
  content:"";position:absolute;top:-9px;left:26px;width:74px;height:18px;transform:rotate(-3deg);
  background:repeating-linear-gradient(45deg,rgba(255,255,255,.7) 0 6px,rgba(255,255,255,.4) 6px 12px);
  box-shadow:0 4px 10px -6px rgba(120,90,40,.5);
}
.tj-row.is-spotlight .tj-title{font-size:24px;}
.tj-chip{display:inline-flex;align-items:center;gap:4px;font-family:'Fredoka',sans-serif;font-weight:600;font-size:10px;letter-spacing:.08em;text-transform:uppercase;color:#fff;background:var(--c);padding:3px 10px;border-radius:999px;}

/* ---- category colours ---- */
.tj-cat--travel   {--c:#1F8A86;}
.tj-cat--free     {--c:#DC9A1F;}
.tj-cat--dining   {--c:#E5552F;}
.tj-cat--logistics{--c:#7A6CCB;}
.tj-cat--program  {--c:#C2497E;}
.tj-cat--activity {--c:#3F9E5A;}

/* ---- responsive ---- */
@media (max-width:620px){
  .tj-tabs{grid-template-columns:1fr;}
}
@media (max-width:560px){
  .tj-row{grid-template-columns:56px 20px 1fr;}
  .tj-start{font-size:13px;}
  .tj-end{font-size:10px;}
}

/* ===================================================================
   ACTIVITY TEAM GROUPS - redesigned (beach-games team banners)
   =================================================================== */

.tg {
    scroll-margin-top: 84px;
    margin-bottom: 26px;
    padding: clamp(22px, 4vw, 40px);
    border-radius: 28px;
    border: 1px solid rgba(227, 212, 189, .55);
    background: rgba(255, 251, 242, .94);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    box-shadow: 0 18px 46px rgba(120, 90, 40, .18);
}
.tg__header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 8px; }
.tg__icon {
    width: 54px; height: 54px; flex: none;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 16px; background: var(--dark-teal); color: #fff; font-size: 27px;
    box-shadow: 0 8px 18px rgba(17, 80, 76, .32);
    animation: bob 4s ease-in-out infinite;
}
.tg__title {
    margin: 2px 0 0; color: var(--brown);
    font-family: "Fredoka", sans-serif; font-weight: 500;
    font-size: clamp(32px, 5vw, 42px); line-height: 1;
}
.tg__intro {
    margin: 0 0 22px; max-width: 62ch; color: var(--brown-soft);
    font-size: 15px; font-weight: 700; line-height: 1.55;
}

/* ---- Your-team spotlight ---- */
.tg-hero {
    position: relative; overflow: hidden;
    display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px;
    margin-bottom: 22px; padding: 22px 24px;
    border-radius: 22px; color: #fff;
    background: linear-gradient(120deg, var(--team-accent), color-mix(in srgb, var(--team-accent) 72%, #000));
    box-shadow: 0 16px 38px color-mix(in srgb, var(--team-accent) 40%, transparent);
}
.tg-hero::before {
    content: ""; position: absolute; top: -46px; right: -30px;
    width: 180px; height: 180px; border-radius: 50%; background: rgba(255, 255, 255, .13);
}
.tg-hero__main { position: relative; z-index: 1; flex: 1 1 240px; }
.tg-hero__label {
    display: block; margin-bottom: 6px;
    font-size: 12px; font-weight: 900; letter-spacing: 2.4px; color: rgba(255, 255, 255, .82);
}
.tg-hero__id { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 6px; }
.tg-hero__id strong {
    color: #fff; font-family: "Fredoka", sans-serif; font-weight: 500;
    font-size: 32px; line-height: 1;
}
.tg-hero__role {
    display: inline-flex; align-items: center; padding: 5px 13px; border-radius: 999px;
    background: rgba(255, 255, 255, .92); color: color-mix(in srgb, var(--team-accent) 78%, #000);
    font-size: 12px; font-weight: 900; letter-spacing: .6px;
}
.tg-hero__meta { display: block; color: rgba(255, 255, 255, .92); font-size: 14px; font-weight: 800; }
.tg-hero__avatars { position: relative; z-index: 1; display: flex; align-items: center; }
.tg-hero__avatar {
    width: 42px; height: 42px; margin-left: -13px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(255, 255, 255, .2); border: 2px solid rgba(255, 255, 255, .65);
    color: #fff; font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 14px;
}
.tg-hero__avatar:first-child { margin-left: 0; }
.tg-hero__avatar--more { background: rgba(255, 255, 255, .92); color: color-mix(in srgb, var(--team-accent) 78%, #000); }

/* ---- Controls ---- */
.tg-controls { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 14px; }
.tg-search { position: relative; flex: 1 1 100%; }
.tg-search__icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); font-size: 15px; pointer-events: none; }
.tg-search input {
    width: 100%; height: 46px; padding: 0 16px 0 40px;
    border-radius: 999px; border: 2px solid var(--border); background: var(--white);
    color: var(--brown); font-family: "Nunito", sans-serif; font-weight: 700; font-size: 15px;
}
.tg-search input::placeholder { color: #ad9e88; font-weight: 700; }
.tg-search input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(25, 156, 149, .14); }
.tg-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.tg-filter {
    display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px;
    border-radius: 999px; border: 2px solid var(--border); background: var(--white);
    color: var(--brown-mid); font-family: "Nunito", sans-serif; font-weight: 800; font-size: 14px;
    cursor: pointer; transition: all .15s ease;
}
.tg-filter__dot { width: 10px; height: 10px; flex: none; border-radius: 50%; background: var(--team-accent); }
.tg-filter:hover { border-color: color-mix(in srgb, var(--team-accent, #199c95) 55%, var(--border)); }
.tg-filter.is-active {
    color: #fff; background: var(--team-accent); border-color: var(--team-accent);
    box-shadow: 0 6px 14px color-mix(in srgb, var(--team-accent) 45%, transparent);
}
.tg-filter[data-team-filter="all"].is-active { background: var(--brown); border-color: var(--brown); box-shadow: 0 6px 14px rgba(74, 59, 46, .3); }

.tg-feedback {
    display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px;
    padding: 7px 15px; border-radius: 999px; background: var(--teal-tint); color: var(--dark-teal);
    font-size: 13px; font-weight: 800;
}
.tg-feedback[hidden] { display: none; }

/* ---- Team cards ---- */
.tg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(296px, 1fr)); gap: 18px; }
.tg-card {
    position: relative; overflow: hidden; display: flex; flex-direction: column;
    border-radius: 22px; border: 1px solid #efe2cb; background: var(--white);
    box-shadow: 0 12px 28px rgba(120, 90, 40, .15);
}
.tg-card.is-current { border: 2.5px solid var(--coral); box-shadow: 0 16px 38px rgba(232, 85, 64, .22); }
.tg-card.is-hidden { display: none; }
.tg-card__badge {
    position: absolute; top: 13px; right: 13px; z-index: 3;
    display: inline-flex; align-items: center; gap: 5px; padding: 5px 11px;
    border-radius: 999px; background: #fff; color: var(--coral);
    font-size: 10px; font-weight: 900; letter-spacing: 1.2px; box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
}
.tg-card__band {
    position: relative; overflow: hidden;
    display: flex; align-items: center; gap: 13px; padding: 17px 20px; color: #fff;
    background: linear-gradient(135deg, var(--team-accent), color-mix(in srgb, var(--team-accent) 78%, #000));
}
.tg-card__band::after {
    content: ""; position: absolute; top: -24px; right: -14px;
    width: 96px; height: 96px; border-radius: 50%; background: rgba(255, 255, 255, .15);
}
.tg-card__flag, .tg-card__name, .tg-card__count { position: relative; z-index: 1; }
.tg-card__name { color: #fff; font-family: "Fredoka", sans-serif; font-weight: 500; font-size: 24px; line-height: 1; }
.tg-card__count {
    margin-left: auto; flex: none; display: inline-flex; align-items: center; padding: 5px 11px;
    border-radius: 999px; background: rgba(255, 255, 255, .94);
    color: color-mix(in srgb, var(--team-accent) 80%, #000); font-weight: 900; font-size: 12px;
}
.tg-card__captain {
    display: flex; align-items: center; gap: 11px; margin: 14px 14px 0; padding: 10px 12px;
    border-radius: 14px; background: color-mix(in srgb, var(--team-accent) 13%, #fffdf8);
}
.tg-card__captain-id { display: flex; flex-direction: column; gap: 1px; }
.tg-card__captain-label { font-size: 10px; font-weight: 900; letter-spacing: 1.4px; color: var(--faint); }
.tg-card__captain-id strong { font-size: 15px; font-weight: 800; color: var(--brown); }
.tg-card__avatar {
    width: 38px; height: 38px; flex: none;
    display: inline-flex; align-items: center; justify-content: center; border-radius: 50%;
    background: var(--team-accent); color: #fff; font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 14px;
    box-shadow: 0 3px 8px color-mix(in srgb, var(--team-accent) 45%, transparent);
}
.tg-card__roster { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px 14px; }
.tg-card__member { display: flex; align-items: center; gap: 10px; padding: 7px 10px; border-radius: 13px; transition: background .15s ease; }
.tg-card__member-name { flex: 1; color: var(--brown); font-size: 14px; font-weight: 700; }
.tg-card__member.is-you { background: color-mix(in srgb, var(--team-accent) 13%, #fffdf8); }
.tg-card__member.is-match,
.tg-card__captain.is-match { background: #fdf2c8; box-shadow: inset 0 0 0 2px #e0a92a; }
.tg-card__you {
    flex: none; padding: 2px 8px; border-radius: 999px; background: var(--coral); color: #fff;
    font-size: 9px; font-weight: 900; letter-spacing: .6px;
}
.tg-card__empty { margin: 0; padding: 10px 12px; color: var(--faint); font-weight: 700; }

/* ---- Empty / no-results ---- */
.tg-noresults { text-align: center; padding: 46px 20px; border-radius: 22px; border: 2px dashed var(--border); background: var(--white); }
.tg-noresults[hidden] { display: none; }
.tg-noresults__emoji { font-size: 38px; margin-bottom: 8px; }
.tg-noresults strong { display: block; margin-bottom: 4px; color: var(--brown); font-family: "Fredoka", sans-serif; font-weight: 500; font-size: 22px; }
.tg-noresults p { margin: 0 0 16px; color: var(--brown-soft); font-weight: 700; }
.tg-noresults button {
    display: inline-flex; align-items: center; height: 42px; padding: 0 22px;
    border: 0; border-radius: 999px; background: var(--teal); color: #fff;
    font-family: "Nunito", sans-serif; font-weight: 900; font-size: 14px; cursor: pointer;
}

@media (max-width: 540px) {
    .tg__title { font-size: 30px; }
    .tg-hero__id strong { font-size: 26px; }
}
