/* ==========================================================
   Vacation With Me
   Main stylesheet
   ----------------------------------------------------------
   01 Tokens
   02 Base
   03 Typography
   04 Layout
   05 Buttons + links
   06 Header + primary nav
   07 Mega menu
   08 Travel stamps
   09 Dialogs + mobile menu
   10 Hero
   11 Introduction
   12 Host intro card
   13 Listing + guidebook cards
   14 Homepage sections
   15 Page heroes
   16 Guidebooks page
   17 About page
   18 Contact page + form
   19 404
   20 Footer
   21 Floating contact + drawer
   22 Utilities + motion
   ========================================================== */


/* ==========================================================
   01 Tokens
   ========================================================== */

:root {
    /* Brand */
    --teal: #084B51;
    --turquoise: #0E9BA4;
    --aqua: #7FD1C7;
    --gold: #F4C048;
    --coral: #F56B6B;
    --sand: #F3EDE4;

    --white: #FFFFFF;
    --off-white: #FAF8F4;
    --text: #163E43;
    --gray: #6F747B;

    /* Supporting tints */
    --teal-hover: #0A5C63;
    --turquoise-text: #0B7F87;
    --coral-text: #B9403F;
    --gold-text: #9A7110;
    --sand-pale: #F7F2EA;
    --aqua-pale: #EAF6F3;
    --coral-pale: #FDEDEB;
    --gold-pale: #FDF4DC;
    --teal-pale: #E6F0F1;
    --line: #E7DFD3;
    --line-soft: #EFEAE2;
    --line-strong: #DCD2C4;

    /* Type */
    --font-sans: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;

    --fs-2xs: 0.6875rem;
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.0625rem;
    --fs-lead: clamp(1.125rem, 1.05rem + 0.35vw, 1.3125rem);
    --fs-h3: clamp(1.25rem, 1.15rem + 0.4vw, 1.5rem);
    --fs-h2: clamp(1.875rem, 1.45rem + 1.7vw, 2.875rem);
    --fs-display-sm: clamp(1.875rem, 1.5rem + 1.6vw, 2.75rem);
    --fs-display-md: clamp(2.25rem, 1.6rem + 2.8vw, 4rem);
    --fs-display: clamp(3rem, 1.9rem + 4.8vw, 6rem);

    --tracking-eyebrow: 0.22em;
    --tracking-caps: 0.14em;

    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;
    --space-9: 96px;

    --gutter: clamp(20px, 4vw, 48px);
    --section-y: clamp(72px, 4rem + 5vw, 144px);
    --max-width: 1400px;
    --max-wide: 1600px;
    --max-narrow: 880px;

    /* Shape */
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 999px;

    --shadow-soft: 0 18px 40px -30px rgba(8, 75, 81, 0.35);
    --shadow-card: 0 30px 70px -48px rgba(8, 75, 81, 0.45), 0 2px 8px rgba(8, 75, 81, 0.04);
    --shadow-float: 0 40px 80px -30px rgba(8, 75, 81, 0.38), 0 12px 28px -12px rgba(8, 75, 81, 0.16);

    /* Motion */
    --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
    --dur-fast: 160ms;
    --dur: 230ms;
    --dur-slow: 320ms;

    /* Header */
    --header-h: 90px;
}

@media (max-width: 1023px) {
    :root {
        --header-h: 72px;
    }
}


/* ==========================================================
   02 Base
   ========================================================== */

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

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-padding-top: calc(var(--header-h) + 24px);
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    font-weight: 400;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

img {
    height: auto;
}

picture {
    display: contents;
}

a {
    color: inherit;
}

p {
    margin: 0 0 1em;
}

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

button {
    cursor: pointer;
}

[hidden] {
    display: none !important;
}

:focus-visible {
    outline: 2px solid var(--turquoise);
    outline-offset: 3px;
}

main:focus {
    outline: none;
}

::selection {
    background: var(--aqua);
    color: var(--teal);
}


/* ==========================================================
   03 Typography
   ========================================================== */

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--teal);
}

h2 {
    font-size: var(--fs-h2);
}

h3 {
    font-size: var(--fs-h3);
}

.display {
    font-family: var(--font-serif);
    font-weight: 400;
    font-optical-sizing: auto;
    font-size: var(--fs-display);
    line-height: 1.02;
    letter-spacing: -0.02em;
}

.display--md {
    font-size: var(--fs-display-md);
    line-height: 1.05;
}

.display--sm {
    font-size: var(--fs-display-sm);
    line-height: 1.1;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 var(--space-4);
    font-size: var(--fs-xs);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--turquoise-text);
}

.eyebrow--rule::before {
    content: '';
    flex: 0 0 auto;
    width: 28px;
    height: 2px;
    background: var(--turquoise);
}

.lead {
    font-size: var(--fs-lead);
    line-height: 1.6;
    color: var(--text);
}

.brand-rule {
    display: block;
    width: 48px;
    height: 2px;
    margin-bottom: var(--space-5);
    background: var(--turquoise);
}

/* Geometric accent inspired by the suitcase color blocks */
.suitcase-bars {
    display: flex;
    gap: 6px;
    margin-top: var(--space-6);
}

.suitcase-bars i {
    display: block;
    width: 34px;
    height: 6px;
    border-radius: 3px;
}

.suitcase-bars i:nth-child(1) { background: var(--gold); }
.suitcase-bars i:nth-child(2) { background: var(--aqua); }
.suitcase-bars i:nth-child(3) { background: var(--turquoise); }
.suitcase-bars i:nth-child(4) { background: var(--coral); width: 14px; }


/* ==========================================================
   04 Layout
   ========================================================== */

.container {
    width: min(100% - (var(--gutter) * 2), var(--max-width));
    margin-inline: auto;
}

.section {
    padding-block: var(--section-y);
}

.section--tight {
    padding-block: calc(var(--section-y) * 0.5);
}

.section--flush-top {
    padding-top: 0;
}

.section--sand {
    background: var(--sand-pale);
}

.section--off {
    background: var(--off-white);
}

.section-heading {
    max-width: 720px;
    margin-bottom: var(--space-7);
}

.section-heading--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-5);
    max-width: none;
}

.section-foot {
    display: flex;
    justify-content: center;
    margin-top: var(--space-7);
}

.card-grid {
    display: grid;
    gap: clamp(20px, 2.5vw, 36px);
}

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

.card-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid--1 {
    grid-template-columns: minmax(0, 1fr);
    max-width: 640px;
}

@media (max-width: 1023px) {
    .card-grid--3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .card-grid--3,
    .card-grid--2 {
        grid-template-columns: minmax(0, 1fr);
    }

    .section-heading--split {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-heading--split > .text-link {
        display: none;
    }
}

.empty-note,
.empty-state {
    padding: var(--space-6);
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius-lg);
    color: var(--gray);
    text-align: center;
}

.empty-state__title {
    margin-bottom: var(--space-2);
    font-weight: 600;
    font-size: var(--fs-md);
    color: var(--teal);
}


/* ==========================================================
   05 Buttons + links
   ========================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 26px;
    border: 1.5px solid transparent;
    border-radius: var(--radius-pill);
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    background: none;
    transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.btn .icon {
    flex: 0 0 auto;
}

.btn-primary {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--teal-hover);
    border-color: var(--teal-hover);
}

.btn-secondary {
    border-color: rgba(8, 75, 81, 0.28);
    color: var(--teal);
}

.btn-secondary:hover {
    background: var(--sand);
    border-color: rgba(8, 75, 81, 0.45);
}

.btn-sm {
    min-height: 44px;
    padding: 0 20px;
    font-size: 0.75rem;
}

.btn-block {
    width: 100%;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.btn-row--center {
    justify-content: center;
}

@media (max-width: 599px) {
    .btn-row .btn,
    .btn-block-mobile {
        width: 100%;
    }

    .btn {
        white-space: normal;
        text-align: center;
    }
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--teal);
    background: linear-gradient(currentColor, currentColor) left bottom / 0 1px no-repeat;
    transition: background-size var(--dur) var(--ease);
}

.text-link .icon {
    color: var(--turquoise);
    transition: transform var(--dur) var(--ease);
}

.text-link:hover {
    background-size: 100% 1px;
}

.text-link:hover .icon-arrow-right {
    transform: translateX(3px);
}

.text-link--button {
    background-color: transparent;
    cursor: pointer;
}


/* ==========================================================
   06 Header + primary nav
   ========================================================== */

.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 3000;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    background: var(--teal);
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
}

.skip-link:focus {
    top: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--white);
    border-bottom: 1px solid var(--line-soft);
    transition: box-shadow var(--dur) var(--ease);
}

.site-header.is-scrolled {
    --header-h: 76px;
    box-shadow: 0 10px 30px -26px rgba(8, 75, 81, 0.45);
}

@media (max-width: 1023px) {
    .site-header.is-scrolled {
        --header-h: 64px;
    }
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    width: min(100% - (var(--gutter) * 2), var(--max-width));
    height: var(--header-h);
    margin-inline: auto;
    transition: height var(--dur) var(--ease);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    text-decoration: none;
    color: var(--teal);
}

