:root {
    --lavender: #d3cce6;
    --lavender-soft: #ebe7f4;
    --ink: #12272f;
    --ink-soft: #49616a;
    --ocean: #113c49;
    --ocean-soft: #2f7278;
    --sand: #f5ecdd;
    --sun: #e1a43b;
    --white: #fffaf1;
    --line: rgba(18, 39, 47, 0.1);
    --shadow: 0 24px 70px rgba(14, 37, 44, 0.14);
    --shadow-strong: 0 36px 100px rgba(10, 26, 33, 0.22);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 224, 148, 0.38), transparent 24%),
        radial-gradient(circle at 85% 6%, rgba(211, 204, 230, 0.8), transparent 28%),
        linear-gradient(180deg, #f4eefb 0%, var(--lavender) 24%, #e8efe8 68%, #d8e8e2 100%);
}

a {
    color: inherit;
}

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

.page-shell {
    width: min(1280px, calc(100% - 32px));
    margin: 24px auto 40px;
}

.site-header {
    position: sticky;
    top: 14px;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 24px;
    background: rgba(15, 54, 67, 0.78);
    backdrop-filter: blur(18px);
    color: var(--white);
    box-shadow: var(--shadow);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(120px, 14vw, 176px);
    min-width: 120px;
    padding: 8px 10px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 250, 241, 0.94);
}

.brand-mark img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-text {
    display: grid;
    gap: 2px;
}

.brand-text strong,
.hero h1,
.photo-copy h2,
.photo-copy h3,
.section-heading h2,
.programme-item h3,
.feature-card h3,
.practical-card h3 {
    font-family: "Bricolage Grotesque", sans-serif;
}

.brand-text small {
    color: rgba(255, 250, 241, 0.74);
    font-size: 0.82rem;
}

.menu-toggle {
    display: none;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(255, 250, 241, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
    transform: translateY(6px);
}

.site-header.is-mobile-nav .menu-toggle {
    display: inline-flex;
}

.site-header.is-mobile-nav {
    grid-template-columns: 1fr auto;
    justify-items: start;
}

.site-header.is-mobile-nav .site-nav,
.site-header.is-mobile-nav .nav-cta {
    display: none;
}

.site-header.is-mobile-nav .menu-toggle {
    display: inline-flex;
}

.site-header.is-mobile-nav.menu-open .site-nav {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 14px;
}

.site-header.is-mobile-nav.menu-open .site-nav a {
    width: 100%;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.site-header.is-mobile-nav.menu-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
}

.site-header.is-mobile-nav.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-mobile-nav.menu-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.site-nav a,
.nav-cta,
.button {
    text-decoration: none;
}

.site-nav a {
    color: rgba(255, 250, 241, 0.84);
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #ffffff;
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
    padding: 12px 18px;
    background: linear-gradient(135deg, #f0c460 0%, #d89128 100%);
    color: #17313a;
}

.nav-cta:hover,
.button:hover,
.nav-cta:focus-visible,
.button:focus-visible {
    transform: translateY(-2px);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 360px);
    gap: 28px;
    align-items: end;
    margin-top: 28px;
    padding: clamp(28px, 4vw, 52px);
    min-height: 700px;
    border-radius: 42px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(10, 37, 46, 0.18), rgba(10, 37, 46, 0.62)),
        linear-gradient(25deg, rgba(211, 204, 230, 0.18), rgba(211, 204, 230, 0)),
        url("fond hero.jpg");
    background-position: center;
    background-size: cover;
    box-shadow: var(--shadow-strong);
    color: var(--white);
}

.eyebrow,
.photo-tag,
.time {
    margin: 0 0 12px;
    color: #f1ca74;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.78rem;
    font-weight: 800;
}

