@font-face { font-family: "Bricolage Grotesque"; src: url("../fonts/bricolage-400.ttf") format("truetype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Bricolage Grotesque"; src: url("../fonts/bricolage-600.ttf") format("truetype"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Bricolage Grotesque"; src: url("../fonts/bricolage-800.ttf") format("truetype"); font-weight: 800; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("../fonts/dm-sans-400.ttf") format("truetype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("../fonts/dm-sans-500.ttf") format("truetype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "DM Mono"; src: url("../fonts/dm-mono-400.ttf") format("truetype"); font-weight: 400; font-display: swap; }

:root {
    --red: #fe3a3a;
    --black: #000;
    --white: #fff;
    --gray: #767676;
    --mist: #f5f5f5;
    --cream: #f5f0e8;
    --dark: #0a1628;
    --display: "Bricolage Grotesque", "Avenir Next", "Helvetica Neue", sans-serif;
    --body: "DM Sans", "Helvetica Neue", Arial, sans-serif;
    --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
    --page: 1200px;
    --gutter: clamp(20px, 4vw, 40px);
    --section: clamp(72px, 10vw, 140px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.instant-anchor { scroll-behavior: auto; }
body {
    margin: 0;
    background: var(--white);
    color: var(--black);
    font-family: var(--body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
::selection { background: var(--red); color: var(--white); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button, select { cursor: pointer; }
h1, h2, h3, p, blockquote, dl, dd, figure { margin-top: 0; }
h1, h2, h3, strong, b { font-weight: 600; }
h1, h2, h3 { font-family: var(--display); line-height: 1; text-wrap: balance; }
p { text-wrap: pretty; }

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

.skip-link {
    position: fixed;
    z-index: 200;
    top: 10px;
    left: 10px;
    padding: 10px 20px;
    border-radius: 35px;
    background: var(--red);
    color: var(--white);
    transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    height: 84px;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--black);
    transition: background-color .25s ease, border-color .25s ease;
}
.home-page .site-header {
    background: transparent;
    border-bottom-color: rgba(255,255,255,.35);
}
.home-page .site-header.scrolled {
    background: rgba(255,255,255,.96);
    border-bottom-color: var(--black);
}
.header-inner {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    width: 142px;
    height: 58px;
    display: grid;
    place-items: center;
    padding: 5px 10px;
    border-radius: 10px;
    background: var(--white);
}
.brand img {
    width: 100%;
    height: 48px;
    object-fit: contain;
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-socials { display: flex; gap: 6px; }
.header-socials a {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--black);
    border-radius: 35px;
    background: var(--white);
    color: var(--black);
    font-family: var(--mono);
    font-size: 10px;
    transition: background-color .2s ease, color .2s ease;
}
.header-socials a:hover {
    background: var(--red);
    color: var(--white);
}
.social-icon {
    width: 19px;
    height: 19px;
    display: block;
    flex: 0 0 auto;
}
.social-icon-instagram {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}
.social-icon-instagram .social-icon-dot {
    fill: currentColor;
    stroke: none;
}
.social-icon-facebook { fill: currentColor; }
.home-page:not(.menu-open) .site-header:not(.scrolled) .header-socials a {
    border-color: var(--white);
    background: transparent;
    color: var(--white);
}
.home-page:not(.menu-open) .site-header:not(.scrolled) .header-socials a:hover {
    border-color: var(--red);
    background: var(--red);
}
.header-cta {
    min-height: 44px;
    display: inline-grid;
    place-items: center;
    padding: 10px 20px;
    border-radius: 35px;
    background: var(--red);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(254,58,58,.25);
    font-size: 14px;
}
.menu-toggle {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid var(--black);
    border-radius: 10px;
    background: var(--white);
    color: var(--black);
}
.home-page:not(.menu-open) .site-header:not(.scrolled) .menu-toggle {
    border-color: var(--white);
    background: transparent;
    color: var(--white);
}
.menu-toggle i {
    width: 18px;
    display: grid;
    gap: 4px;
    font-style: normal;
}
.menu-toggle i span {
    height: 1px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle b { font-family: var(--body); font-size: 14px; font-weight: 400; }
.menu-toggle[aria-expanded="true"] i span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] i span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] i span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.menu-panel {
    position: fixed;
    z-index: 90;
    inset: 84px 0 0;
    overflow-y: auto;
    background: var(--dark);
    color: var(--white);
}
.menu-panel[hidden] { display: none; }
.menu-grid {
    min-height: calc(100svh - 84px);
    display: grid;
    grid-template-columns: .7fr 2fr .8fr;
    gap: 40px;
    padding-block: 60px 40px;
}
.menu-kicker, .mono-label, .eyebrow, .section-number {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.menu-links { container-type: inline-size; display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.menu-links a {
    font-family: var(--display);
    /* la voce più lunga misura 10.9 em: la dimensione segue la colonna così resta su una riga */
    font-size: clamp(28px, 4.3vw, 56px);
    font-size: clamp(22px, 8.8cqw, 56px);
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transition: color .2s ease;
}
.menu-links a:hover, .menu-links a[aria-current="page"] { color: var(--red); }
.menu-meta { align-self: end; font-size: 14px; }
.menu-meta a { border-bottom: 1px solid currentColor; }

.notice {
    position: relative;
    z-index: 3;
    margin-top: 104px;
    padding-block: 14px;
    border: 1px solid var(--black);
    border-radius: 10px;
    background: var(--cream);
}

.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    font-size: 14px;
    line-height: 1.3;
    transition: transform .2s ease, background-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary, .button-dark {
    border-radius: 35px;
    background: var(--red);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(254,58,58,.25);
}
.button-secondary, .button-light {
    border-color: var(--black);
    background: var(--white);
    color: var(--black);
}
.button-on-dark {
    border-color: var(--white);
    background: transparent;
    color: var(--white);
}
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 3px;
}

.camp-hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
}
.camp-hero-image, .camp-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.camp-hero-image { object-fit: cover; object-position: center; }
.camp-hero-shade { background: linear-gradient(90deg, rgba(10,22,40,.78) 0%, rgba(10,22,40,.5) 48%, rgba(10,22,40,.16) 100%); }
.camp-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 130px;
    padding-bottom: 100px;
}
.hero-label { margin-bottom: 20px; color: var(--white); }
.camp-hero h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(64px, 9vw, 112px);
    font-weight: 600;
    line-height: .88;
    letter-spacing: -.045em;
}
.hero-intro {
    max-width: 520px;
    margin-bottom: 30px;
    font-size: 18px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.camp-patch {
    position: absolute;
    z-index: 3;
    width: 118px;
    min-height: 138px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 10px 25px;
    border: 2px solid currentColor;
    border-radius: 50% 50% 42% 42% / 38% 38% 60% 60%;
    font-family: var(--mono);
    text-align: center;
    box-shadow: 0 4px 20px rgba(10,22,40,.4);
    transform: rotate(var(--rotate));
}
.camp-patch span, .camp-patch small { font-size: 9px; letter-spacing: .04em; }
.camp-patch b { margin: 3px 0; font-family: var(--display); font-size: 34px; }
.patch-books { --rotate: 8deg; top: 19%; right: 8%; background: var(--red); color: var(--white); }
.patch-valley { --rotate: -9deg; right: 25%; bottom: 13%; background: var(--white); color: var(--black); }
.patch-people { --rotate: -5deg; left: 48%; top: 20%; background: transparent; color: var(--white); }
.hero-foot {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 20px;
    left: 0;
    display: flex;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
}

.summit-section, .section { padding-top: var(--section); }
.asymmetric-intro {
    display: grid;
    grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
    gap: clamp(40px, 10vw, 140px);
    align-items: end;
}
.asymmetric-intro > div > p:not(.mono-label) { max-width: 460px; margin: 20px 0 30px; }
.asymmetric-intro h2 {
    margin: 0;
    font-size: clamp(50px, 7.5vw, 90px);
    letter-spacing: -.04em;
}

.cream-feature {
    position: relative;
    display: grid;
    grid-template-columns: .7fr .9fr 1fr;
    gap: 40px;
    overflow: hidden;
    padding: clamp(30px, 6vw, 70px);
    border-radius: 20px;
    background: var(--cream);
}
.maria-home-portrait {
    min-height: 360px;
    overflow: hidden;
    margin: 0;
    border-radius: 20px;
    background: var(--white);
}
.maria-home-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.cream-feature h2 {
    margin: 15px 0 0;
    color: var(--red);
    font-size: clamp(56px, 8vw, 90px);
    letter-spacing: -.04em;
}
.cream-copy { align-self: end; max-width: 460px; }
.cream-copy p { margin-bottom: 20px; }
.feature-badge {
    position: absolute;
    top: -22px;
    right: 5%;
    width: 110px;
    height: 130px;
    display: grid;
    place-items: center;
    border: 2px solid var(--black);
    border-radius: 50% 50% 42% 42% / 38% 38% 60% 60%;
    font-family: var(--display);
    font-size: 26px;
    transform: rotate(8deg);
}
.text-link, .back-link {
    display: inline-block;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--black);
    font-size: 14px;
}
.text-link:hover, .back-link:hover { color: var(--red); border-color: var(--red); }

.events-home, .messages-home {
    margin-top: var(--section);
    padding-bottom: var(--section);
    background: var(--mist);
}
.section-heading { margin-bottom: 40px; }
.section-heading .section-number {
    display: block;
    margin-bottom: 15px;
}
.section-heading h2 {
    max-width: 950px;
    margin: 0;
    font-size: clamp(46px, 7vw, 90px);
    letter-spacing: -.04em;
}
.section-topline {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}
.section-topline p { max-width: 520px; margin: 0; }

.program-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--black);
    list-style: none;
}
.program-card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    padding: 24px 24px 28px;
    border-right: 1px solid var(--black);
}
.program-card:first-child { border-left: 1px solid var(--black); }
.program-index {
    font-family: var(--mono);
    font-size: 10px;
}
.program-card h3 {
    margin: auto 0 16px;
    font-size: clamp(25px, 2.3vw, 34px);
    line-height: 1;
}
.program-card p { margin: 0; }

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 20px;
}
.event-card { min-width: 0; }
.event-image-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    background: var(--cream);
}
.event-image-link img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .4s ease;
}
.event-image-link img.event-image-fallback {
    padding: clamp(34px, 6vw, 76px);
    background: var(--white);
    object-fit: contain;
}
.event-image-link:hover img { transform: scale(1.03); }
.date-stamp {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 68px;
    height: 68px;
    display: grid;
    place-content: center;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-family: var(--mono);
    font-size: 9px;
    line-height: 1;
    text-align: center;
}
.date-stamp span { font-family: var(--display); font-size: 26px; }
.event-caption { padding: 18px 4px 0; }
.event-caption h3 { margin: 8px 0 12px; font-size: 26px; line-height: 1.05; }
.event-caption > p:not(.event-meta) { margin-bottom: 15px; }
.event-meta, .guest-role {
    margin-bottom: 8px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.empty-state { max-width: 650px; padding: 30px 0; font-family: var(--display); font-size: 26px; }

.photo-story {
    position: relative;
    min-height: min(760px, 85svh);
    overflow: hidden;
    border-radius: 20px;
    background: var(--dark);
    color: var(--white);
}
.photo-story > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-story::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10,22,40,.55);
}
.photo-story-copy {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: clamp(30px, 7vw, 80px);
}
.photo-story-copy h2 {
    margin: 20px 0;
    font-size: clamp(50px, 7vw, 90px);
    letter-spacing: -.04em;
}
.photo-story-copy > p:not(.mono-label) { max-width: 480px; margin-bottom: 30px; }

