
@font-face {

  font-family: 'Fuggles';

  src: url('fonts/Fuggles-Regular.ttf') format('truetype');

  font-weight: 400;

  font-style: normal;

  font-display: swap;

}



h1 {
    font-family: 'Fuggles';
    font-size: 2.5rem;
}

body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #ffffff;
    color: #202020;
}

.site-frame {
    max-width: 1020px;
    margin: 6px auto;
    border: 1px solid #ededed;
    background: #ffffff;
}

.page-shell {
    max-width: 1120px;
    margin: 0 auto;
    background: #ffffff;
}

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 55px 40px;
}

.logo {
    width: 240px;
    height: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 1.6px;
    color: #232323;
    font-weight: 600;
    text-transform: uppercase;
}

.main-nav a:hover {
    opacity: 0.65;
}

.nav-item {
    position: relative;
}

.nav-dropdown {
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 180px;
    padding: 10px 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    z-index: 20;
}

.dropdown-menu a {
    display: block;
    padding: 8px 14px;
    font-size: 10px;
    letter-spacing: 1.3px;
}

.nav-dropdown:focus-within .dropdown-menu {
    display: flex;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 6px 4px;
}

.menu-toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #202020;
    margin: 5px 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.slider-wrapper {
    width: min(100%, 1000px);
    margin: 0 auto 30px;
    overflow: hidden;
}

.slider-controls {
    position: relative;
}

.scroll-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    overflow-x: auto;
    padding: 0;
    cursor: grab;
    scroll-behavior: smooth;
    scrollbar-width: none;
    user-select: none;
    scroll-snap-type: x proximity;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.scroll-container.active {
    cursor: grabbing;
}

.scroll-container figure {
    width: 1000px;
    margin: 0;
    flex-shrink: 0;
    position: relative;
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.scroll-container img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    background: #f4f4f4;
    display: block;
    pointer-events: none;
}

.scroll-container figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 10px 12px;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.3;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(18, 18, 18, 0.649);
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 5;
    pointer-events: auto;
    transition: background 0.2s ease;
}

.slider-arrow:hover {
    background: rgba(18, 18, 18, 0.55);
}

.slider-arrow-left {
    left: 12px;
}

.slider-arrow-right {
    right: 12px;
}

.about-layout {
    max-width: 1120px;
    margin: 58px auto 80px;
}

.story-grid {
    max-width: 1120px;
    margin: 26px auto 10px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
}

.story-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    margin-bottom: 18px;
}

.story-card h3 {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.story-card-title-link {
    color: inherit;
    text-decoration: underline;
}

.story-card-title-link:hover,
.story-card-title-link:focus-visible {
    text-decoration: underline;
}

.story-card-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 8px;
}

.story-card-more {
    font-size: 13px;
    letter-spacing: 0.3px;
    text-decoration: none;
    color: #5f5f5f;
    white-space: nowrap;
}

.story-card-more-arrow {
    font-size: 10px;
    margin-left: 2px;
    vertical-align: 1px;
}

.story-card-more:hover {
    text-decoration: underline;
}

.story-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #303030;
}

.story-grid-scrollbar {
    display: none;
    position: relative;
    height: 3.5px;
    margin: 100px 16px 0;
    background: #e3e3e3;
    border-radius: 999px;
    overflow: hidden;
    --story-segment-size: 25%;
}

.story-grid-scrollbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(to right,
            transparent 0,
            transparent calc(var(--story-segment-size) - 0.5px),
            #d2d2d2 calc(var(--story-segment-size) - 0.5px),
            #d2d2d2 var(--story-segment-size));
    pointer-events: none;
}

.story-grid-scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--story-segment-size);
    background: #6f6f6f;
    border-radius: inherit;
    transition: left 0.18s ease;
}

.site-footer {
    max-width: 1120px;
    margin: 72px auto 0;
    padding: 54px 24px 26px;
    border-top: 1px solid #ececec;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 56px;
}

.footer-person {
    display: grid;
    grid-template-columns: 66px 1fr;
    gap: 16px;
    align-items: start;
}