.brand__icon {
    width: auto;
    height: 46px;
    transition: height var(--dur) var(--ease);
}

.is-scrolled .brand__icon {
    height: 40px;
}

.brand__word {
    font-size: 1.3125rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    white-space: nowrap;
}

.primary-nav {
    margin-left: auto;
}

.primary-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: var(--header-h);
    padding: 0 16px;
    border: 0;
    background: none;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    color: var(--teal);
    transition: height var(--dur) var(--ease), color var(--dur-fast) ease;
}

.primary-nav__link::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: calc(50% - 16px);
    height: 2px;
    border-radius: 2px;
    background: var(--turquoise);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur) var(--ease);
}

.primary-nav__link:hover::after,
.primary-nav__link[aria-expanded="true"]::after,
.primary-nav__link[aria-current="page"]::after,
.primary-nav__link[data-current="true"]::after {
    transform: scaleX(1);
}

.primary-nav__link[aria-current="page"]::after,
.primary-nav__link[data-current="true"]::after {
    background: var(--coral);
}

/* Small coral dot while events are upcoming */
.nav-live {
    position: relative;
    top: -6px;
    width: 6px;
    height: 6px;
    margin-left: 2px;
    border-radius: 50%;
    background: var(--coral);
}

.nav-live::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--coral);
    animation: vwm-pulse 2.4s ease-out infinite;
}

@keyframes vwm-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    70%, 100% { transform: scale(2.8); opacity: 0; }
}

.primary-nav__trigger .icon {
    color: var(--turquoise);
    transition: transform var(--dur) var(--ease);
}

.primary-nav__trigger[aria-expanded="true"] .icon {
    transform: rotate(180deg);
}

.primary-nav__link:focus-visible {
    outline-offset: -8px;
    border-radius: 12px;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.header-cta {
    margin-left: var(--space-3);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    color: var(--teal);
}

@media (max-width: 1199px) {
    .site-header__inner {
        gap: var(--space-5);
    }

    .primary-nav__list {
        gap: 0;
    }

    .primary-nav__link {
        padding: 0 9px;
        font-size: 0.75rem;
        letter-spacing: 0.08em;
    }

    .primary-nav__link::after {
        left: 9px;
        right: 9px;
    }

    .brand__word {
        font-size: 1.125rem;
    }

    .header-cta {
        margin-left: 0;
    }

    .mega-stay {
        grid-template-columns: 108px minmax(0, 1fr);
        gap: 16px;
    }
}

@media (max-width: 1023px) {
    .primary-nav {
        display: none;
    }

    .site-header__actions {
        margin-left: auto;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .brand__icon {
        height: 40px;
    }

    .is-scrolled .brand__icon {
        height: 36px;
    }

    .brand__word {
        font-size: 1.0625rem;
    }
}

@media (max-width: 599px) {
    .header-cta {
        display: none;
    }
}


/* ==========================================================
   07 Mega menu
   ========================================================== */

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--white);
    border-top: 1px solid var(--line-soft);
    box-shadow: 0 40px 60px -44px rgba(8, 75, 81, 0.4);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition:
        opacity 200ms ease,
        transform 240ms var(--ease),
        visibility 0s linear 240ms;
}

[data-mega].is-open > .mega-menu {
    visibility: visible;
    opacity: 1;
    transform: none;
    transition-delay: 0s;
}

.mega-menu__inner {
    display: grid;
    gap: clamp(32px, 4vw, 64px);
    width: min(100% - (var(--gutter) * 2), var(--max-width));
    margin-inline: auto;
    padding: 52px 0 44px;
}

.mega-menu__inner--stays {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr) minmax(300px, 0.95fr);
}

.mega-menu__inner--explore {
    grid-template-columns: minmax(0, 25fr) minmax(0, 45fr) minmax(0, 30fr);
}

.mega-menu__headline {
    margin: 0 0 var(--space-4);
    font-family: var(--font-serif);
    font-size: clamp(2rem, 1.4rem + 1vw, 2.625rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--teal);
}

.mega-menu__copy {
    max-width: 34ch;
    margin-bottom: var(--space-5);
    font-size: 0.9375rem;
    color: var(--gray);
}

.mega-menu__links {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mega-menu__label {
    margin: 0 0 var(--space-4);
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--gray);
}

/* Featured stays list */
.mega-stays {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mega-stay {
    display: grid;
    grid-template-columns: 136px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    padding: 10px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background-color var(--dur) var(--ease);
}

.mega-stay:hover {
    background: var(--off-white);
}

.mega-stay__media {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 4 / 3;
    background: var(--sand);
}

.mega-stay__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--ease);
}

.mega-stay:hover .mega-stay__media img {
    transform: scale(1.04);
}

.mega-stay__text {
    display: grid;
    gap: 2px;
}

.mega-stay__name {
    font-weight: 600;
    line-height: 1.3;
    color: var(--teal);
}

.mega-stay__location {
    font-size: 0.8125rem;
    color: var(--gray);
}

.mega-stay__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
    color: var(--turquoise-text);
}

/* Stamps column */
.mega-menu__stamps {
    align-self: center;
    text-align: center;
}

.mega-menu__stamp-title {
    margin: var(--space-5) 0 6px;
    font-size: var(--fs-xs);
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--teal);
}

.mega-menu__stamp-copy {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--teal);
}

/* Explore: link list */
.mega-menu__list {
    display: grid;
    margin: var(--space-2) 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line-soft);
}

.mega-menu__list a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--line-soft);
    font-weight: 500;
    text-decoration: none;
    color: var(--teal);
    transition: color var(--dur-fast) ease, padding var(--dur) var(--ease);
}

.mega-menu__list a:hover {
    padding-left: 6px;
    color: var(--turquoise-text);
}

/* Explore: featured guide */
.mega-guide {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: var(--space-6);
    text-decoration: none;
    color: inherit;
}

.mega-guide__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    background: var(--sand);
}

.mega-guide__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms var(--ease);
}

.mega-guide:hover .mega-guide__media img {
    transform: scale(1.03);
}

.mega-guide__label {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: var(--white);
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal);
}

.mega-guide__text {
    display: grid;
    gap: var(--space-3);
}

.mega-guide__headline {
    font-family: var(--font-serif);
    font-size: clamp(1.625rem, 1.2rem + 0.8vw, 2.125rem);
    line-height: 1.08;
    letter-spacing: -0.015em;
    color: var(--teal);
}

.mega-guide__copy {
    font-size: 0.9375rem;
    color: var(--gray);
}

.mega-guide__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: var(--space-2);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
}

.mega-guide__cta .icon {
    color: var(--turquoise);
}

/* Explore: quick links */
.mega-quick {
    display: grid;
    align-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mega-quick__link {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.mega-quick__link:hover {
    background: var(--off-white);
    border-color: var(--line);
}

.mega-quick__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
}

.mega-quick__icon--aqua { background: var(--aqua-pale); color: var(--turquoise-text); }
.mega-quick__icon--coral { background: var(--coral-pale); color: var(--coral-text); }
.mega-quick__icon--gold { background: var(--gold-pale); color: var(--gold-text); }

.mega-quick__title {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal);
}

.mega-quick__line {
    display: block;
    font-size: 0.9375rem;
    color: var(--gray);
}

/* Boarding pass strip */
.mega-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    width: min(100% - (var(--gutter) * 2), var(--max-width));
    margin-inline: auto;
    padding: 18px 0 22px;
    border-top: 1px dashed var(--line-strong);
    font-size: var(--fs-2xs);
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gray);
}

.mega-strip__rule {
    flex: 0 1 60px;
    height: 1px;
    background: var(--turquoise);
}

@media (max-width: 1279px) {
    .mega-menu__inner--stays {
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.25fr) minmax(220px, 0.8fr);
    }

    .mega-guide {
        grid-template-columns: minmax(0, 1fr);
    }

    .mega-guide__media {
        aspect-ratio: 16 / 10;
    }

    .mega-strip span:first-child,
    .mega-strip span:last-child {
        display: none;
    }

    .mega-strip {
        justify-content: center;
    }
}


/* ==========================================================
   08 Travel stamps
   ========================================================== */

.travel-stamps img {
    width: 100%;
    height: auto;
}

.travel-stamps--cluster,
.travel-stamps--trio {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 3%;
    margin-inline: auto;
}

.travel-stamps__stamp {
    display: block;
}

.travel-stamps--cluster .travel-stamps__stamp:nth-child(3n + 2),
.travel-stamps--trio .travel-stamps__stamp:nth-child(2) {
    transform: translateY(16%);
}

.travel-stamps--cluster .travel-stamps__stamp:nth-child(n + 4) {
    margin-top: -2%;
}

.travel-stamps--mega {
    max-width: 360px;
}

.travel-stamps--large {
    max-width: 640px;
}

.travel-stamps--hero {
    max-width: 400px;
    margin-right: 0;
    opacity: 0.92;
}

.travel-stamps--menu {
    max-width: 270px;
}

.travel-stamps--footer {
    max-width: 300px;
}

.travel-stamps--note {
    max-width: 920px;
    margin: 0 auto var(--space-6);
}