.hero h1 {
    max-width: 11ch;
    margin: 0 0 16px;
    font-size: clamp(3rem, 6vw, 6.2rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
}

.hero-text {
    max-width: 58ch;
    margin: 0;
    color: rgba(255, 250, 241, 0.88);
    font-size: 1.06rem;
    line-height: 1.78;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.button {
    padding: 15px 22px;
}

.button-primary {
    background: linear-gradient(135deg, #f1c35f 0%, #db9526 100%);
    color: #17313a;
}

.button-secondary {
    border: 1px solid rgba(255, 250, 241, 0.24);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.hero-panel {
    padding: 24px;
    border: 1px solid rgba(255, 250, 241, 0.16);
    border-radius: 28px;
    background: rgba(10, 39, 48, 0.42);
    backdrop-filter: blur(16px);
}

.hero-panel-logo {
    width: min(100%, 220px);
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 250, 241, 0.96);
}

.hero-panel-meta {
    margin-top: 18px;
    color: rgba(255, 250, 241, 0.84);
    line-height: 1.72;
}

.hero-facts {
    display: grid;
    gap: 14px;
    margin: 22px 0 0;
}

.hero-facts div {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 250, 241, 0.14);
}

.hero-facts dt {
    margin-bottom: 6px;
    color: rgba(255, 250, 241, 0.62);
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-facts dd {
    margin: 0;
    font-weight: 700;
}

.photo-ribbon {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 18px;
    margin-top: 22px;
}

.subpage-main {
    display: grid;
    gap: 22px;
}

.page-hero {
    margin-top: 28px;
    padding: clamp(28px, 4vw, 44px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 36px;
    background:
        linear-gradient(180deg, rgba(255, 250, 241, 0.82), rgba(255, 255, 255, 0.58)),
        rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
}

.page-hero h1,
.overview-card h3 {
    margin: 0 0 12px;
    font-family: "Bricolage Grotesque", sans-serif;
}

.page-hero h1 {
    max-width: 14ch;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.page-hero p:last-child {
    max-width: 58ch;
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.75;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.overview-card {
    display: grid;
    gap: 12px;
    min-height: 220px;
    padding: 24px;
    border: 1px solid rgba(18, 39, 47, 0.08);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(211, 204, 230, 0.22), rgba(255, 255, 255, 0.74)),
        rgba(255, 255, 255, 0.74);
    text-decoration: none;
    box-shadow: var(--shadow);
}

.overview-kicker {
    color: var(--ocean-soft);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.overview-card h3 {
    font-size: 1.55rem;
    line-height: 1.04;
    color: var(--ink);
}

.photo-card {
    position: relative;
    min-height: 340px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.photo-card-large {
    min-height: 420px;
}

.photo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 32, 40, 0.04), rgba(10, 32, 40, 0.68));
}

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

.photo-copy {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 1;
    color: var(--white);
}

.photo-copy h2,
.photo-copy h3 {
    max-width: 13ch;
    margin: 0;
    line-height: 0.98;
}

.photo-copy h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
}

.photo-copy h3 {
    font-size: 1.55rem;
}

.section {
    margin-top: 22px;
    padding: clamp(28px, 3.6vw, 44px);
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 38px;
    background: rgba(255, 250, 241, 0.78);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
}

.section-heading {
    max-width: 780px;
    margin-bottom: 28px;
}

.section-heading h2 {
    margin: 0 0 12px;
    font-size: clamp(2.1rem, 3vw, 3.3rem);
    line-height: 1;
    letter-spacing: -0.03em;
}

.section-heading p,
.programme-item p,
.feature-card p,
.practical-card p,
.site-footer p,
.associations-copy p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.75;
}

.programme-layout,
.associations-layout {
    display: grid;
    gap: 24px;
}

.programme-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: stretch;
}

.programme-list {
    display: grid;
    gap: 14px;
}

.programme-item {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.56);
}

.programme-item h3,
.feature-card h3,
.practical-card h3 {
    margin: 0 0 8px;
    font-size: 1.45rem;
    line-height: 1.06;
}

.programme-feature {
    overflow: hidden;
    border-radius: 30px;
    background: #102f3c;
    color: var(--white);
}

.programme-feature img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.programme-feature-copy {
    padding: 22px;
    line-height: 1.75;
}

.programme-feature-copy p:last-child {
    margin: 0;
    color: rgba(255, 250, 241, 0.82);
}

.section-associations {
    background:
        linear-gradient(180deg, rgba(211, 204, 230, 0.32), rgba(255, 250, 241, 0.88) 42%),
        rgba(255, 250, 241, 0.9);
}