.guest-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.guest-order-note {
    margin: -20px 0 30px;
    color: var(--gray);
}
.guest-search {
    max-width: 820px;
    margin-bottom: 24px;
}
.guest-search > label {
    display: block;
    margin-bottom: 9px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.guest-search-field {
    position: relative;
}
.guest-search-field svg {
    position: absolute;
    top: 50%;
    left: 17px;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.7;
    transform: translateY(-50%);
    pointer-events: none;
}
.guest-search-field input {
    min-height: 54px;
    padding: 12px 82px 12px 48px;
    border-color: var(--black);
    border-radius: 35px;
}
.guest-search-field input::-webkit-search-cancel-button { display: none; }
.guest-search-reset {
    position: absolute;
    top: 50%;
    right: 18px;
    padding: 4px 0;
    border: 0;
    border-bottom: 1px solid currentColor;
    background: transparent;
    font-size: 14px;
    transform: translateY(-50%);
}
.guest-search-reset:hover { color: var(--red); }
.guest-search-summary {
    margin: 0 0 22px;
    color: var(--gray);
    font-size: 14px;
}
.guest-card[hidden],
.guest-search-summary[hidden],
.guest-search-reset[hidden],
.guest-search-empty[hidden] { display: none; }
.guest-search-empty { padding-top: 12px; }
.guest-card {
    position: relative;
    min-height: 150px;
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--black);
    border-radius: 20px;
    background: var(--white);
}
.guest-visual {
    width: 92px;
    height: 112px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 10px;
    background: var(--cream);
}
.guest-visual > span { font-family: var(--display); font-size: 34px; }
.guest-visual img { width: 100%; height: 100%; object-fit: cover; }
.guest-caption { min-width: 0; }
.guest-caption h3 { margin: 0 0 5px; font-size: 22px; line-height: 1.05; }
.guest-caption > p:not(.guest-role) { margin: 0; font-size: 14px; line-height: 1.3; }
.guest-arrow {
    position: absolute;
    right: 14px;
    bottom: 10px;
    color: var(--red);
}