.travel-stamps--single {
    pointer-events: none;
}


/* ==========================================================
   09 Dialogs + mobile menu
   ========================================================== */

.dialog-layer {
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.dialog-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 75, 81, 0.18);
    -webkit-backdrop-filter: blur(1.5px);
    backdrop-filter: blur(1.5px);
    opacity: 0;
    transition: opacity 260ms ease;
}

.dialog-layer.is-open .dialog-overlay {
    opacity: 1;
}

html.is-locked,
html.is-locked body {
    overflow: hidden;
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    color: var(--teal);
    transition: background-color var(--dur-fast) ease;
}

.icon-btn:hover {
    background: var(--sand);
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    width: min(100%, 460px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 16px 24px calc(32px + env(safe-area-inset-bottom, 0px));
    background: var(--white);
    box-shadow: var(--shadow-float);
    transform: translateX(100%);
    transition: transform var(--dur-slow) var(--ease);
}

.mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
}

.mobile-menu__panel:focus {
    outline: none;
}

.mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    min-height: 56px;
    margin-bottom: var(--space-5);
}

.mobile-menu__top .brand__icon {
    height: 38px;
}

.mobile-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line-soft);
}

.mobile-nav__list > li {
    border-bottom: 1px solid var(--line-soft);
}

.mobile-nav__link {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
    text-decoration: none;
    color: var(--teal);
}

.mobile-nav__link[aria-current="page"]::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral);
}

.mobile-nav__sub {
    margin: -6px 0 0;
    padding: 0 0 14px;
    list-style: none;
}

.mobile-nav__sub a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 40px;
    font-size: var(--fs-base);
    text-decoration: none;
    color: var(--gray);
}

.mobile-nav__sub a:hover {
    color: var(--teal);
}

.mobile-nav .btn-block {
    margin-top: var(--space-5);
}

.mobile-menu__foot {
    margin-top: auto;
    padding-top: var(--space-7);
    text-align: center;
}

.mobile-menu__stamp-title {
    margin: var(--space-5) 0 var(--space-2);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--teal);
}

.mobile-menu__tagline {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.1875rem;
    font-style: italic;
    line-height: 1.35;
    color: var(--teal);
}


/* ==========================================================
   10 Hero
   ========================================================== */

.hero {
    width: min(100% - (var(--gutter) * 2), var(--max-wide));
    margin: 16px auto 0;
}

.hero__frame {
    position: relative;
    height: clamp(600px, 86vh, 940px);
    overflow: hidden;
    isolation: isolate;
    border-radius: var(--radius-xl);
    background: var(--teal);
    color: var(--white);
}

.hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Soft shading so white type reads over bright water */
.hero__frame::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(4, 40, 46, 0.46) 0%, rgba(4, 40, 46, 0.22) 38%, rgba(4, 40, 46, 0) 62%),
        linear-gradient(to top, rgba(4, 40, 46, 0.42) 0%, rgba(4, 40, 46, 0) 24%);
    pointer-events: none;
}

.hero__content {
    position: absolute;
    top: 0;
    bottom: clamp(72px, 9vh, 104px);
    left: clamp(24px, 5.5vw, 88px);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: min(760px, 62%);
    padding-top: 24px;
}

.hero__eyebrow {
    margin: 0 0 var(--space-5);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    text-shadow: 0 1px 14px rgba(4, 40, 46, 0.35);
}

.hero__title {
    margin: 0 0 var(--space-6);
    font-size: clamp(3.25rem, 1.3rem + 5.6vw, 7.5rem);
    line-height: 0.98;
    color: var(--white);
    text-shadow: 0 2px 30px rgba(4, 40, 46, 0.28);
}

/* Hand-drawn gold underline */
.hero__underline {
    position: relative;
    display: inline-block;
}

.hero__underline svg {
    position: absolute;
    left: -14%;
    bottom: -0.14em;
    width: 124%;
    height: 0.3em;
    overflow: visible;
    pointer-events: none;
}

.hero__underline path {
    fill: none;
    stroke: var(--gold);
    stroke-width: 4.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: vwm-draw 900ms var(--ease) 400ms forwards;
}

@keyframes vwm-draw {
    to {
        stroke-dashoffset: 0;
    }
}

.hero__copy {
    max-width: 34ch;
    margin: 0;
    font-size: clamp(1.0625rem, 0.98rem + 0.4vw, 1.3125rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 1px 14px rgba(4, 40, 46, 0.4);
}

.hero__actions {
    margin-top: var(--space-6);
}

.hero .btn-primary {
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost-light {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: var(--white);
}

/* Handwritten side note */
.hero__note {
    position: absolute;
    right: clamp(24px, 4.5vw, 72px);
    bottom: clamp(150px, 24%, 280px);
    z-index: 2;
    margin: 0;
    font-family: 'Nothing You Could Do', cursive;
    font-size: clamp(1.25rem, 0.8rem + 1.1vw, 1.875rem);
    line-height: 1.2;
    text-align: center;
    color: var(--white);
    text-shadow: 0 1px 10px rgba(4, 40, 46, 0.4);
    transform: rotate(-16deg);
}

.hero__note-heart {
    display: block;
    width: 1.5em;
    height: 1.5em;
    margin: 8px auto 0;
    overflow: visible;
}

.hero__note-heart path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Boarding-pass strip */
.hero__strip {
    position: absolute;
    right: clamp(24px, 5.5vw, 88px);
    bottom: clamp(22px, 3.2vh, 38px);
    left: clamp(24px, 5.5vw, 88px);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: var(--space-5);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 1px 10px rgba(4, 40, 46, 0.35);
}

.hero__strip-rule {
    flex: 1 1 auto;
    height: 1px;
    background: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1023px) {
    .hero__frame {
        height: clamp(580px, 82vh, 780px);
    }

    .hero__content {
        max-width: min(640px, 78%);
    }
}

@media (max-width: 899px) {
    .hero__note {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero {
        width: 100%;
        margin-top: 0;
    }

    .hero__frame {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: auto;
        /* Fill the screen below the header, minus a peek of the next section */
        min-height: calc(100svh - var(--header-h) - 40px);
        border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    }

    .hero__frame::after {
        background: linear-gradient(to top, rgba(4, 40, 46, 0.72) 0%, rgba(4, 40, 46, 0.4) 38%, rgba(4, 40, 46, 0.06) 72%);
    }

    .hero__content {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        max-width: none;
        padding: 72px 20px 62px;
    }

    .hero__eyebrow {
        margin-bottom: var(--space-4);
        font-size: 0.75rem;
        letter-spacing: 0.24em;
    }

    .hero__title {
        font-size: clamp(3.25rem, 2rem + 7vw, 4.25rem);
        margin-bottom: var(--space-4);
    }

    .hero__copy {
        max-width: 30ch;
        font-size: 1.0625rem;
    }

    /* Buttons share a row so the photo keeps more of the screen */
    .hero__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: var(--space-5);
    }

    .hero__actions .btn {
        width: 100%;
        min-height: 50px;
        padding: 0 12px;
        font-size: 0.6875rem;
        letter-spacing: 0.08em;
    }

    .hero__actions .btn .icon {
        display: none;
    }

    .hero__strip {
        right: 20px;
        left: 20px;
        bottom: 20px;
        font-size: 0.625rem;
        letter-spacing: 0.16em;
    }

    .hero__strip-domain {
        display: none;
    }
}

/* Narrow phones: keep both button labels on one line */
@media (max-width: 400px) {
    .hero__actions {
        gap: 8px;
    }

    .hero__actions .btn {
        padding: 0 8px;
        font-size: 0.625rem;
        letter-spacing: 0.05em;
    }
}

/* Very short phones: keep everything on one screen */
@media (max-width: 767px) and (max-height: 700px) {
    .hero__content {
        padding: 56px 20px 56px;
    }

    .hero__title {
        font-size: 2.75rem;
    }
}


/* ==========================================================
   11 Introduction
   ========================================================== */

.intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    align-items: end;
    gap: clamp(32px, 6vw, 96px);
}

.intro__title {
    max-width: 16ch;
    font-size: clamp(2rem, 1.4rem + 2.2vw, 3.375rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.intro__body .lead {
    max-width: 56ch;
    margin: 0;
}

@media (max-width: 899px) {
    .intro__grid {
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
    }
}


/* ==========================================================
   12 Host intro card
   ========================================================== */

.host-intro-card {
    position: relative;
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr) 284px;
    gap: clamp(28px, 3.5vw, 48px);
    max-width: 1240px;
    margin-inline: auto;
    padding: clamp(28px, 4.5vw, 56px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.host-intro-card > * {
    position: relative;
    z-index: 1;
}

.host-intro-card .host-intro-card__stamp {
    position: absolute;
    top: -26px;
    right: 36px;
    z-index: 0;
    width: 132px;
    opacity: 0.35;
    transform: rotate(9deg);
}

.host-intro-card__person {
    text-align: center;
}

.host-portrait {
    position: relative;
    margin-inline: auto;
}

.host-portrait__img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: 50% 15%;
    border-radius: 200px 200px var(--radius-lg) var(--radius-lg);
    background: var(--sand);
}

.host-portrait__badge {
    position: absolute;
    right: -8px;
    bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 10px 22px -12px rgba(8, 75, 81, 0.45);
}

.host-intro-card__name {
    margin: var(--space-5) 0 0;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--teal);
}

.host-intro-card__role {
    margin: 4px 0 var(--space-3);
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--gray);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 7px 13px;
    border-radius: var(--radius-pill);
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pill--coral {
    background: var(--coral-pale);
    color: var(--coral-text);
}

.host-intro-card__title {
    margin: 0 0 var(--space-3);
    font-size: clamp(2.5rem, 1.9rem + 2.2vw, 3.75rem);
}

.host-intro-card__statement {
    margin-bottom: var(--space-5);
    font-family: var(--font-serif);
    font-size: clamp(1.1875rem, 1.1rem + 0.4vw, 1.4375rem);
    font-style: italic;
    line-height: 1.35;
    color: var(--turquoise-text);
}

.host-intro-card__main > p:not([class]) {
    max-width: 54ch;
}

.favorites-note {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: var(--space-3) 0 0;
    padding: 12px 18px 12px 12px;
    border: 1px dashed #E7C46E;
    border-radius: var(--radius-md);
    background: var(--gold-pale);
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1.4;
    color: var(--teal);
    transform: rotate(-1deg);
}

.favorites-note__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    color: var(--gold-text);
}

/* Stat tiles */
.host-intro-card__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.host-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 16px 16px 18px;
    border-radius: 20px;
    background: var(--sand-pale);
}