.section-groups {
    background:
        linear-gradient(180deg, rgba(17, 60, 73, 0.96), rgba(32, 92, 101, 0.9)),
        rgba(17, 60, 73, 1);
    color: var(--white);
}

.section-groups .section-heading h2,
.section-groups .section-heading p {
    color: var(--white);
}

.section-groups .eyebrow {
    color: #f2ca75;
}

.groups-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.group-card {
    display: grid;
    gap: 16px;
    min-height: 100%;
    padding: 20px;
    border: 1px solid rgba(255, 250, 241, 0.14);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
}

.group-card-featured {
    grid-column: span 3;
    grid-template-columns: minmax(220px, 280px) 1fr;
    align-items: center;
    padding: 22px;
}

.group-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 250, 241, 0.96);
    overflow: hidden;
}

.group-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.group-copy h3 {
    margin: 0 0 10px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.9rem;
    line-height: 1;
}

.group-copy p {
    margin: 0;
    color: rgba(255, 250, 241, 0.84);
    line-height: 1.75;
}

.group-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.group-links a,
.group-placeholder-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
}

.group-links a {
    background: rgba(255, 250, 241, 0.14);
    border: 1px solid rgba(255, 250, 241, 0.16);
    color: var(--white);
    text-decoration: none;
}

.group-card-placeholder {
    align-content: start;
    background:
        linear-gradient(180deg, rgba(211, 204, 230, 0.18), rgba(255, 255, 255, 0.06)),
        rgba(255, 255, 255, 0.06);
}

.group-placeholder-mark {
    justify-self: start;
    background: rgba(255, 250, 241, 0.92);
    color: var(--ocean);
}

.associations-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.association-points {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.association-points li {
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(18, 39, 47, 0.08);
}

.association-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.feature-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.64);
}

.feature-card-highlight {
    background:
        linear-gradient(180deg, rgba(211, 204, 230, 0.44), rgba(255, 255, 255, 0.72)),
        rgba(255, 255, 255, 0.72);
    border-color: rgba(47, 114, 120, 0.16);
}

.section-partners {
    background:
        linear-gradient(180deg, rgba(17, 60, 73, 0.98), rgba(31, 93, 101, 0.92)),
        rgba(17, 60, 73, 1);
    color: var(--white);
}

.section-partners .section-heading p,
.section-partners .section-heading h2 {
    color: var(--white);
}

.section-partners .eyebrow {
    color: #f2ca75;
}

.section-food {
    background:
        linear-gradient(180deg, rgba(245, 236, 221, 0.96), rgba(255, 250, 241, 0.84)),
        rgba(255, 250, 241, 0.92);
}

.food-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
    gap: 22px;
    align-items: start;
}

.food-overview,
.food-card {
    border-radius: 24px;
}

.food-overview {
    padding: 24px;
    border: 1px solid rgba(18, 39, 47, 0.08);
    background: rgba(255, 255, 255, 0.62);
}

.food-overview h3,
.food-card h4 {
    margin: 0 0 10px;
    font-family: "Bricolage Grotesque", sans-serif;
}

.food-overview h3 {
    font-size: 1.8rem;
    line-height: 1.02;
}

.food-overview p,
.food-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.75;
}

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

.food-card {
    padding: 22px;
    border: 1px solid rgba(18, 39, 47, 0.08);
    background:
        linear-gradient(180deg, rgba(211, 204, 230, 0.28), rgba(255, 255, 255, 0.72)),
        rgba(255, 255, 255, 0.72);
}

.food-card h4 {
    font-size: 1.35rem;
    line-height: 1.08;
}

.food-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    min-height: 40px;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(17, 60, 73, 0.92);
    color: var(--white);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.food-card-wide {
    grid-column: span 2;
}

.partners-groups {
    display: grid;
    gap: 28px;
}

.partners-group {
    display: grid;
    gap: 18px;
}

.partners-group-head h3,
.partner-card h4 {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
}

.partners-group-head h3 {
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    line-height: 1.02;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

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

.partner-card {
    display: grid;
    gap: 14px;
    min-height: 100%;
    padding: 24px;
    border: 1px solid rgba(255, 250, 241, 0.14);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 250, 241, 0.92);
}