.message-compose-section { padding-top: 0; }
.message-form-disclosure {
    overflow: hidden;
    border: 1px solid var(--black);
    border-radius: 22px;
    background: var(--white);
}
.message-form-disclosure > summary {
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: clamp(24px, 4vw, 45px);
    background: var(--red);
    color: var(--white);
    cursor: pointer;
    list-style: none;
}
.message-form-disclosure > summary::-webkit-details-marker { display: none; }
.message-form-summary-copy { display: grid; gap: 10px; }
.message-form-summary-copy .eyebrow { color: inherit; }
.message-form-summary-copy strong {
    font-family: var(--display);
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -.025em;
}
.message-form-summary-icon {
    position: relative;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border: 1px solid currentColor;
    border-radius: 50%;
}
.message-form-summary-icon::before,
.message-form-summary-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform .25s ease;
}
.message-form-summary-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.message-form-disclosure[open] .message-form-summary-icon::after { transform: translate(-50%, -50%) rotate(0); }
.message-form-panel {
    padding: clamp(28px, 5vw, 60px);
    border-top: 1px solid var(--black);
}
.messages-list-section { padding-top: var(--section); }
.messages-list-label { margin: 0 0 24px; }
.message-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.messages-list-section .message-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.messages-list-section .message-card {
    height: 100%;
}
.message-card {
    margin: 0;
    padding: clamp(25px, 5vw, 50px);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 20px;
    background: var(--white);
    transition: border-color .25s ease, transform .25s ease;
}
.message-card:hover { border-color: rgba(0, 0, 0, .22); transform: translateY(-2px); }
.message-card-scan {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 20px 0 24px;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 12px;
    background: var(--cream);
    cursor: zoom-in;
    transition: border-color .25s ease, transform .25s ease;
}
.message-card-scan img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}
.message-card-scan span {
    position: absolute;
    right: 7px;
    bottom: 7px;
    padding: 5px 8px;
    border-radius: 30px;
    background: rgba(0, 0, 0, .82);
    color: var(--white);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.message-card-scan:hover,
.message-card-scan:focus-visible { border-color: var(--black); transform: translateY(-2px); }
.message-card-scan:hover img { transform: scale(1.04); }
.message-card > p { margin: 20px 0 30px; font-family: var(--display); font-size: clamp(26px, 3.5vw, 42px); line-height: 1.05; }
.messages-list-section .message-card > p { font-size: clamp(25px, 2.4vw, 36px); }
.message-card footer { display: grid; gap: 8px; }
.message-card footer a { padding-bottom: 2px; border-bottom: 1px solid currentColor; }
.message-card footer time {
    color: var(--gray);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.guest-label { display: inline-flex; padding: 7px 12px; border-radius: 35px; background: var(--red); color: var(--white); font-size: 10px; text-transform: uppercase; }
.section-action { margin-top: 30px; }
.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.lightbox-open { overflow: hidden; }
.message-lightbox {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    padding: clamp(18px, 4vw, 48px);
    border: 0;
    background: transparent;
    color: var(--white);
}
.message-lightbox[open] {
    display: grid;
    place-items: center;
    animation: lightbox-in .25s ease both;
}
.message-lightbox::backdrop {
    background: rgba(10, 22, 40, .9);
    backdrop-filter: blur(7px);
}
.message-lightbox-frame {
    position: relative;
    display: grid;
    place-items: center;
    width: min(100%, 1100px);
    height: 100%;
}
.message-lightbox img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(100svh - 96px);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
    object-fit: contain;
}
.message-lightbox-close {
    position: fixed;
    z-index: 1;
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    padding: 0 0 3px;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 50%;
    background: rgba(0, 0, 0, .55);
    color: var(--white);
    font-size: 32px;
    line-height: 1;
    transition: background-color .2s ease, transform .2s ease;
}
.message-lightbox-close:hover,
.message-lightbox-close:focus-visible { background: var(--red); transform: rotate(4deg); }
@keyframes lightbox-in {
    from { opacity: 0; transform: scale(.985); }
    to { opacity: 1; transform: none; }
}

.social-band { margin-top: var(--section); padding-block: var(--section); background: var(--dark); color: var(--white); }
.social-band-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px 70px; align-items: end; }
.social-band h2 { margin: 20px 0 0; font-size: clamp(50px, 7vw, 90px); letter-spacing: -.04em; }
.social-band-grid > p { max-width: 470px; margin: 0; }
.social-actions { grid-column: 2; display: flex; flex-wrap: wrap; gap: 10px; }