.host-stat__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
}

.host-stat__value {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--teal);
}

.host-stat--word .host-stat__value {
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.6;
}

.host-stat__label {
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray);
}

.host-stat--wide {
    grid-column: 1 / -1;
}

.host-stat--sand { background: var(--sand-pale); }
.host-stat--sand .host-stat__icon { color: var(--teal); }
.host-stat--gold { background: var(--gold-pale); }
.host-stat--gold .host-stat__icon { color: var(--gold-text); }
.host-stat--aqua { background: var(--aqua-pale); }
.host-stat--aqua .host-stat__icon { color: var(--turquoise-text); }
.host-stat--coral { background: var(--coral-pale); }
.host-stat--coral .host-stat__icon { color: var(--coral-text); }
.host-stat--teal { background: var(--teal-pale); }
.host-stat--teal .host-stat__icon { color: var(--teal); }

/* Personal detail strip */
.host-intro-card__details {
    grid-column: 1 / -1;
    padding-top: var(--space-5);
    border-top: 1px dashed var(--line-strong);
}

.host-intro-card__details-title {
    margin-bottom: var(--space-3);
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--gray);
}

.detail-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.detail-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-pill);
    background: var(--off-white);
    font-size: var(--fs-sm);
    line-height: 1.4;
}

.detail-chip .icon {
    flex: 0 0 auto;
    color: var(--coral);
}

.detail-chip__label {
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--turquoise-text);
}

@media (max-width: 1099px) {
    .host-intro-card {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .host-intro-card__stats {
        grid-column: 1 / -1;
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .host-stat--wide {
        grid-column: auto;
    }
}

@media (max-width: 767px) {
    .host-intro-card {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--space-6);
        padding: 32px 22px;
    }

    .host-portrait {
        max-width: 220px;
    }

    .host-intro-card__main {
        text-align: left;
    }

    .host-intro-card__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .host-stat--wide {
        grid-column: 1 / -1;
    }

    .host-intro-card .host-intro-card__stamp {
        width: 110px;
        right: 16px;
    }

    .detail-chip {
        border-radius: var(--radius-md);
        flex-wrap: wrap;
    }
}


/* ==========================================================
   13 Listing + guidebook cards
   ========================================================== */

.listing-card {
    display: flex;
    flex-direction: column;
    scroll-margin-top: calc(var(--header-h) + 32px);
}

.listing-card__media {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    background: var(--sand);
}

.listing-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms var(--ease);
}

.listing-card:hover .listing-card__media img {
    transform: scale(1.03);
}

.listing-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: var(--space-5) 4px 0;
}

.listing-card__location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 var(--space-2);
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray);
}

.listing-card__location .icon {
    color: var(--coral);
}

.listing-card__name {
    margin: 0 0 var(--space-2);
    font-size: 1.375rem;
    line-height: 1.25;
}

.listing-card__desc {
    margin: 0;
    color: var(--gray);
}

.listing-card__amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: var(--space-4) 0 0;
    padding: 0;
    list-style: none;
}

.listing-card__amenities li {
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    background: var(--off-white);
    border: 1px solid var(--line-soft);
    font-size: 0.8125rem;
}

.listing-card__cta {
    align-self: flex-start;
    margin-top: var(--space-4);
}

.guidebook-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    background: var(--white);
}

.guidebook-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: var(--sand);
}

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

.guidebook-card__category {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: var(--white);
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
}

.guidebook-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 22px 24px 26px;
}

.guidebook-card__name {
    margin: 0 0 var(--space-2);
    font-size: 1.25rem;
    line-height: 1.3;
}

.guidebook-card__desc {
    margin: 0;
    color: var(--gray);
}

.guidebook-card__cta {
    align-self: flex-start;
    margin-top: var(--space-4);
}

/* Wide layout when only one guidebook is configured */
.guidebook-card--wide {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    align-items: stretch;
}

.guidebook-card--wide .guidebook-card__media {
    aspect-ratio: auto;
    min-height: 340px;
}

.guidebook-card--wide .guidebook-card__body {
    justify-content: center;
    padding: clamp(28px, 4vw, 56px);
}

.guidebook-card--wide .guidebook-card__name {
    font-size: clamp(1.5rem, 1.25rem + 1vw, 2.125rem);
    margin-bottom: var(--space-3);
}

.guidebook-card--wide .guidebook-card__desc {
    font-size: var(--fs-md);
}

@media (max-width: 767px) {
    .guidebook-card--wide {
        grid-template-columns: minmax(0, 1fr);
    }

    .guidebook-card--wide .guidebook-card__media {
        aspect-ratio: 3 / 2;
        min-height: 0;
    }

    .guidebook-card--wide .guidebook-card__body {
        padding: 22px 24px 26px;
    }
}


/* Property photo count badge */
.listing-card__media {
    position: relative;
}

.listing-card__count {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: var(--white);
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
}

/* Airbnb unit links */
.unit-list {
    display: grid;
    margin: var(--space-5) 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.unit-list > li {
    border-bottom: 1px solid var(--line);
}

.unit-link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: var(--space-4);
    align-items: center;
    min-height: 52px;
    padding: 10px 2px;
    text-decoration: none;
    color: var(--teal);
}

.unit-link__label {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.35;
    transition: color var(--dur-fast) ease;
}

.unit-link__note {
    grid-column: 1;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: var(--gray);
}

.unit-link__cta {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--turquoise-text);
}

.unit-link:hover .unit-link__label {
    color: var(--turquoise-text);
}

.unit-link:hover .icon {
    transform: translate(1px, -1px);
}

.unit-link .icon {
    transition: transform var(--dur-fast) ease;
}

.unit-list__title {
    margin: var(--space-6) 0 0;
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--gray);
}

.unit-list__title + .unit-list {
    margin-top: var(--space-3);
}

.unit-list--card {
    margin-top: auto;
    padding-top: 0;
}

.listing-card__desc {
    margin-bottom: var(--space-5);
}

/* Stays page rows */
.stays-rows {
    display: grid;
    gap: clamp(64px, 8vw, 128px);
}

.listing-row {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(32px, 5vw, 80px);
    scroll-margin-top: calc(var(--header-h) + 32px);
}

.listing-row:nth-child(even) .listing-row__media {
    order: 2;
}

.listing-row__media {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-xl);
    background: var(--sand);
}

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

.listing-row__name {
    margin: 0 0 var(--space-3);
    font-size: clamp(1.75rem, 1.4rem + 1.4vw, 2.5rem);
    line-height: 1.1;
}

.listing-row__desc {
    max-width: 52ch;
    margin: 0;
    color: var(--text);
}

.listing-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: var(--space-5) 0 0;
    padding: 0;
    list-style: none;
}

.listing-highlights li {
    padding: 6px 14px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-pill);
    background: var(--off-white);
    font-size: 0.8125rem;
    line-height: 1.4;
}

@media (max-width: 899px) {
    .listing-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .listing-row:nth-child(even) .listing-row__media {
        order: 0;
    }
}


/* ==========================================================
   14 Homepage sections
   ========================================================== */

/* Guidebooks */
.guidebooks-home__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: end;
    gap: var(--space-7);
    margin-bottom: var(--space-6);
}

.guidebooks-home__head h2 {
    max-width: 14ch;
}

.guidebooks-home__copy {
    margin: 0;
    font-size: var(--fs-lead);
    line-height: 1.6;
    color: var(--text);
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 var(--space-7);
    padding: 0;
    list-style: none;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--teal);
    transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.category-pill:hover {
    background: var(--white);
    border-color: var(--turquoise);
}