.partner-card-top,
.partner-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.partner-logo-slot,
.partner-tier,
.partner-links a {
    border-radius: 999px;
}

.partner-logo-slot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    height: 64px;
    padding: 0 16px;
    background: rgba(255, 250, 241, 0.94);
    color: var(--ocean);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.partner-logo-image {
    width: min(100%, 180px);
    min-width: 120px;
    height: 74px;
    padding: 8px 12px;
    overflow: hidden;
}

.partner-logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner-tier {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 250, 241, 0.18);
    color: rgba(255, 250, 241, 0.76);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.partner-place,
.partner-meta {
    margin: 0;
}

.partner-place {
    color: rgba(255, 250, 241, 0.88);
    line-height: 1.6;
}

.partner-meta {
    display: grid;
    gap: 6px;
    padding: 0;
    list-style: none;
    color: rgba(255, 250, 241, 0.7);
    line-height: 1.65;
}

.partner-links {
    margin-top: auto;
    justify-content: flex-start;
}

.partner-links a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 10px 14px;
    background: rgba(255, 250, 241, 0.12);
    border: 1px solid rgba(255, 250, 241, 0.14);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
}

.partner-links a:hover,
.partner-links a:focus-visible {
    background: rgba(255, 250, 241, 0.2);
}

.section-practical {
    background:
        linear-gradient(180deg, rgba(8, 34, 43, 0.78), rgba(13, 52, 63, 0.88)),
        linear-gradient(35deg, rgba(211, 204, 230, 0.16), rgba(211, 204, 230, 0.02)),
        url("fond_infos_pratiques-stylized.jpg");
    background-position: center;
    background-size: cover;
    color: var(--white);
}

.section-practical .section-heading h2,
.section-practical .section-heading p,
.section-practical .practical-card p {
    color: rgba(255, 250, 241, 0.88);
}

.practical-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.practical-card {
    padding: 24px;
    border: 1px solid rgba(255, 250, 241, 0.18);
    border-radius: 24px;
    background: rgba(255, 250, 241, 0.12);
    backdrop-filter: blur(12px);
}

.site-footer {
    display: grid;
    gap: 18px;
    margin-top: 22px;
    padding: 20px 24px;
    border-radius: 24px;
    background: rgba(15, 54, 67, 0.88);
    color: rgba(255, 250, 241, 0.9);
}

.footer-sponsors {
    display: grid;
    gap: 8px;
}

.footer-sponsors-title {
    margin: 0;
    color: rgba(255, 250, 241, 0.76);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.footer-sponsor-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.footer-sponsor {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    max-width: 168px;
    padding: 6px 10px;
    border-radius: 12px;
    background: rgba(255, 250, 241, 0.9);
    text-decoration: none;
}

.footer-sponsor img {
    width: auto;
    max-width: 100%;
    height: 48px;
    object-fit: contain;
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.site-footer p,
.site-footer a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 1120px) {
    .hero,
    .photo-ribbon,
    .programme-layout,
    .associations-layout,
    .food-layout {
        grid-template-columns: 1fr;
    }

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

    .group-card-featured {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .association-cards,
    .partners-grid,
    .food-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .hero {
        min-height: 620px;
    }
}

@media (max-width: 900px) {
    .overview-grid,
    .groups-grid,
    .association-cards,
    .partners-grid,
    .partners-grid-local,
    .food-grid,
    .practical-grid {
        grid-template-columns: 1fr;
    }

    .food-card-wide {
        grid-column: auto;
    }

    .programme-item {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 640px) {
    .page-shell {
        width: min(100% - 18px, 1280px);
        margin-top: 10px;
    }

    .site-header {
        top: 8px;
        border-radius: 20px;
    }

    .footer-sponsor-strip {
        grid-template-columns: 1fr;
    }

    .hero,
    .photo-card,
    .section,
    .site-footer {
        border-radius: 24px;
    }

    .brand {
        width: 100%;
    }

    .brand-mark {
        width: clamp(104px, 36vw, 148px);
        min-width: 104px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button,
    .nav-cta {
        width: 100%;
    }
}