.site-footer { padding-top: var(--section); }
.footer-statement {
    max-width: none;
    margin: 20px 0 70px;
    font-family: var(--display);
    font-size: clamp(48px, 7vw, 90px);
    font-weight: 600;
    line-height: .95;
    letter-spacing: -.04em;
}
@media (min-width: 981px) {
    .footer-statement {
        font-size: clamp(56px, 5.7vw, 82px);
        white-space: nowrap;
    }
}
.footer-support {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: clamp(45px, 8vw, 110px);
    align-items: start;
    padding-block: 34px 44px;
    border-top: 1px solid var(--black);
}
.footer-support-group { min-width: 0; }
.footer-support-group > .mono-label { margin-bottom: 22px; }
.footer-support-logos {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
}
.partner-logo {
    width: auto;
    max-width: 100%;
    max-height: 86px;
    object-fit: contain;
    object-position: left center;
}
.partner-logo-heart { max-width: 240px; }
.partner-logo-municipality { max-width: 300px; }
.partner-logo-foundation { max-width: 360px; max-height: 105px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    padding-block: 30px;
    border-top: 1px solid var(--black);
}
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-grid p { margin-bottom: 8px; }
.footer-social-link { display: inline-flex; align-items: center; gap: 9px; }
.footer-social-link .social-icon { width: 18px; height: 18px; }
.footer-grid a:hover { color: var(--red); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-block: 20px 30px;
    border-top: 1px solid var(--black);
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
}
.footer-legal { display: flex; align-items: center; justify-content: center; gap: 14px; }
.footer-legal a, .footer-legal button {
    padding: 0 0 2px;
    border: 0;
    border-bottom: 1px solid currentColor;
    background: transparent;
    font: inherit;
    text-transform: inherit;
}
.footer-legal a:hover, .footer-legal button:hover { color: var(--red); }
.footer-credit {
    padding-block: 0 20px;
    font-family: var(--mono);
    font-size: 10px;
    text-align: center;
    text-transform: uppercase;
}
.footer-credit a { border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.footer-credit a:hover { color: var(--red); }

.cookie-consent {
    position: fixed;
    z-index: 300;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 18px var(--gutter);
    background: var(--dark);
    color: var(--white);
    box-shadow: 0 -16px 45px rgba(0,0,0,.22);
}
.cookie-consent[hidden] { display: none; }
.cookie-consent-inner {
    width: min(100%, var(--page));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px 40px;
}
.cookie-consent-copy { max-width: 790px; }
.cookie-consent-copy .mono-label { margin-bottom: 8px; color: rgba(255,255,255,.7); }
.cookie-consent-copy h2 {
    margin-bottom: 8px;
    font-size: clamp(25px, 3vw, 34px);
}
.cookie-consent-copy p:not(.mono-label) { margin-bottom: 8px; font-size: 14px; line-height: 1.5; }
.cookie-consent-copy a {
    display: inline-block;
    padding-bottom: 2px;
    border-bottom: 1px solid currentColor;
    font-size: 13px;
}
.cookie-consent-copy a:hover { color: var(--red); }
.cookie-consent-actions { display: flex; gap: 10px; }
.cookie-consent-button {
    min-width: 120px;
    min-height: 46px;
    padding: 10px 20px;
    border: 1px solid var(--white);
    border-radius: 35px;
    font-size: 14px;
    transition: background-color .2s ease, color .2s ease;
}
.cookie-consent-reject { background: transparent; color: var(--white); }
.cookie-consent-accept { background: var(--white); color: var(--dark); }
.cookie-consent-button:hover { border-color: var(--red); background: var(--red); color: var(--white); }

.legal-section { padding-bottom: var(--section); background: var(--mist); }
.legal-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
}
.legal-content > div {
    min-width: 0;
    padding: clamp(28px, 4vw, 50px);
    background: var(--white);
    outline: 1px solid var(--black);
}
.legal-content h2 { margin: 14px 0 20px; font-size: clamp(32px, 4vw, 50px); }
.legal-content p { max-width: 650px; line-height: 1.65; }
.legal-content a { border-bottom: 1px solid currentColor; }
.legal-content code {
    padding: 2px 5px;
    border-radius: 4px;
    background: var(--cream);
    font-family: var(--mono);
    font-size: .88em;
    overflow-wrap: anywhere;
}