.card-grid--guides.card-grid--1 {
    max-width: none;
}

@media (max-width: 767px) {
    .guidebooks-home__head {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--space-4);
    }
}

/* Meet Sabrina editorial */
.meet__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: clamp(40px, 6vw, 104px);
}

.editorial-image img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    background: var(--sand);
}

/* Editorial photos keep their natural shape and fit the screen height */
.meet__media img,
.story__media img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: max(460px, calc(100vh - var(--header-h) - 64px));
    margin-inline: auto;
}

.meet__text h2 {
    max-width: 15ch;
    margin-bottom: var(--space-5);
}

.meet__text p {
    max-width: 52ch;
}

.stat-line {
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: start;
    margin: var(--space-6) 0 0;
    border-block: 1px solid var(--line);
}

.stat-line > div {
    display: flex;
    flex-direction: column-reverse;
    padding: 18px 28px 18px 0;
}

.stat-line > div + div {
    padding-left: 28px;
    border-left: 1px solid var(--line);
}

.stat-line dt {
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray);
}

.stat-line dd {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--teal);
}

@media (max-width: 899px) {
    .meet__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .meet__media img {
        max-height: 80vh;
    }
}

@media (max-width: 1199px) {
    .stat-line {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stat-line > div,
    .stat-line > div + div {
        padding: 16px 0 16px 16px;
        border-left: 0;
    }

    .stat-line > div:nth-child(odd) {
        padding-left: 0;
    }

    .stat-line > div:nth-child(even) {
        border-left: 1px solid var(--line);
    }

    .stat-line > div:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }
}

/* Travel stamps moment */
.stamps-moment__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(40px, 6vw, 96px);
}

.stamps-moment__text h2 {
    max-width: 14ch;
    margin-bottom: var(--space-5);
}

.stamps-moment__text .lead {
    max-width: 44ch;
    color: var(--gray);
}

@media (max-width: 899px) {
    .stamps-moment__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Destination moment */
.destination {
    width: min(100% - (var(--gutter) * 2), var(--max-wide));
    margin: var(--section-y) auto 0;
}

.destination__frame {
    position: relative;
    height: clamp(420px, 72vh, 780px);
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--teal);
}

.destination__frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(28px, 6vw, 96px);
    background: linear-gradient(to top, rgba(6, 42, 46, 0.45) 0%, rgba(6, 42, 46, 0) 58%);
    color: var(--white);
}

.destination__title {
    font-size: clamp(2.75rem, 1.6rem + 4.6vw, 6.5rem);
    line-height: 0.98;
    color: var(--white);
}

.destination__line {
    margin: var(--space-5) 0 0;
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

@media (max-width: 599px) {
    .destination {
        width: 100%;
    }

    .destination__frame {
        border-radius: 0;
    }
}

/* Pillars */
.pillars__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
}

.pillar {
    padding: 8px clamp(20px, 2.5vw, 36px);
}

.pillar + .pillar {
    border-left: 1px solid var(--line);
}

.pillar:first-child {
    padding-left: 0;
}

.pillar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
}

.pillar__icon--turquoise { background: var(--teal-pale); color: var(--turquoise-text); }
.pillar__icon--gold { background: var(--gold-pale); color: var(--gold-text); }
.pillar__icon--aqua { background: var(--aqua-pale); color: var(--turquoise-text); }
.pillar__icon--coral { background: var(--coral-pale); color: var(--coral-text); }

.pillar__title {
    margin: var(--space-5) 0 var(--space-2);
    font-size: var(--fs-sm);
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
}

.pillar p {
    margin: 0;
    color: var(--gray);
}

@media (max-width: 1023px) {
    .pillars__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: var(--space-7);
    }

    .pillar:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }
}

@media (max-width: 559px) {
    .pillars__grid {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 0;
    }

    .pillar,
    .pillar + .pillar {
        display: grid;
        grid-template-columns: 56px minmax(0, 1fr);
        column-gap: 18px;
        padding: 22px 0;
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .pillar:first-child {
        border-top: 0;
    }

    .pillar__icon {
        grid-row: span 2;
    }

    .pillar__title {
        margin: 4px 0 2px;
    }
}

/* Reviews */
.reviews__title {
    margin-bottom: var(--space-7);
    text-align: center;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-5);
}

.review-card {
    margin: 0;
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line-soft);
}

.review-card blockquote {
    margin: 0 0 var(--space-5);
}

.review-card blockquote p {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    line-height: 1.45;
    color: var(--teal);
}

.review-card__name {
    display: block;
    font-weight: 600;
    color: var(--teal);
}

.review-card__meta {
    display: block;
    font-size: var(--fs-sm);
    color: var(--gray);
}

/* Final CTA */
.pillars + .final-cta,
.stays-list + .final-cta {
    padding-top: 0;
}

.final-cta__box {
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 7vw, 104px) clamp(24px, 5vw, 72px);
    border-radius: var(--radius-xl);
    background: var(--aqua-pale);
    text-align: center;
}

.final-cta__box::before,
.final-cta__box::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.final-cta__box::before {
    left: 0;
    bottom: 0;
    width: 220px;
    height: 160px;
    background: var(--gold);
    opacity: 0.16;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.final-cta__box::after {
    right: 0;
    top: 0;
    width: 260px;
    height: 180px;
    background: var(--turquoise);
    opacity: 0.1;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.final-cta__box > * {
    position: relative;
    z-index: 1;
}

.final-cta__box h2 {
    margin-bottom: var(--space-3);
}

.final-cta__box .lead {
    max-width: 46ch;
    margin: 0 auto var(--space-6);
    color: var(--text);
}


/* ==========================================================
   15 Page heroes
   ========================================================== */

.page-hero {
    padding: clamp(56px, 8vw, 120px) 0 clamp(48px, 6vw, 88px);
}

.page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: center;
    gap: var(--space-7);
}

.page-hero__title {
    max-width: 14ch;
    margin: 0 0 var(--space-5);
}

.page-hero__lead {
    max-width: 46ch;
    margin: 0;
    color: var(--gray);
}

.page-hero__question {
    margin: var(--space-3) 0 0;
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 1.25rem + 1vw, 2.125rem);
    font-style: italic;
    color: var(--teal);
}

.page-hero__aside {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 899px) {
    .page-hero__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .page-hero__aside {
        justify-content: flex-start;
    }

    .travel-stamps--hero {
        max-width: 300px;
        margin: 0;
    }
}


/* ==========================================================
   16 Guidebooks page
   ========================================================== */

.guide-feature__card {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(32px, 6vw, 88px);
}

.guide-feature__media img {
    aspect-ratio: 4 / 3;
}

.guide-feature__text h2 {
    max-width: 16ch;
    margin-bottom: var(--space-4);
}

.guide-feature__desc {
    color: var(--gray);
}

.category-index {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line-strong);
}

.category-row {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--space-6);
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--line-strong);
    scroll-margin-top: calc(var(--header-h) + 32px);
}

.category-row__number {
    font-size: clamp(2.25rem, 1.8rem + 1.6vw, 3.25rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--turquoise);
}

.category-row:target .category-row__number {
    color: var(--coral);
}

.category-row__title {
    margin: 0 0 4px;
    font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.625rem);
}

.category-row__line {
    margin: 0;
    color: var(--gray);
}

.category-row__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: var(--space-3) var(--space-5);
}

.category-row__guide {
    font-weight: 500;
    color: var(--teal);
}

@media (max-width: 767px) {
    .guide-feature__card {
        grid-template-columns: minmax(0, 1fr);
    }

    .category-row {
        grid-template-columns: 60px minmax(0, 1fr);
        gap: var(--space-2) var(--space-4);
        padding: var(--space-5) 0;
    }

    .category-row__links {
        grid-column: 2;
        justify-content: flex-start;
    }
}

.stamps-note__inner {
    text-align: center;
}

.stamps-note__inner h2 {
    margin-bottom: var(--space-2);
}

.stamps-note__inner p {
    margin: 0;
    color: var(--gray);
}


/* ==========================================================
   16b Events page
   ========================================================== */

/* Tone helpers used across events components */
.next-up--coral, .weekend-pass--coral, .agenda-item--coral, .project-card--coral { --tone: var(--coral); --tone-text: var(--coral-text); --tone-pale: var(--coral-pale); }
.next-up--turquoise, .weekend-pass--turquoise, .agenda-item--turquoise, .project-card--turquoise { --tone: var(--turquoise); --tone-text: var(--turquoise-text); --tone-pale: var(--aqua-pale); }
.next-up--gold, .weekend-pass--gold, .agenda-item--gold, .project-card--gold { --tone: var(--gold); --tone-text: var(--gold-text); --tone-pale: var(--gold-pale); }