.footer-profile {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.footer-name {
    margin: 4px 0 2px;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
}

.footer-role {
    margin: 0;
    font-size: 15px;
    color: #404040;
}

.footer-lead {
    margin: 18px 0 0;
    font-size: 13px;
    line-height: 1.7;
    color: #555;
}

.footer-cta {
    display: inline-block;
    margin-top: 18px;
    font-size: 13px;
    color: #3b4f6f;
    text-underline-offset: 2px;
}

.footer-right {
    display: grid;
    gap: 12px;
    align-content: start;
}

.footer-right h5 {
    margin: 2px 0 8px;
    font-size: 16px;
    font-weight: 700;
}

.footer-contact {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #333;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
}

.footer-bottom {
    grid-column: 1 / -1;
    margin: 44px 0 0;
    text-align: center;
    display: grid;
    gap: 5px;
}

.footer-copy {
    margin: 0;
    font-size: 12px;
    color: #b1b1b1;
}

.footer-legal {
    margin: 0;
    font-size: 12px;
}

.footer-legal a {
    color: #b1b1b1;
    text-decoration: underline;
}

.footer-legal-separator {
    color: #b1b1b1;
}

.footer-legal a:hover {
    color: #888888;
}

.legal-page {
    max-width: 42rem;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.legal-page h1 {
    margin: 0 0 0.35rem;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #1a1a1a;
}

.legal-page .legal-meta {
    margin: 0 0 2rem;
    font-size: 13px;
    color: #888888;
}

.legal-page h2 {
    margin: 2rem 0 0.65rem;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #232323;
}

.legal-page p,
.legal-page li {
    margin: 0 0 0.85rem;
    font-size: 15px;
    line-height: 1.65;
    color: #333333;
}

.legal-page ul {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
}

.legal-page a {
    color: #333333;
    text-decoration: underline;
}

.about-me-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 48px 24px 72px;
}

.about-me-heading {
    margin: 0 0 24px;
    max-width: 100%;
    font-size: 13px;
    letter-spacing: 0.85px;
    font-weight: 600;
    text-transform: uppercase;
    color: #232323;
    text-align: left;
}

.about-me-block {
    display: grid;
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: 40px;
    align-items: start;
}

.about-me-photo {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.about-me-photo img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.about-me-body {
    font-size: 16px;
    line-height: 1.65;
    color: #333333;
}

.about-me-body p {
    margin: 0 0 1.1em;
}

.about-me-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 700px) {
    .about-me-section {
        padding: 36px 20px 56px;
    }

    .about-me-block {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-me-photo {
        max-width: 320px;
        margin: 0 auto;
    }
}

.about-intro {
    text-align: center;
    margin-bottom: 92px;
}

.about-intro h2 {
    margin: 0 0 6px;
    font-size: 13px;
    letter-spacing: 0.8px;
    font-weight: 600;
    text-transform: uppercase;
}

.about-intro p {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
}

.about-layout+.about-intro {
    margin-top: 320px;
    margin-bottom: 44px;
    padding: 0 24px;
}

#cookieBanner {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 100vh;
    min-height: 100dvh;
    z-index: 9999;
}

#cookieBanner::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 20, 0.35);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 0;
}

#cookieBanner .cookie-banner-card {
    position: relative;
    z-index: 1;
    width: min(960px, calc(100% - 32px));
    padding: 28px 32px;
    border: 1px solid #d1d1d1;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.cookie-banner-icon {
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #f7f3ee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-banner-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
}

.cookie-banner-main {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    min-width: 0;
}

.cookie-banner-main-inner {
    flex: 1 1 28px;
    min-width: 0;
}

.cookie-banner-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
}

.cookie-banner-body {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #333333;
}

.cookie-banner-aside {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.cookie-banner-lang {
    position: relative;
}

.cookie-banner-lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 38px;
    padding: 0 12px 0 10px;
    border: 1px solid #d1d1d1;
    border-radius: 8px;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 14px;
    cursor: pointer;
    font-family: inherit;
}

.cookie-banner-globe {
    display: block;
    flex-shrink: 0;
    opacity: 0.85;
}

.cookie-banner-lang-chevron {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #1a1a1a;
    margin-left: 2px;
    opacity: 0.7;
}

.cookie-banner-lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    min-width: 140px;
    background: #ffffff;
    border: 1px solid #d1d1d1;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.cookie-banner-lang-menu li {
    padding: 10px 16px;
    font-size: 14px;
    color: #1a1a1a;
    cursor: pointer;
    transition: background 0.15s ease;
}

.cookie-banner-lang-menu li:hover {
    background: #f5f5f5;
}

.cookie-banner-lang-menu li[aria-selected="true"] {
    font-weight: 600;
}

.cookie-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

#cookieBanner .cookie-btn {
    min-width: 140px;
    height: 44px;
    padding: 0 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

#cookieBanner .cookie-btn-decline {
    border: 1px solid #d1d1d1;
    background: #ffffff;
    color: #1a1a1a;
}

#cookieBanner .cookie-btn-decline:hover {
    background: #f7f7f7;
}

#cookieBanner .cookie-btn-accept {
    border: none;
    background: #1a1a1a;
    color: #ffffff;
}

#cookieBanner .cookie-btn-accept:hover {
    background: #333333;
    transform: translateY(-1px);
}

.image-collage {
    position: relative;
    max-width: 860px;
    height: 760px;
    margin: 0 auto;
}

.image-collage figure {
    position: absolute;
    margin: 0;
}

.image-collage img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.image-collage figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 8px 10px;
    font-size: 12px;
    line-height: 1.3;
    color: #ffffff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
}