.page-hero {
    padding-top: clamp(170px, 18vw, 250px);
    padding-bottom: clamp(70px, 9vw, 120px);
}
.page-hero h1 {
    max-width: 1050px;
    margin: 20px 0 30px;
    font-size: clamp(58px, 9vw, 110px);
    letter-spacing: -.045em;
}
.page-hero > p:last-child { max-width: 650px; margin: 0; }
/* apertura più bassa: il titolo sta su una riga e l'elenco dei video arriva subito */
.page-hero.video-hero {
    padding-top: clamp(120px, 12vw, 168px);
    padding-bottom: clamp(36px, 5vw, 56px);
}
.page-hero.video-hero h1 {
    max-width: 1150px;
    margin: 14px 0 22px;
    font-size: clamp(42px, 5.4vw, 76px);
}
.filter-section { padding-bottom: 10px; }
.filters { display: flex; align-items: end; flex-wrap: wrap; gap: 10px; }
.segmented { display: flex; margin-right: auto; padding: 4px; border: 1px solid var(--black); border-radius: 35px; }
.segmented a { min-height: 40px; display: grid; place-items: center; padding: 8px 16px; border-radius: 35px; font-size: 14px; }
.segmented a.active { background: var(--red); color: var(--white); }
.filters label { display: grid; gap: 6px; font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
select, input, textarea {
    width: 100%;
    border: 1px solid var(--gray);
    border-radius: 10px;
    background: var(--white);
}
select, input { min-height: 44px; padding: 10px 15px; }
textarea { padding: 12px 15px; resize: vertical; }
.filters select { min-width: 145px; }

.event-detail-hero, .profile-hero {
    display: grid;
    grid-template-columns: 1.1fr .65fr;
    gap: clamp(40px, 9vw, 130px);
    align-items: center;
    padding-top: clamp(150px, 16vw, 220px);
}
.profile-hero { grid-template-columns: 260px 1fr; }
.event-detail-copy h1, .profile-copy h1 {
    margin: 30px 0 20px;
    font-size: clamp(58px, 8vw, 100px);
    letter-spacing: -.045em;
}
.event-detail-copy .eyebrow, .profile-copy .eyebrow { margin-top: 50px; }
.event-subtitle, .lead { max-width: 680px; font-family: var(--display); font-size: 26px; line-height: 1.2; }
.event-detail-poster img { width: 100%; max-height: 680px; border-radius: 20px; object-fit: cover; object-position: top; }
.event-detail-poster img.event-image-fallback {
    aspect-ratio: 4 / 3;
    padding: clamp(28px, 5vw, 60px);
    background: var(--white);
    object-fit: contain;
}
.event-facts { margin-top: 40px; }
.event-facts > div { display: grid; grid-template-columns: 100px 1fr; padding: 12px 0; border-top: 1px solid var(--black); }
.event-facts dt { font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.narrow-section .prose { max-width: 700px; margin-left: auto; margin-right: 15%; }
.prose { font-size: 16px; line-height: 1.55; }
.prose .lead { margin-bottom: 30px; }
.prose p { margin-bottom: 20px; }
.event-gallery {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 15px;
}
.event-gallery img { width: 100%; height: 100%; min-height: 300px; border-radius: 20px; object-fit: cover; }
.event-gallery img:nth-child(n+3) { aspect-ratio: 1 / 1; }
.share-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.share-row p { margin: 0; font-family: var(--display); font-size: 26px; }
.event-grid-related { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.profile-visual { width: 260px; height: 320px; border-radius: 20px; }
.profile-visual > span { font-size: 70px; }
.featured-quote { max-width: 800px; margin: 60px 0 0 auto; background: var(--cream); }

.guest-profile-hero {
    padding-top: clamp(160px, 18vw, 230px);
    padding-bottom: clamp(70px, 9vw, 120px);
    border-bottom: 1px solid var(--black);
}
.guest-profile-hero .eyebrow { margin: clamp(55px, 8vw, 100px) 0 20px; }
.guest-profile-hero h1 {
    max-width: 1100px;
    margin: 0;
    font-size: clamp(62px, 10vw, 130px);
    line-height: .88;
    letter-spacing: -.05em;
}
.guest-profile-section {
    display: grid;
    grid-template-columns: minmax(180px, .55fr) minmax(0, 1.45fr);
    gap: clamp(45px, 10vw, 150px);
    padding-top: var(--section);
}
.guest-profile-section-heading .mono-label { margin-bottom: 16px; }
.guest-profile-section-heading h2 {
    margin: 0;
    font-size: clamp(38px, 5vw, 64px);
    line-height: .95;
    letter-spacing: -.035em;
}
.guest-profile-biography {
    max-width: 820px;
    font-family: var(--display);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.25;
}
.guest-profile-biography p { margin: 0; }
.guest-profile-events { padding-bottom: var(--section); }
.guest-profile-event-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.guest-profile-event-card {
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100%;
    border: 1px solid var(--black);
    border-radius: 20px;
    background: var(--white);
    transition: transform .2s ease, box-shadow .2s ease;
}
.guest-profile-event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 0 rgba(0, 0, 0, .08);
}
.guest-profile-event-image {
    min-height: 220px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--red);
    color: var(--white);
    font-family: var(--display);
    font-size: 32px;
}
.guest-profile-event-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.guest-profile-event-copy {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 24px;
}
.guest-profile-event-copy strong {
    font-family: var(--display);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.05;
}
.guest-profile-event-copy .text-link { margin-top: auto; padding-top: 8px; }
.guest-profile-empty { max-width: 560px; margin: 0; }
.guest-profile-messages { padding-bottom: var(--section); }
.guest-profile-messages .message-grid { grid-template-columns: minmax(0, 1fr); }
.guest-profile-videos { padding-bottom: var(--section); }
.guest-profile-event-image { position: relative; }
.guest-profile-event-image .video-play { width: 54px; height: 54px; }
.guest-profile-event-image .video-play svg { width: 22px; height: 22px; }

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 20px;
}
.video-card { min-width: 0; }
.video-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    background: var(--cream);
}
.video-thumb img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform .4s ease;
}
.video-thumb img.event-image-fallback {
    padding: clamp(28px, 5vw, 60px);
    background: var(--white);
    object-fit: contain;
}
.video-thumb:hover img { transform: scale(1.03); }
.video-play {
    position: absolute;
    inset: 0;
    width: 66px;
    height: 66px;
    margin: auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    transition: transform .2s ease;
}
.video-play svg {
    width: 26px;
    height: 26px;
    margin-left: 3px;
    fill: currentColor;
}
.video-thumb:hover .video-play { transform: scale(1.08); }
.video-people { font-size: 14px; }
.video-people a { border-bottom: 1px solid var(--black); }
.video-people a:hover { color: var(--red); border-color: var(--red); }