/* Next up ticket in the hero */
.next-up {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    width: min(100%, 380px);
    padding: 22px 26px 22px 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    color: var(--teal);
    transform: rotate(2deg);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.next-up:hover {
    transform: rotate(0);
    box-shadow: var(--shadow-card);
}

.next-up__label {
    position: absolute;
    top: -12px;
    left: 22px;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background: var(--tone);
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
}

.next-up__date {
    display: grid;
    place-items: center;
    width: 78px;
    height: 84px;
    border-radius: 18px;
    background: var(--tone-pale);
    color: var(--tone-text);
}

.next-up__mon {
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1;
    margin-top: 12px;
}

.next-up__num {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
}

.next-up__body {
    display: grid;
    gap: 2px;
}

.next-up__title {
    font-size: 1.1875rem;
    font-weight: 600;
    line-height: 1.25;
}

.next-up__project {
    font-size: var(--fs-sm);
    color: var(--gray);
}

.next-up__count {
    margin-top: 6px;
    font-family: 'Nothing You Could Do', cursive;
    font-size: 1.1875rem;
    color: var(--tone-text);
}

/* Featured weekend: boarding pass */
.weekend-pass {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.weekend-pass::before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--gold) 0 25%, var(--aqua) 25% 50%, var(--turquoise) 50% 75%, var(--coral) 75% 100%);
}

.weekend-pass__main {
    padding: clamp(32px, 4.5vw, 60px);
}

.weekend-pass__kicker {
    display: flex;
    justify-content: space-between;
    gap: var(--space-4);
    margin: 0 0 var(--space-4);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--tone-text);
}

.weekend-pass__kicker span {
    color: var(--gray);
    font-weight: 500;
}

.weekend-pass__title {
    margin: 0;
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2.5rem, 1.8rem + 2.8vw, 4.25rem);
    line-height: 1;
    letter-spacing: -0.02em;
}

.weekend-pass__tagline {
    margin: 6px 0 var(--space-5);
    font-family: 'Nothing You Could Do', cursive;
    font-size: clamp(1.375rem, 1.2rem + 0.6vw, 1.75rem);
    color: var(--tone-text);
}

.weekend-pass__dates {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 var(--space-4);
    font-weight: 600;
    color: var(--teal);
}

.weekend-pass__dates .icon {
    color: var(--tone);
}

.weekend-pass__desc {
    max-width: 48ch;
    color: var(--text);
}

.weekend-pass__stay {
    display: flex;
    gap: 12px;
    margin: var(--space-6) 0 0;
    padding-top: var(--space-5);
    border-top: 1px dashed var(--line-strong);
    font-size: var(--fs-sm);
    color: var(--gray);
}

.weekend-pass__stay .icon {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--turquoise);
}

.weekend-pass__stay .text-link {
    margin-left: 4px;
    padding: 0;
}

.weekend-pass__side {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-5);
    padding: clamp(32px, 4vw, 56px);
    border-left: 2px dashed var(--line-strong);
    background: var(--off-white);
}

/* Ticket notches on the perforation */
.weekend-pass__side::before,
.weekend-pass__side::after {
    content: '';
    position: absolute;
    left: -15px;
    width: 28px;
    height: 28px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
}

.weekend-pass__side::before { top: -15px; }
.weekend-pass__side::after { bottom: -15px; }

.weekend-pass__countdown {
    margin: 0;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--gray);
}

.weekend-pass__countdown strong {
    margin-right: 6px;
    font-size: 2rem;
    letter-spacing: -0.02em;
    color: var(--tone-text);
}

.weekend-pass__days {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.day-stub {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 12px 16px 12px 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    text-decoration: none;
    color: var(--teal);
    transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.day-stub:hover {
    border-color: var(--tone);
    transform: translateX(3px);
}

.day-stub__date {
    display: grid;
    justify-items: center;
    padding: 8px 0;
    border-radius: 12px;
    background: var(--tone-pale);
    color: var(--tone-text);
    line-height: 1.05;
}

.day-stub__dow,
.day-stub__mon {
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.day-stub__num {
    font-size: 1.5rem;
    font-weight: 600;
}

.day-stub__body {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.day-stub__title {
    font-weight: 600;
    line-height: 1.3;
}

.day-stub__sub {
    font-size: 0.8125rem;
    line-height: 1.35;
    color: var(--gray);
}

.day-stub__status {
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--turquoise-text);
}

@media (max-width: 899px) {
    .weekend-pass {
        grid-template-columns: minmax(0, 1fr);
    }

    .weekend-pass__side {
        border-left: 0;
        border-top: 2px dashed var(--line-strong);
    }

    .weekend-pass__side::before,
    .weekend-pass__side::after {
        top: -15px;
        bottom: auto;
    }

    .weekend-pass__side::before { left: -15px; }
    .weekend-pass__side::after { left: auto; right: -15px; }
}

@media (max-width: 479px) {
    .day-stub {
        grid-template-columns: 56px minmax(0, 1fr);
    }

    .day-stub__status {
        display: none;
    }

    .weekend-pass__kicker span {
        display: none;
    }
}

/* Calendar */
.events-calendar__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-5);
    margin-bottom: var(--space-7);
}

.cal-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--teal);
}

.cal-legend li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cal-legend__dot {
    display: inline-block;
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.cal-legend__dot--coral { background: var(--coral); }
.cal-legend__dot--turquoise { background: var(--turquoise); }
.cal-legend__dot--gold { background: var(--gold); }

.cal-month {
    display: grid;
    grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
    align-items: start;
    gap: clamp(28px, 4vw, 64px);
}

.cal-month + .cal-month {
    margin-top: var(--space-8);
    padding-top: var(--space-8);
    border-top: 1px solid var(--line-strong);
}

.cal-month__grid {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    padding: 24px 22px 18px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--white);
}

.cal {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    text-align: center;
}

.cal__caption {
    margin-bottom: 14px;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    line-height: 1.1;
    text-align: left;
    color: var(--teal);
}

.cal th {
    padding-bottom: 8px;
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--gray);
}

.cal abbr {
    text-decoration: none;
}

.cal td {
    padding: 3px;
}

.cal__day span,
.cal__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    font-size: var(--fs-sm);
    font-variant-numeric: tabular-nums;
    color: var(--text);
}

.cal__day span {
    color: var(--gray);
}

.cal__link {
    position: relative;
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
    transition: transform var(--dur-fast) ease;
}

.cal__link:hover {
    transform: scale(1.1);
}

.cal__link--coral { background: var(--coral); }
.cal__link--turquoise { background: var(--turquoise); }
.cal__link--gold { background: var(--gold); color: var(--teal); }

.cal__day.is-today span {
    box-shadow: inset 0 0 0 1.5px var(--teal);
    color: var(--teal);
    font-weight: 600;
}

/* Agenda */
.agenda {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.agenda-item {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) auto;
    align-items: start;
    gap: clamp(16px, 2.5vw, 28px);
    padding: clamp(18px, 2.5vw, 28px);
    border: 1px solid var(--line);
    border-left: 4px solid var(--tone);
    border-radius: 22px;
    background: var(--white);
    scroll-margin-top: calc(var(--header-h) + 32px);
    transition: box-shadow var(--dur) var(--ease);
}

.agenda-item:target {
    box-shadow: 0 0 0 3px var(--tone-pale), var(--shadow-soft);
}

.agenda-item__date {
    display: grid;
    justify-items: center;
    padding: 12px 0 10px;
    border-radius: 16px;
    background: var(--tone-pale);
    color: var(--tone-text);
    line-height: 1.05;
}

.agenda-item__dow,
.agenda-item__mon {
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.agenda-item__num {
    margin: 2px 0;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.agenda-item__project {
    margin: 0 0 4px;
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--tone-text);
}

.agenda-item__title {
    margin: 0;
    font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.625rem);
    line-height: 1.2;
}

.agenda-item__sub {
    margin: 4px 0 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.125rem;
    color: var(--teal);
}

.agenda-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    font-size: var(--fs-sm);
    color: var(--gray);
}

.agenda-item__meta li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.agenda-item__meta .icon {
    color: var(--tone);
}

.agenda-item__desc {
    max-width: 58ch;
    margin: 12px 0 0;
    font-size: 0.9375rem;
}

.agenda-item__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    padding: 0 18px;
    border: 1.5px solid rgba(8, 75, 81, 0.25);
    border-radius: var(--radius-pill);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    color: var(--teal);
    transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.agenda-item__cta:hover {
    background: var(--tone-pale);
    border-color: var(--tone);
}

@media (max-width: 1023px) {
    .cal-month {
        grid-template-columns: minmax(0, 1fr);
    }

    .cal-month__grid {
        position: static;
        max-width: 420px;
    }
}

@media (max-width: 599px) {
    .agenda-item {
        grid-template-columns: 60px minmax(0, 1fr);
    }

    .agenda-item__cta {
        grid-column: 2;
        justify-self: start;
    }

    .agenda-item__num {
        font-size: 1.625rem;
    }
}

/* Project cards */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 32px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: clamp(28px, 3vw, 40px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: var(--tone);
    opacity: 0.14;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.project-card__tagline {
    margin: 0 0 10px;
    font-family: 'Nothing You Could Do', cursive;
    font-size: 1.25rem;
    line-height: 1.3;
    color: var(--tone-text);
}

.project-card__name {
    margin: 0 0 var(--space-3);
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.875rem, 1.6rem + 1vw, 2.375rem);
    line-height: 1.05;
}