.collage-left {
    width: 300px;
    height: auto;
    left: 24px;
    top: 92px;
}

.collage-right-top {
    width: 340px;
    height: auto;
    right: 24px;
    left: auto;
    top: 0;
}

.collage-right-bottom {
    width: 300px;
    height: auto;
    right: 100px;
    left: auto;
    transform: none;
    top: 520px;
}

@media (max-width: 900px) {
    .image-collage {
        max-width: 680px;
        height: 650px;
    }

    .collage-left {
        width: 240px;
        height: auto;
        left: 20px;
        top: 85px;
    }

    .collage-right-top {
        width: 280px;
        height: auto;
        right: 20px;
        top: 0;
    }

    .collage-right-bottom {
        width: 240px;
        height: auto;
        top: 420px;
        right: 150px;
        left: auto;
        transform: none;
    }

    .story-grid {
        display: flex;
        overflow-x: auto;
        gap: 24px;
        padding: 0 72px;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 72px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

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

    .story-card {
        flex: 0 0 200px;
        margin-top: 0;
        scroll-snap-align: center;
    }

    .story-grid-scrollbar {
        display: block;
    }

    .site-footer {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 562px) {
    .page-header {
        position: relative;
        padding: 28px 20px 24px;
    }

    .logo {
        width: 185px;
    }

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

    .main-nav {
        display: none;
        position: absolute;
        top: calc(100% - 1px);
        right: 0px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        background: #ffffff;
        border: 1px solid #e8e8e8;
        padding: 18px 22px;
        width: 200px;
        z-index: 10;
    }

    .main-nav a {
        text-decoration: none;
        font-size: 12px;
        letter-spacing: 1.8px;
        color: #232323;
        font-weight: 600;
        padding: 8px 10px;
        text-transform: uppercase;
    }

    .main-nav .nav-dropdown {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav .nav-dropdown .dropdown-menu {
        position: static;
        display: none;
        min-width: 0;
        width: 100%;
        border: 0;
        box-shadow: none;
        padding: 0 0 0 16px;
        margin-top: 4px;
    }

    .main-nav .nav-dropdown.nav-dropdown-open .dropdown-menu {
        display: flex;
    }

    .main-nav .dropdown-menu a {
        font-size: 11px;
        letter-spacing: 1.4px;
        padding: 14px 18px;
    }

    .main-nav.main-nav-open {
        display: flex;
    }

    .scroll-container {
        padding-inline: 0;
        gap: 0;
        scroll-snap-type: x mandatory;
    }

    .scroll-container figure {
        flex: 0 0 100%;
        width: 100%;
    }

    .scroll-container img {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 2 / 1;
        max-height: 50vh;
        min-height: 0;
        object-fit: contain;
    }

    .slider-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .slider-arrow-left {
        left: 8px;
    }

    .slider-arrow-right {
        right: 8px;
    }

    .story-grid {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding: 0 72px;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 72px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

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

    .story-card {
        flex: 0 0 190px;
        margin-top: 0;
        scroll-snap-align: center;
    }

    .story-grid-scrollbar {
        display: block;
        margin-top: 28px;
    }

    .about-layout .image-collage {
        position: relative;
        display: block;
        width: 100%;
        max-width: 100%;
        height: 520px;
        padding: 0;
    }

    .about-layout .image-collage img {
        position: static;
        width: 100%;
        margin: 0;
        object-fit: cover;
    }

    .about-layout .image-collage figcaption {
        left: 0;
        right: 0;
        bottom: 0;
    }

    .about-layout .collage-left {
        left: 8px;
        top: 75px;
        width: 172px;
        height: auto;
    }

    .about-layout .collage-right-top {
        right: 8px;
        left: auto;
        top: 0;
        width: 170px;
        height: auto;
    }

    .about-layout .collage-right-bottom {
        right: 16px;
        left: auto;
        transform: none;
        top: 275px;
        width: 170px;
        height: auto;
    }

    .site-footer {
        padding: 40px 20px 22px;
    }

    .footer-person {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 10px;
    }

    .footer-right {
        text-align: center;
    }

    .about-layout+.about-intro {
        margin-top: 80px;
    }

    #cookieBanner {
        padding: 12px;
    }

    #cookieBanner .cookie-banner-card {
        width: 100%;
        padding: 20px 16px;
        border-radius: 14px;
        gap: 16px;
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-icon {
        align-self: center;
    }

    .cookie-banner-main {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-aside {
        align-items: stretch;
    }

    .cookie-banner-lang {
        align-self: flex-end;
    }

    .cookie-banner-title {
        font-size: 17px;
    }

    .cookie-banner-body {
        font-size: 14px;
    }

    .cookie-banner-buttons {
        justify-content: stretch;
    }

    #cookieBanner .cookie-btn {
        flex: 1 1 calc(50% - 5px);
        min-width: 0;
        height: 46px;
        font-size: 13px;
    }
}