.video-detail-hero {
    padding-top: clamp(160px, 18vw, 230px);
    padding-bottom: clamp(30px, 5vw, 55px);
}
.video-detail-hero .eyebrow { margin: clamp(45px, 7vw, 85px) 0 20px; }
.video-detail-hero h1 {
    max-width: 1100px;
    margin: 0;
    font-size: clamp(48px, 7vw, 92px);
    line-height: .92;
    letter-spacing: -.045em;
}
.video-player-section { padding-bottom: var(--section); }
.video-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    background: var(--dark);
}
.video-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
.video-facade {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.video-facade img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-facade .video-play { width: 88px; height: 88px; }
.video-facade .video-play svg { width: 34px; height: 34px; }
.video-facade:hover .video-play, .video-facade:focus-visible .video-play { transform: scale(1.08); }
.video-privacy-note {
    margin: 14px 0 0;
    color: var(--gray);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.video-facts { max-width: 760px; }

.guest-event-stories { display: grid; gap: 80px; }
.guest-event-story {
    display: grid;
    grid-template-columns: .55fr 1.45fr;
    gap: clamp(30px, 7vw, 90px);
    align-items: start;
}
.guest-event-heading h3 { margin: 12px 0 15px; font-size: 38px; }
.event-photo-strip { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.event-photo-strip img { width: 100%; height: 280px; border-radius: 20px; object-fit: cover; }
.event-photo-strip img:first-child:nth-last-child(1) { grid-column: 1 / -1; height: 420px; }
.gallery-pending {
    grid-column: 1 / -1;
    min-height: 220px;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 30px;
    border: 1px solid var(--black);
    border-radius: 20px;
    background: var(--cream);
    font-family: var(--mono);
    font-size: 10px;
    text-align: center;
    text-transform: uppercase;
}

.form-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(40px, 10vw, 140px); }
.form-intro .large-copy, .large-copy { font-family: var(--display); font-size: 26px; line-height: 1.2; }
.form-intro > p:not(.large-copy) { max-width: 420px; margin-top: 25px; }
.editorial-form { display: grid; gap: 20px; padding: clamp(24px, 5vw, 50px); border-radius: 20px; background: var(--cream); }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.editorial-form label { display: grid; gap: 7px; font-size: 14px; }
.editorial-form .check { grid-template-columns: 20px 1fr; align-items: start; }
.check input { width: 18px; min-height: 18px; height: 18px; accent-color: var(--red); }
.editorial-form .button { justify-self: start; }
.honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.form-confirmation {
    min-height: 470px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(28px, 5vw, 56px);
    border-radius: 20px;
    background: var(--cream);
}
.form-confirmation-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 34px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
}
.form-confirmation-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.form-confirmation h3 {
    max-width: 620px;
    margin: 14px 0 20px;
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1;
}
.form-confirmation > p:last-child {
    max-width: 560px;
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
}
.form-confirmation-dark {
    min-height: 590px;
    background: var(--white);
    color: var(--black);
}

.contact-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    gap: clamp(45px, 8vw, 110px);
    align-items: end;
    padding-top: clamp(170px, 18vw, 245px);
    padding-bottom: clamp(80px, 10vw, 130px);
}
.contact-hero-copy h1 {
    max-width: 880px;
    margin: 20px 0 30px;
    font-size: clamp(66px, 9vw, 112px);
    line-height: .88;
    letter-spacing: -.05em;
}
.contact-hero-copy > p:last-of-type {
    max-width: 650px;
    margin-bottom: 30px;
    font-size: 18px;
}
.contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.contact-hero-card {
    position: relative;
    min-height: 390px;
    display: grid;
    align-content: end;
    overflow: hidden;
    padding: clamp(28px, 4vw, 45px);
    border-radius: 20px;
    background: var(--dark);
    color: var(--white);
}
.contact-hero-card::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    top: -120px;
    right: -100px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
}
.contact-hero-pin {
    position: absolute;
    top: 38px;
    left: 38px;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
}
.contact-hero-pin svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}
.contact-hero-card > strong {
    max-width: 300px;
    margin: 12px 0 8px;
    font-family: var(--display);
    font-size: clamp(30px, 3vw, 42px);
    line-height: .98;
}
.contact-hero-card > p { margin-bottom: 0; }
.contact-hero-hours {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 15px;
    margin-top: 35px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.35);
}
.contact-hero-hours span {
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
}
.contact-hero-hours b { font-weight: 500; }

.location-section {
    scroll-margin-top: 84px;
    padding-bottom: var(--section);
    background: var(--mist);
}
.location-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
    gap: 20px;
    align-items: stretch;
}
.map-frame {
    min-height: 570px;
    overflow: hidden;
    border: 1px solid var(--black);
    border-radius: 20px;
    background: var(--cream);
}
.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 570px;
    display: block;
    border: 0;
}
.location-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(28px, 4vw, 45px);
    border: 1px solid var(--black);
    border-radius: 20px;
    background: var(--white);
}
.location-card h3 {
    margin: 18px 0 24px;
    font-size: clamp(34px, 4vw, 48px);
    line-height: .98;
}
.location-address {
    margin-bottom: 32px;
    font-size: 18px;
}
.location-facts {
    width: 100%;
    margin: auto 0 30px;
}
.location-facts > div {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid var(--black);
}
.location-facts dt {
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
}
.location-facts dd { margin: 0; }

.general-contact-section {
    scroll-margin-top: 84px;
    padding-bottom: var(--section);
}
.contact-form-layout { align-items: start; }
.direct-contacts {
    display: grid;
    margin-top: 40px;
    border-bottom: 1px solid var(--black);
}
.direct-contacts a {
    display: grid;
    gap: 7px;
    padding: 18px 0;
    border-top: 1px solid var(--black);
}
.direct-contacts a:hover strong { color: var(--red); }
.direct-contacts span {
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
}
.direct-contacts strong {
    overflow-wrap: anywhere;
    font-size: 15px;
    font-weight: 500;
    transition: color .2s ease;
}

.meeting-section {
    scroll-margin-top: 84px;
    padding-bottom: var(--section);
    background: var(--dark);
    color: var(--white);
}
.meeting-section .section-number { color: rgba(255,255,255,.66); }
.meeting-layout {
    display: grid;
    grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
    gap: clamp(45px, 9vw, 130px);
    align-items: start;
}
.meeting-intro .large-copy {
    max-width: 440px;
    font-size: clamp(28px, 3.2vw, 42px);
}
.meeting-intro > p:not(.large-copy) {
    max-width: 460px;
    margin: 28px 0 35px;
    color: rgba(255,255,255,.78);
}
.meeting-audiences {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    list-style: none;
}
.meeting-audiences li {
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 35px;
    font-size: 13px;
}
.proposal-form {
    background: var(--white);
    color: var(--black);
}