.project-card__desc {
    margin: 0 0 var(--space-5);
    color: var(--gray);
}

.project-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 22px;
    margin-top: auto;
}

@media (max-width: 1023px) {
    .project-grid {
        grid-template-columns: minmax(0, 1fr);
        max-width: 640px;
    }
}

/* Recently */
.past-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line-strong);
}

.past-item {
    display: grid;
    grid-template-columns: 140px minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: var(--space-4);
    padding: 18px 0;
    border-bottom: 1px solid var(--line-strong);
    font-size: 0.9375rem;
}

.past-item__date {
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
}

.past-item__title {
    font-weight: 600;
    color: var(--teal);
}

.past-item__sub {
    font-weight: 400;
    color: var(--gray);
}

.past-item__project {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.past-item__venue {
    color: var(--gray);
}

@media (max-width: 767px) {
    .past-item {
        grid-template-columns: minmax(0, 1fr);
        gap: 4px;
    }
}

/* Handwritten lines use a serif ampersand */
.script-amp {
    font-family: var(--font-serif);
    font-style: italic;
}

.mega-menu__badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    background: var(--coral-pale);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    vertical-align: 2px;
    color: var(--coral-text);
}


/* ==========================================================
   17 About page
   ========================================================== */

.about-hero {
    padding: clamp(48px, 7vw, 104px) 0 clamp(32px, 4vw, 56px);
}

.about-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: clamp(40px, 7vw, 112px);
}

.about-hero__title {
    margin-bottom: var(--space-4);
    font-size: clamp(3.25rem, 1.9rem + 5.4vw, 7rem);
}

.about-hero__sub {
    margin-bottom: var(--space-5);
    font-size: clamp(1.375rem, 1.2rem + 0.8vw, 1.875rem);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--teal);
}

.about-hero__text .lead {
    max-width: 44ch;
    color: var(--gray);
}

.about-hero__portrait {
    position: relative;
}

.host-portrait--large {
    max-width: 460px;
    margin-right: 0;
}

.host-portrait--large .host-portrait__img {
    border-radius: 260px 260px var(--radius-xl) var(--radius-xl);
}

.host-portrait--large .host-portrait__badge {
    width: 64px;
    height: 64px;
    right: -12px;
    bottom: 40px;
}

.about-hero__portrait .about-hero__stamp {
    position: absolute;
    left: 0;
    bottom: 24px;
    width: 180px;
    opacity: 0.9;
    transform: rotate(-9deg);
}

@media (max-width: 899px) {
    .about-hero__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .host-portrait--large {
        max-width: 380px;
        margin-inline: auto;
    }

    .about-hero__portrait .about-hero__stamp {
        width: 130px;
        left: 0;
    }
}

.stat-band {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    list-style: none;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--line);
}

.stat-band__item {
    display: grid;
    align-content: start;
    gap: 4px;
    padding: 24px;
    background: var(--off-white);
}

.stat-band__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
    border-radius: 50%;
}

.stat-band__icon.host-stat--sand { color: var(--teal); }
.stat-band__icon.host-stat--gold { color: var(--gold-text); }
.stat-band__icon.host-stat--aqua { color: var(--turquoise-text); }
.stat-band__icon.host-stat--coral { color: var(--coral-text); }
.stat-band__icon.host-stat--teal { color: var(--teal); }
.host-stat--turquoise { background: rgba(14, 155, 164, 0.12); }
.stat-band__icon.host-stat--turquoise { color: var(--turquoise-text); }

@media (max-width: 1199px) {
    .stat-band {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 599px) {
    .stat-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stat-band__item {
        padding: 20px 18px;
    }

    .stat-band__value {
        font-size: 1.375rem;
    }
}

.stat-band__value {
    font-size: 1.625rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--teal);
}

.stat-band__label {
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray);
}

.story__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: clamp(40px, 7vw, 112px);
}

.story__media {
    position: relative;
}

.story__text h2 {
    max-width: 16ch;
    margin-bottom: var(--space-5);
}

.story__text > p:not([class]) {
    max-width: 52ch;
}

.pull-quote {
    margin: var(--space-6) 0;
    padding: 6px 0 6px 28px;
    border-left: 3px solid var(--coral);
}

.pull-quote blockquote {
    margin: 0;
}

.pull-quote p {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(1.375rem, 1.2rem + 0.8vw, 1.875rem);
    line-height: 1.3;
    color: var(--teal);
}

.pull-quote figcaption {
    margin-top: var(--space-3);
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--gray);
}

@media (max-width: 899px) {
    .story__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .story__media img {
        max-height: 80vh;
    }
}


/* ==========================================================
   18 Contact page + form
   ========================================================== */

.contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: clamp(40px, 6vw, 96px);
}

.contact__heading {
    margin: 0 0 var(--space-4);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--gray);
}

.contact__place {
    position: relative;
    margin-top: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid var(--line);
}

.contact__place .contact__stamp {
    position: absolute;
    right: 0;
    top: 24px;
    width: 128px;
    opacity: 0.6;
    transform: rotate(-6deg);
}

.contact__base {
    margin-bottom: var(--space-2);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--teal);
}

.contact__motto {
    margin: 0;
    color: var(--gray);
}

.contact__form-wrap {
    padding: clamp(24px, 4vw, 48px);
    border: 1px solid var(--line);
    border-radius: 30px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    scroll-margin-top: calc(var(--header-h) + 24px);
}

.form-row--2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 var(--space-4);
}

.field {
    margin-bottom: 20px;
}

.field label {
    display: block;
    margin-bottom: 8px;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--teal);
}

.field__optional {
    margin-left: 6px;
    font-weight: 400;
    color: var(--gray);
}

.field input,
.field textarea {
    display: block;
    width: 100%;
    min-height: 52px;
    padding: 13px 16px;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: #FFFDFA;
    font-size: var(--fs-base);
    line-height: 1.5;
    color: var(--text);
    transition: border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}

.field textarea {
    min-height: 168px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--turquoise);
    box-shadow: 0 0 0 4px rgba(14, 155, 164, 0.16);
}

.field.has-error input,
.field.has-error textarea {
    border-color: #C24545;
}

.field__error {
    margin: 6px 0 0;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #A52A2A;
}

.form-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    display: flex;
    gap: 14px;
    margin-bottom: var(--space-5);
    padding: 18px 20px;
    border-radius: var(--radius-md);
}

.form-status:focus {
    outline: none;
}

.form-status p {
    margin: 0;
}

.form-status__title {
    font-weight: 600;
}

.form-status--success {
    background: var(--aqua-pale);
    border: 1px solid #BFE5DE;
    color: var(--teal);
}

.form-status__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--turquoise);
    color: var(--white);
}

.form-status--error {
    display: block;
    background: #FDEFEF;
    border: 1px solid #F1C6C6;
    color: #7A2323;
}

.form-status--error ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.form-status--error a {
    color: inherit;
}

.form-note {
    margin: var(--space-3) 0 0;
    font-size: 0.8125rem;
    color: var(--gray);
}

@media (max-width: 899px) {
    .contact__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact__form-wrap {
        order: -1;
    }
}

@media (max-width: 599px) {
    .form-row--2 {
        grid-template-columns: minmax(0, 1fr);
    }
}


/* ==========================================================
   19 404
   ========================================================== */

.not-found {
    padding: clamp(64px, 10vw, 140px) 0;
    text-align: center;
}

.not-found__icon {
    width: 128px;
    margin: 0 auto var(--space-6);
}

.not-found .eyebrow {
    justify-content: center;
}

.not-found__title {
    max-width: 16ch;
    margin: 0 auto;
    font-size: var(--fs-display-md);
}

.not-found .not-found__stamp {
    width: 170px;
    margin: var(--space-8) auto 0;
    opacity: 0.8;
    transform: rotate(-6deg);
}


/* ==========================================================
   20 Footer
   ========================================================== */

.site-footer {
    padding: clamp(64px, 8vw, 112px) 0 32px;
    border-top: 1px solid var(--line-soft);
    background: var(--off-white);
}

.site-footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr) minmax(0, 0.7fr) minmax(0, 1.2fr);
    gap: var(--space-7);
}

.brand--footer .brand__icon {
    height: 54px;
}

.brand--footer .brand__word {
    font-size: 1.375rem;
}

.site-footer__tagline {
    margin: var(--space-5) 0 0;
    font-family: var(--font-serif);
    font-size: 1.4375rem;
    font-style: italic;
    line-height: 1.3;
    color: var(--teal);
}

.site-footer__heading {
    margin: 6px 0 18px;
    font-size: var(--fs-2xs);
    font-weight: 600;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--gray);
}

.site-footer__links {
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__links a,
.footer-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    padding: 0;
    border: 0;
    background: none;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
    text-decoration: none;
    color: var(--teal);
    transition: color var(--dur-fast) ease;
}

.site-footer__links a:hover,
.footer-link-btn:hover {
    color: var(--turquoise-text);
}

.site-footer__links .icon {
    color: var(--turquoise);
}

.site-footer__stamps {
    position: relative;
    justify-self: end;
    width: 100%;
    max-width: 300px;
    text-align: center;
}

/* A little nod to Sabrina's family, beside the place line */
.site-footer__place-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-volleyball {
    flex: 0 0 auto;
    width: 44px;
    transform: rotate(-8deg);
    pointer-events: none;
}

.footer-volleyball img {
    width: 100%;
    height: auto;
}

.site-footer__stamp-title {
    margin: var(--space-5) 0 0;
    font-size: var(--fs-xs);
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--teal);
}

.site-footer__bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: end;
    gap: var(--space-5);
    margin-top: var(--space-8);
    padding-top: var(--space-5);
    border-top: 1px solid var(--line);
    font-size: 0.8125rem;
    color: var(--gray);
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__place {
    font-weight: 600;
    color: var(--teal);
}

.site-footer__legal {
    text-align: center;
}

.site-footer__credit {
    text-align: right;
}

.site-footer__credit a {
    font-weight: 600;
    color: var(--teal);
    text-underline-offset: 3px;
}

@media (max-width: 1023px) {
    .site-footer__top {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    }

    .site-footer__stamps {
        grid-column: 1 / -1;
        justify-self: start;
        text-align: left;
    }

    .site-footer__stamps .travel-stamps {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
    }

    .site-footer__top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-6);
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .site-footer__bottom {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--space-3);
    }

    .site-footer__legal,
    .site-footer__credit {
        text-align: left;
    }
}


/* ==========================================================
   21 Floating contact + drawer
   ========================================================== */

.contact-fab {
    position: fixed;
    top: 60vh;
    right: 0;
    z-index: 1500;
    display: flex;
    align-items: center;
    height: 58px;
    margin: 0;
    padding: 0;
    border: 1px solid var(--line);
    border-right: 0;
    border-radius: 18px 0 0 18px;
    background: var(--white);
    box-shadow: 0 10px 28px -12px rgba(8, 75, 81, 0.28), 0 2px 6px rgba(8, 75, 81, 0.06);
    color: var(--teal);
    transform: translateY(-50%);
    transition: box-shadow var(--dur) var(--ease), opacity var(--dur) var(--ease);
    -webkit-tap-highlight-color: transparent;
}

.contact-fab__label {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 0;
    padding-left: 0;
    overflow: hidden;
    opacity: 0;
    white-space: nowrap;
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
    color: var(--teal);
    transition:
        max-width var(--dur) var(--ease),
        padding var(--dur) var(--ease),
        opacity 180ms ease;
}

.contact-fab__label .icon {
    flex: 0 0 auto;
    color: var(--turquoise);
}

.contact-fab__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 58px;
    height: 56px;
}

.contact-fab__icon svg {
    filter: drop-shadow(0 2px 3px rgba(245, 107, 107, 0.28));
    transition: transform var(--dur) var(--ease);
}

@media (hover: hover) and (min-width: 768px) {
    .contact-fab:hover .contact-fab__label {
        max-width: 180px;
        padding-left: 20px;
        opacity: 1;
    }

    .contact-fab:hover {
        box-shadow: 0 14px 34px -12px rgba(8, 75, 81, 0.34), 0 2px 6px rgba(8, 75, 81, 0.06);
    }

    .contact-fab:hover .contact-fab__icon svg {
        transform: scale(1.06);
    }
}

@media (min-width: 768px) {
    .contact-fab:focus-visible .contact-fab__label {
        max-width: 180px;
        padding-left: 20px;
        opacity: 1;
    }
}

.contact-fab.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.contact-drawer__panel {
    position: absolute;
    top: 50%;
    right: 28px;
    width: 460px;
    max-width: calc(100vw - 56px);
    max-height: calc(100vh - 48px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 44px 40px 36px;
    border: 1px solid var(--line-soft);
    border-radius: 30px;
    background: var(--white);
    box-shadow: var(--shadow-float);
    opacity: 0;
    transform: translate(40px, -50%);
    transition: transform var(--dur-slow) var(--ease), opacity 240ms ease;
}

.contact-drawer.is-open .contact-drawer__panel {
    opacity: 1;
    transform: translate(0, -50%);
}

.contact-drawer__panel:focus {
    outline: none;
}

.contact-drawer__handle {
    display: none;
}

.contact-drawer__close {
    position: absolute;
    top: 20px;
    right: 20px;
    border-color: transparent;
}

.contact-drawer__title {
    margin: 0 0 var(--space-3);
    padding-right: 36px;
    font-size: 1.9375rem;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.contact-drawer__intro {
    max-width: 36ch;
    margin: 0 0 var(--space-6);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray);
}

.contact-options {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 78px;
    padding: 14px 18px 14px 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    text-decoration: none;
    color: var(--teal);
    transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.contact-option:hover {
    border-color: var(--line-strong);
    box-shadow: 0 10px 22px -16px rgba(8, 75, 81, 0.45);
}

.contact-option__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: var(--sand);
    color: var(--teal);
}

.contact-option__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1 1 auto;
    min-width: 0;
}

.contact-option__title {
    font-size: var(--fs-base);
    font-weight: 600;
    line-height: 1.25;
}

.contact-option__sub {
    font-size: 0.84375rem;
    line-height: 1.4;
    color: var(--gray);
    overflow-wrap: anywhere;
}

.contact-option__arrow {
    display: flex;
    flex: 0 0 auto;
    color: var(--turquoise);
    transition: transform 200ms var(--ease);
}

.contact-option:hover .contact-option__arrow {
    transform: translateX(2px);
}

.contact-option--whatsapp {
    background: #E9F7F3;
    border-color: #CBEBE3;
}

.contact-option--whatsapp:hover {
    background: #E1F4EE;
    border-color: #B5E2D7;
}

.contact-option--whatsapp .contact-option__icon { background: var(--white); color: #0B8A7E; }
.contact-option--email .contact-option__icon { background: rgba(14, 155, 164, 0.12); color: var(--turquoise-text); }
.contact-option--phone .contact-option__icon { background: var(--teal-pale); color: var(--teal); }
.contact-option--instagram .contact-option__icon { background: var(--coral-pale); color: var(--coral-text); }
.contact-option--airbnb .contact-option__icon { background: var(--sand); color: var(--teal); }
.contact-option--guidebooks .contact-option__icon { background: rgba(244, 192, 72, 0.22); color: var(--teal); }

.contact-drawer__foot {
    position: relative;
    z-index: 1;
    margin-top: 30px;
    padding: 24px 130px 0 0;
    border-top: 1px solid var(--line);
}

.contact-drawer__base {
    margin: 0 0 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--teal);
}

.contact-drawer__motto {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--gray);
}

/* A small portion of a stamp peeking from the corner */
.contact-drawer__panel .contact-drawer__stamp {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 150px;
    height: 112px;
    overflow: hidden;
    border-radius: 0 0 30px 0;
    opacity: 0.6;
}

.contact-drawer__stamp img {
    position: absolute;
    right: -28px;
    bottom: -22px;
    width: 160px;
    max-width: none;
    transform: rotate(-10deg);
}

@media (max-width: 767px) {
    .contact-fab {
        top: auto;
        right: 18px;
        bottom: calc(22px + env(safe-area-inset-bottom, 0px));
        justify-content: center;
        width: 56px;
        height: 56px;
        border: 1px solid var(--line);
        border-radius: 50%;
        transform: none;
        box-shadow: 0 12px 26px -10px rgba(8, 75, 81, 0.35), 0 2px 6px rgba(8, 75, 81, 0.08);
    }

    .contact-fab__label {
        display: none;
    }

    .contact-fab__icon {
        width: 56px;
        height: 56px;
    }

    .contact-drawer__panel {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: none;
        max-height: 90vh;
        max-height: 90dvh;
        padding: 30px 22px calc(28px + env(safe-area-inset-bottom, 0px));
        border: 0;
        border-radius: 28px 28px 0 0;
        box-shadow: 0 -20px 50px -20px rgba(8, 75, 81, 0.35);
        opacity: 1;
        transform: translateY(100%);
        -webkit-overflow-scrolling: touch;
    }

    .contact-drawer.is-open .contact-drawer__panel {
        transform: translateY(0);
    }

    .contact-drawer__handle {
        display: block;
        position: absolute;
        top: 10px;
        left: 50%;
        width: 42px;
        height: 4px;
        margin-left: -21px;
        border-radius: 4px;
        background: var(--line);
    }

    .contact-drawer__close {
        top: 16px;
        right: 14px;
        background: var(--sand);
    }

    .contact-drawer__panel .eyebrow {
        margin-top: 8px;
    }

    .contact-drawer__title {
        padding-right: 48px;
        font-size: 1.6875rem;
    }

    .contact-drawer__intro {
        margin-bottom: 22px;
    }

    .contact-options {
        gap: 10px;
    }

    .contact-option {
        min-height: 76px;
        border-radius: 20px;
    }

    .contact-drawer__foot {
        padding-right: 110px;
    }

    .contact-drawer__panel .contact-drawer__stamp {
        border-radius: 0;
        width: 130px;
        height: 100px;
    }
}


/* ==========================================================
   22 Utilities + motion
   ========================================================== */

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0s !important;
    }
}