.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 9vw, 130px);
}
.body-copy { max-width: 650px; }
.community-work {
    scroll-margin-top: 84px;
    margin-top: var(--section);
    padding-bottom: var(--section);
    background: var(--mist);
}
.community-work-lead {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    gap: clamp(35px, 8vw, 120px);
    align-items: end;
    margin-bottom: 55px;
}
.community-work-lead > * { margin: 0; }
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.work-card {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid var(--black);
    border-radius: 20px;
    background: var(--white);
}
.work-card h3 {
    margin: 30px 0;
    font-size: clamp(32px, 3.4vw, 48px);
    line-height: 1;
}
.work-card > p:last-child { margin-top: auto; }
.work-card-dark {
    background: var(--dark);
    color: var(--white);
}
.maria-biography {
    display: grid;
    grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
    gap: clamp(40px, 8vw, 110px);
    align-items: start;
}
.maria-profile {
    position: sticky;
    top: 110px;
}
.maria-portrait-frame {
    height: 540px;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    background: var(--cream);
}
.maria-portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.maria-facts {
    margin: 20px 0;
}
.maria-facts > div {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid var(--black);
}
.maria-facts dt {
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
}
.maria-facts dd { margin: 0; }
.maria-copy { max-width: 760px; }
.maria-copy > p:first-child::first-letter {
    float: left;
    margin: 3px 8px 0 0;
    color: var(--red);
    font-family: var(--display);
    font-size: 72px;
    font-weight: 600;
    line-height: .75;
}
.maria-copy blockquote {
    margin: 45px 0 0;
    padding: clamp(24px, 5vw, 45px);
    border-radius: 20px;
    background: var(--cream);
    color: var(--black);
    font-family: var(--display);
    font-size: 26px;
    line-height: 1.2;
}
.collection-story {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(40px, 8vw, 110px);
    align-items: center;
}
.collection-copy .large-copy { margin-top: 0; }
.collection-image {
    min-height: 620px;
    overflow: hidden;
    margin: 0;
    border-radius: 20px;
}
.collection-image img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
}
.culture-section {
    margin-top: var(--section);
    padding-bottom: var(--section);
    background: var(--dark);
    color: var(--white);
}
.culture-layout {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(45px, 10vw, 140px);
}
.culture-statement {
    align-self: start;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.5);
}
.culture-statement > p:last-child {
    font-family: var(--display);
    font-size: clamp(34px, 4.5vw, 58px);
    line-height: 1;
}
.culture-copy { max-width: 680px; }
.culture-copy p { margin-top: 0; margin-bottom: 24px; }
.culture-copy .button { margin-top: 12px; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.story-image { overflow: hidden; border-radius: 20px; }
.story-image img { width: 100%; min-height: 520px; object-fit: cover; }
.living-list { grid-column: 1 / -1; padding: 0; list-style: none; }
.living-list li { padding: 15px; border-top: 1px solid var(--black); }
.final-cta { padding-bottom: var(--section); }
.final-cta h2 { margin: 20px 0 30px; font-size: clamp(50px, 7vw, 90px); }
.error-page { min-height: 70svh; padding-top: 200px; }
.error-page h1 { margin: 20px 0; font-size: clamp(58px, 9vw, 100px); }

.reveal { animation: enter .6s both cubic-bezier(.2,.7,.2,1); }
.reveal:nth-child(2) { animation-delay: .08s; }
.reveal:nth-child(3) { animation-delay: .16s; }
.reveal:nth-child(4) { animation-delay: .24s; }
@keyframes enter { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

@media (max-width: 980px) {
    .menu-grid { grid-template-columns: 1fr; }
    .menu-meta { align-self: start; }
    .patch-people { display: none; }
    .asymmetric-intro, .cream-feature, .form-layout, .feature-split, .maria-biography, .contact-hero, .location-layout, .meeting-layout, .community-work-lead, .collection-story, .culture-layout { grid-template-columns: 1fr; }
    .feature-badge { right: 8%; }
    .event-grid, .guest-grid, .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .program-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .program-card:nth-child(3) { border-left: 1px solid var(--black); }
    .program-card:nth-child(n+3) { border-top: 1px solid var(--black); }
    .work-grid { grid-template-columns: 1fr; }
    .work-card { min-height: 320px; }
    .collection-image, .collection-image img { min-height: 500px; }
    .social-band-grid { grid-template-columns: 1fr; }
    .social-actions { grid-column: 1; }
    .event-detail-hero { grid-template-columns: 1fr 320px; }
    .guest-event-story { grid-template-columns: 1fr; }
    .contact-hero { align-items: stretch; }
    .contact-hero-card { min-height: 330px; }
    .location-card { min-height: 500px; }
    .meeting-layout { gap: 50px; }
    .messages-list-section .message-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
    :root { --section: 76px; }
    .desktop-only { display: none; }
    .site-header, .header-inner { height: 72px; }
    .brand { width: 118px; height: 50px; padding: 4px 7px; }
    .brand img { height: 42px; }
    .menu-toggle { padding-inline: 13px; }
    .header-actions { gap: 6px; }
    .header-socials { gap: 4px; }
    .header-socials a { width: 38px; height: 38px; }
    .menu-toggle b { display: none; }
    .menu-panel { top: 72px; }
    .menu-grid { min-height: calc(100svh - 72px); padding-block: 35px 24px; }
    .menu-links { gap: 14px; }
    .menu-links a { font-size: clamp(20px, 7.6vw, 38px); }
    .menu-links a { font-size: clamp(20px, 8.8cqw, 38px); }

    .camp-hero {
        min-height: 100svh;
        align-items: end;
    }
    .camp-hero-image { object-position: 22% center; }
    .camp-hero-shade { background: rgba(10,22,40,.62); }
    .camp-hero-content { padding-top: 120px; padding-bottom: 120px; }
    .camp-hero h1 { max-width: 340px; margin-bottom: 18px; font-size: clamp(60px, 20vw, 78px); line-height: .87; }
    .hero-intro { max-width: 330px; font-size: 16px; }
    .hero-actions { align-items: stretch; flex-direction: column; width: min(100%, 330px); }
    .hero-actions .button { width: 100%; }
    .camp-patch { width: 76px; min-height: 92px; padding: 10px 6px 16px; }
    .camp-patch b { font-size: 24px; }
    .camp-patch span, .camp-patch small { font-size: 6px; }
    .patch-books { top: 14%; right: 7%; }
    .patch-valley { display: none; }
    .hero-foot { bottom: 12px; }

    .asymmetric-intro { gap: 35px; }
    .asymmetric-intro h2 { grid-row: 1; font-size: 52px; }
    .cream-feature { gap: 35px; padding: 28px 22px; }
    .cream-feature h2 { font-size: 58px; }
    .maria-home-portrait { min-height: 320px; }
    .feature-badge { top: 16px; right: 16px; width: 68px; height: 78px; font-size: 18px; }
    .section-heading { margin-bottom: 30px; }
    .section-heading h2 { font-size: 50px; }
    .section-topline { align-items: flex-start; flex-direction: column; margin-bottom: 30px; }
    .program-grid { grid-template-columns: 1fr; }
    .program-card {
        min-height: 250px;
        border-left: 1px solid var(--black);
        border-top: 1px solid var(--black);
    }
    .program-card:first-child { border-top: 0; }
    .community-work { scroll-margin-top: 72px; }
    .community-work-lead { margin-bottom: 35px; }
    .work-card { min-height: 340px; padding: 28px 22px; }
    .collection-image, .collection-image img { min-height: 380px; }

    .event-grid, .guest-grid, .message-grid, .event-grid-related, .video-grid { grid-template-columns: 1fr; }
    .video-grid { gap: 45px; }
    .video-detail-hero h1 { font-size: clamp(46px, 13vw, 60px); }
    .video-facade .video-play { width: 64px; height: 64px; }
    .video-facade .video-play svg { width: 26px; height: 26px; }
    .messages-list-section .message-grid { grid-template-columns: 1fr; }
    .event-grid { gap: 45px; }
    .event-image-link img { aspect-ratio: 16 / 11; }
    .photo-story { min-height: 680px; }
    .photo-story-copy { position: absolute; right: 0; bottom: 0; left: 0; padding: 26px 22px; }
    .photo-story-copy h2 { font-size: 50px; }
    .photo-story-copy .button { width: 100%; }
    .guest-search { margin-bottom: 28px; }
    .guest-card { grid-template-columns: 76px 1fr; min-height: 128px; padding: 14px; }
    .guest-visual { width: 76px; height: 92px; }
    .guest-caption h3 { font-size: 21px; }
    .message-card { padding: 24px 20px; }
    .section-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .section-actions .button { width: 100%; }
    .message-form-disclosure > summary { min-height: 116px; padding: 22px 20px; }
    .message-form-summary-copy strong { font-size: 29px; }
    .message-form-summary-icon { flex-basis: 44px; width: 44px; height: 44px; }
    .message-form-panel { padding: 28px 20px; }
    .social-band h2, .footer-statement { font-size: 50px; }
    .footer-support { grid-template-columns: 1fr; gap: 38px; padding-block: 30px 38px; }
    .footer-support-logos { min-height: 0; align-items: flex-start; flex-direction: column; gap: 26px; }
    .partner-logo-heart { width: min(100%, 240px); }
    .partner-logo-municipality { width: min(100%, 300px); }
    .partner-logo-foundation { width: min(100%, 320px); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .footer-legal { align-items: flex-start; flex-direction: column; gap: 8px; }
    .cookie-consent { padding-block: 20px; }
    .cookie-consent-inner { grid-template-columns: 1fr; gap: 18px; }
    .cookie-consent-actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
    .cookie-consent-button { min-width: 0; width: 100%; }
    .legal-content { grid-template-columns: 1fr; }

    .page-hero { padding-top: 140px; padding-bottom: 70px; }
    .page-hero h1 { font-size: 60px; }
    .filters { align-items: stretch; }
    .segmented { width: 100%; margin: 0; }
    .segmented a { flex: 1; }
    .filters label { flex: 1 1 calc(50% - 5px); }
    .filters select { min-width: 0; }
    .filters .button { width: 100%; }

    .event-detail-hero, .profile-hero { grid-template-columns: 1fr; padding-top: 130px; }
    .event-detail-poster { grid-row: 1; width: min(100%, 300px); justify-self: center; }
    .event-detail-copy h1, .profile-copy h1 { font-size: 58px; }
    .profile-visual { width: 132px; height: 160px; justify-self: start; }
    .profile-visual > span { font-size: 44px; }
    .guest-profile-hero { padding-top: 120px; padding-bottom: 65px; }
    .guest-profile-hero .eyebrow { margin-top: 55px; }
    .guest-profile-hero h1 { font-size: clamp(58px, 17vw, 78px); }
    .guest-profile-section { grid-template-columns: 1fr; gap: 35px; }
    .guest-profile-section-heading h2 { font-size: 46px; }
    .guest-profile-biography { font-size: 24px; }
    .guest-profile-event-list { grid-template-columns: 1fr; }
    .guest-profile-event-image, .guest-profile-event-image img { height: 210px; min-height: 210px; }
    .maria-profile { position: static; }
    .maria-portrait-frame { height: 400px; }
    .narrow-section .prose { margin: 0; }
    .event-gallery { grid-template-columns: 1fr; }
    .event-gallery img { min-height: 240px; }
    .share-row { align-items: flex-start; flex-direction: column; }
    .event-photo-strip { display: flex; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
    .event-photo-strip img, .event-photo-strip img:first-child:nth-last-child(1) {
        flex: 0 0 86%;
        height: 260px;
        scroll-snap-align: start;
    }
    .guest-event-heading h3 { font-size: 32px; }

    .field-row { grid-template-columns: 1fr; }
    .editorial-form { padding: 24px 20px; }
    .contact-hero { gap: 35px; padding-top: 125px; padding-bottom: 75px; }
    .contact-hero-copy h1 { font-size: clamp(58px, 18vw, 76px); }
    .contact-hero-copy > p:last-of-type { font-size: 16px; }
    .contact-hero-actions { align-items: stretch; flex-direction: column; }
    .contact-hero-actions .button { width: 100%; }
    .contact-hero-card { min-height: 320px; padding: 24px 20px; }
    .contact-hero-pin { top: 24px; left: 20px; width: 54px; height: 54px; }
    .contact-hero-hours { grid-template-columns: 68px 1fr; }
    .location-section, .general-contact-section, .meeting-section { scroll-margin-top: 72px; }
    .map-frame, .map-frame iframe { min-height: 420px; }
    .location-card { min-height: 0; padding: 28px 20px; }
    .location-facts { margin-top: 20px; }
    .location-card .button { width: 100%; }
    .direct-contacts { margin-top: 30px; }
    .meeting-layout { gap: 38px; }
    .meeting-intro .large-copy { font-size: 30px; }
    .proposal-form .button { width: 100%; }
    .story-grid { grid-template-columns: 1fr; }
    .story-image img { min-height: 380px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .message-card:hover, .message-card-scan:hover, .message-card-scan:focus-visible { transform: none; }
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: clamp(32px, 5vw, 56px);
    font-family: var(--mono);
    font-size: 14px;
}
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid var(--black);
    border-radius: 35px;
    transition: background .15s ease, color .15s ease;
}
.pagination a:hover { background: var(--black); color: var(--white); }
.pagination span[aria-current="page"] { background: var(--red); border-color: var(--red); color: var(--white); }
