@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Manrope:wght@300;400;500;600&display=swap");


/* ============================================================
   HELGBERGSTUDIO
   Premium European Design System
   File: assets/css/style.css

   Philosophy:
   Quiet Luxury / Architectural Minimalism / Editorial Design

   Desktop / Laptop / Tablet / Mobile
   Chrome / Edge / Firefox / Safari / iOS / Android
   ============================================================ */


/* ============================================================
   01. DESIGN SYSTEM
   ============================================================ */

:root {

    /* --------------------------------------------------------
       CORE COLORS
    -------------------------------------------------------- */

    --ink: #151513;
    --ink-soft: #23221f;
    --ink-muted: #4d4943;

    --stone: #aaa298;
    --stone-dark: #736c63;
    --stone-light: #d8d2c8;

    --ivory: #f3f0e9;
    --ivory-soft: #f8f6f1;
    --ivory-deep: #e9e4da;

    --sand: #ded6c9;
    --sand-deep: #cfc4b4;

    --bronze: #91785f;
    --bronze-light: #b49b80;
    --bronze-dark: #6e5947;

    --logo-chocolate: #59331f;

    --white: #fffefb;
    --pure-white: #ffffff;

    --success: #526756;
    --error: #9c4438;


    /* --------------------------------------------------------
       TRANSPARENT COLORS
    -------------------------------------------------------- */

    --line:
        rgba(21, 21, 19, 0.13);

    --line-soft:
        rgba(21, 21, 19, 0.075);

    --line-light:
        rgba(255, 255, 255, 0.16);

    --line-light-soft:
        rgba(255, 255, 255, 0.08);

    --text-soft:
        rgba(21, 21, 19, 0.64);

    --text-light:
        rgba(255, 255, 255, 0.72);

    --text-light-soft:
        rgba(255, 255, 255, 0.48);


    /* --------------------------------------------------------
       TYPOGRAPHY
    -------------------------------------------------------- */

    --font-sans:
        "Manrope",
        "Helvetica Neue",
        Helvetica,
        Arial,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    --font-serif:
        "Cormorant Garamond",
        "Iowan Old Style",
        "Baskerville",
        "Times New Roman",
        Georgia,
        serif;


    /* --------------------------------------------------------
       LAYOUT
    -------------------------------------------------------- */

    --container:
        1540px;

    --page-x:
        clamp(20px, 3.2vw, 58px);

    --header-height:
        94px;


    /* --------------------------------------------------------
       MOTION
    -------------------------------------------------------- */

    --ease:
        cubic-bezier(0.22, 1, 0.36, 1);

    --ease-soft:
        cubic-bezier(0.25, 0.1, 0.25, 1);

    --ease-out:
        cubic-bezier(0.16, 1, 0.3, 1);

    --fast:
        180ms var(--ease);

    --medium:
        420ms var(--ease);

    --slow:
        850ms var(--ease);


    /* --------------------------------------------------------
       SHADOWS
    -------------------------------------------------------- */

    --shadow-soft:
        0 24px 70px rgba(25, 23, 19, 0.07);

    --shadow-hover:
        0 30px 90px rgba(25, 23, 19, 0.11);

}


/* ============================================================
   02. RESET
   ============================================================ */

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


html {
    scroll-behavior: smooth;

    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;

    background: var(--ivory-soft);
}


body {
    margin: 0;

    min-width: 320px;

    background:
        var(--ivory-soft);

    color:
        var(--ink);

    font-family:
        var(--font-sans);

    font-size:
        16px;

    font-weight:
        400;

    line-height:
        1.6;

    -webkit-font-smoothing:
        antialiased;

    -moz-osx-font-smoothing:
        grayscale;

    overflow-x:
        clip;
}


html.menu-open,
body.menu-open {
    overflow:
        hidden;

    overscroll-behavior:
        none;
}


main {
    display: block;
}


section {
    position: relative;
}


img,
picture,
video,
canvas,
svg {
    display: block;

    max-width: 100%;
}


img {
    width: 100%;
    height: auto;

    object-fit: cover;
}


a {
    color: inherit;

    text-decoration: none;
}


button,
input,
textarea,
select {
    border: 0;
    border-radius: 0;

    color: inherit;

    font: inherit;
}


button {
    padding: 0;

    background: none;

    cursor: pointer;
}


input,
textarea,
select {
    width: 100%;
}


textarea {
    resize: vertical;
}


ul,
ol {
    margin: 0;
    padding: 0;

    list-style: none;
}


h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}


::selection {
    background:
        var(--bronze-light);

    color:
        var(--ink);
}


/* ============================================================
   03. ACCESSIBILITY
   ============================================================ */

.skip-link {
    position: fixed;

    top: 14px;
    left: 14px;

    z-index: 10000;

    padding:
        12px 18px;

    background:
        var(--white);

    color:
        var(--ink);

    font-size:
        12px;

    font-weight:
        600;

    transform:
        translateY(-160%);

    transition:
        transform var(--fast);
}


.skip-link:focus {
    transform:
        translateY(0);
}


:focus-visible {
    outline:
        2px solid var(--bronze);

    outline-offset:
        4px;
}


/* ============================================================
   04. LAYOUT
   ============================================================ */

.container {
    width:
        min(
            calc(100% - (var(--page-x) * 2)),
            var(--container)
        );

    margin-inline:
        auto;
}


.section {
    padding-block:
        clamp(110px, 10vw, 190px);
}


.section-grid,
.section-heading {
    display: grid;

    grid-template-columns:
        minmax(110px, 0.65fr)
        minmax(0, 4fr);

    column-gap:
        clamp(55px, 7vw, 140px);
}


.section-heading {
    margin-bottom:
        clamp(75px, 8vw, 130px);
}


.section-heading__content {
    max-width:
        1120px;
}


.section-label {
    padding-top:
        8px;

    color:
        var(--stone-dark);

    font-size:
        9px;

    font-weight:
        600;

    line-height:
        1.35;

    letter-spacing:
        0.22em;

    text-transform:
        uppercase;
}


.section-label--light {
    color:
        rgba(255, 255, 255, 0.43);
}


.eyebrow {
    margin-bottom:
        25px;

    color:
        var(--bronze-dark);

    font-size:
        10px;

    font-weight:
        600;

    line-height:
        1.3;

    letter-spacing:
        0.23em;

    text-transform:
        uppercase;
}


.eyebrow--light {
    color:
        var(--bronze-light);
}


.display-title {
    max-width:
        1100px;

    font-size:
        clamp(55px, 6.1vw, 116px);

    font-weight:
        300;

    line-height:
        0.92;

    letter-spacing:
        -0.064em;

    text-wrap:
        balance;
}


.display-title .serif,
.serif {
    font-family:
        var(--font-serif);

    font-weight:
        400;

    font-style:
        italic;

    letter-spacing:
        -0.035em;
}


.display-title--light {
    color:
        var(--white);
}


/* ============================================================
   05. BUTTONS
   ============================================================ */

.button {
    position: relative;

    isolation: isolate;

    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap:
        38px;

    min-height:
        60px;

    padding:
        0 23px 0 27px;

    overflow: hidden;

    border:
        1px solid transparent;

    font-size:
        10px;

    font-weight:
        600;

    line-height:
        1;

    letter-spacing:
        0.16em;

    text-transform:
        uppercase;

    cursor:
        pointer;

    transition:
        color var(--medium),
        border-color var(--medium),
        transform var(--medium),
        background-color var(--medium);
}


.button::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -1;

    transform:
        translateY(101%);

    transition:
        transform 550ms var(--ease);
}


.button:hover {
    transform:
        translateY(-2px);
}


.button--dark {
    background:
        var(--ink);

    color:
        var(--white);
}


.button--dark::before {
    background:
        var(--bronze-dark);
}


.button--dark:hover::before {
    transform:
        translateY(0);
}


.button--light {
    background:
        var(--white);

    color:
        var(--ink);
}


.button--light::before {
    background:
        var(--bronze-light);
}


.button--light:hover::before {
    transform:
        translateY(0);
}


.button__arrow {
    font-size:
        17px;

    font-weight:
        300;

    line-height:
        1;

    transition:
        transform var(--medium);
}


.button:hover .button__arrow {
    transform:
        translate(4px, -4px);
}


.button:disabled {
    cursor:
        wait;

    opacity:
        0.64;
}


/* ============================================================
   06. TEXT LINKS
   ============================================================ */

.text-link {
    position: relative;

    display: inline-flex;

    align-items: center;

    padding-bottom:
        8px;

    color:
        var(--ink);

    font-size:
        10px;

    font-weight:
        600;

    line-height:
        1;

    letter-spacing:
        0.16em;

    text-transform:
        uppercase;
}


.text-link::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;
    left: 0;

    height:
        1px;

    background:
        currentColor;

    transform:
        scaleX(1);

    transform-origin:
        left center;

    transition:
        transform 500ms var(--ease);
}


.text-link:hover::after {
    transform:
        scaleX(0.35);

    transform-origin:
        right center;
}


.text-link--light {
    color:
        var(--white);
}


/* ============================================================
   07. HEADER
   ============================================================ */

.site-header {
    position: absolute;

    top: 0;
    right: 0;
    left: 0;

    z-index:
        2000;

    height:
        var(--header-height);

    color:
        var(--white);

    transition:
        background-color var(--medium),
        color var(--medium),
        transform var(--medium),
        box-shadow var(--medium),
        backdrop-filter var(--medium);
}


.site-header::after {
    content: "";

    position: absolute;

    right:
        var(--page-x);

    bottom:
        0;

    left:
        var(--page-x);

    height:
        1px;

    background:
        rgba(255, 255, 255, 0.22);

    transition:
        opacity var(--medium),
        background-color var(--medium);
}


.site-header.is-fixed {
    position: fixed;

    background:
        rgba(247, 245, 239, 0.91);

    color:
        var(--ink);

    -webkit-backdrop-filter:
        blur(18px);

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 1px 0 rgba(20, 20, 18, 0.06);
}


.site-header.is-fixed::after {
    opacity:
        0;
}


.site-header.is-hidden {
    transform:
        translateY(-105%);
}


body.menu-open .site-header {
    transform:
        none;

    background:
        var(--ink);

    color:
        var(--white);
}


body.menu-open .site-header::after {
    background:
        var(--line-light);

    opacity:
        1;
}


.site-header__inner {
    display: grid;

    grid-template-columns:
        minmax(160px, 1fr)
        auto
        minmax(160px, 1fr);

    align-items:
        center;

    min-height:
        var(--header-height);
}


/* ============================================================
   08. BRAND
   ============================================================ */

.brand {
    justify-self:
        start;

    display:
        inline-flex;

    flex-direction:
        column;

    line-height:
        1;
}


.brand__name {
    font-size:
        18px;

    font-weight:
        500;

    letter-spacing:
        0.17em;
}


.brand__descriptor {
    margin-top:
        7px;

    padding-left:
        1px;

    font-size:
        9px;

    font-weight:
        500;

    letter-spacing:
        0.42em;

    opacity:
        0.82;
}


/* ============================================================
   09. DESKTOP NAVIGATION
   ============================================================ */

.desktop-navigation {
    justify-self:
        center;
}


.desktop-navigation__list {
    display:
        flex;

    align-items:
        center;

    gap:
        clamp(18px, 1.65vw, 33px);
}


.desktop-navigation__list a {
    position:
        relative;

    display:
        block;

    padding:
        14px 0;

    font-size:
        10px;

    font-weight:
        700;

    line-height:
        1;

    letter-spacing:
        0.13em;

    text-transform:
        uppercase;
}


.site-header:not(.is-fixed) .desktop-navigation__list a {
    color:
        rgba(255, 255, 255, 0.98);

    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.72),
        0 0 12px rgba(0, 0, 0, 0.42);
}


.desktop-navigation__list a::after {
    content: "";

    position:
        absolute;

    right:
        0;

    bottom:
        7px;

    left:
        0;

    height:
        1px;

    background:
        currentColor;

    transform:
        scaleX(0);

    transform-origin:
        right center;

    transition:
        transform 450ms var(--ease);
}


.desktop-navigation__list a:hover::after {
    transform:
        scaleX(1);

    transform-origin:
        left center;
}


/* ============================================================
   10. HEADER ACTION
   ============================================================ */

.site-header__actions {
    justify-self:
        end;

    display:
        flex;

    align-items:
        center;

    gap:
        24px;
}


.header-project-link {
    position:
        relative;

    padding:
        13px 0;

    font-size:
        10px;

    font-weight:
        700;

    line-height:
        1;

    letter-spacing:
        0.15em;

    text-transform:
        uppercase;
}


.site-header:not(.is-fixed) .header-project-link {
    color:
        rgba(255, 255, 255, 0.98);

    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.72),
        0 0 12px rgba(0, 0, 0, 0.42);
}


.header-project-link::after {
    content: "";

    position:
        absolute;

    right:
        0;

    bottom:
        7px;

    left:
        0;

    height:
        1px;

    background:
        currentColor;

    transition:
        transform 450ms var(--ease);
}


.header-project-link:hover::after {
    transform:
        scaleX(0.35);

    transform-origin:
        right center;
}


/* ============================================================
   10A. LANGUAGE SWITCHER
   ============================================================ */

.language-switcher {
    position: relative;
    z-index: 2200;
    flex: 0 0 auto;
}


.language-switcher__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 66px;
    height: 40px;
    padding-inline: 8px;
    color: inherit;
    line-height: 1;
    transition:
        color var(--fast),
        opacity var(--fast);
}


.site-header:not(.is-fixed)
.language-switcher__trigger {
    color: rgba(255, 255, 255, 0.98);
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.72),
        0 0 12px rgba(0, 0, 0, 0.42);
}


.language-switcher__trigger:hover {
    opacity: 0.76;
}


.language-switcher__flag {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 24px;
    height: 16px;
    overflow: hidden;
    border:
        1px solid rgba(21, 21, 19, 0.13);
    border-radius: 2px;
    background: #ffffff;
    box-shadow:
        0 1px 3px rgba(21, 21, 19, 0.12);
}


.language-switcher__flag svg {
    display: block;
    width: 100%;
    height: 100%;
}


.language-switcher__code,
.language-switcher__item-code {
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


.language-switcher__chevron {
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
    transition:
        margin-top var(--fast),
        transform var(--fast);
}


.language-switcher.is-open
.language-switcher__chevron {
    margin-top: 3px;
    transform: rotate(225deg);
}


.site-header.language-switcher-open {
    overflow: visible;
}


.language-switcher__panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 246px;
    max-height:
        min(
            590px,
            calc(100vh - var(--header-height) - 24px)
        );
    max-height:
        min(
            590px,
            calc(100dvh - var(--header-height) - 24px)
        );
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 8px;
    border:
        1px solid rgba(89, 51, 31, 0.15);
    background:
        rgba(250, 247, 241, 0.985);
    color: var(--ink);
    box-shadow:
        0 24px 70px rgba(35, 24, 17, 0.18),
        0 3px 12px rgba(35, 24, 17, 0.08);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    opacity: 0;
    transform: translateY(-7px);
    transform-origin: top right;
    transition:
        opacity var(--fast),
        transform var(--fast);
}


.language-switcher__panel[hidden] {
    display: none;
}


.language-switcher.is-open
.language-switcher__panel {
    opacity: 1;
    transform: translateY(0);
}


.language-switcher__list {
    display: grid;
    gap: 2px;
}


.language-switcher__item {
    position: relative;
    display: grid;
    grid-template-columns:
        24px
        minmax(0, 1fr)
        auto;
    align-items: center;
    gap: 12px;
    min-height: 42px;
    padding: 7px 11px;
    color: #35281f;
    transition:
        background-color var(--fast),
        color var(--fast);
}


.language-switcher__item:hover,
.language-switcher__item:focus-visible {
    background:
        rgba(89, 51, 31, 0.075);
    color: var(--logo-chocolate);
}


.language-switcher__item[aria-current="page"] {
    background:
        rgba(89, 51, 31, 0.11);
    color: var(--logo-chocolate);
}


.language-switcher__item[aria-current="page"]::before {
    content: "";
    position: absolute;
    top: 9px;
    bottom: 9px;
    left: 0;
    width: 2px;
    background: currentColor;
}


.language-switcher__name {
    overflow: hidden;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.015em;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.language-switcher__item-code {
    color: rgba(53, 40, 31, 0.48);
}


@media (max-width: 1080px) {

    .site-header__actions {
        gap: 0;
    }


    .language-switcher {
        margin-right: 20mm;
    }


    .language-switcher__panel {
        width:
            min(
                270px,
                calc(
                    100vw -
                    var(--page-x) -
                    var(--page-x)
                )
            );
    }

}


@media (max-width: 480px) {

    .language-switcher {
        margin-right:
            clamp(20px, 7vw, 30px);
    }


    .language-switcher__trigger {
        gap: 6px;
        min-width: 44px;
        width: 44px;
        padding-inline: 4px;
    }


    .language-switcher__code {
        display: none;
    }

}


@media (prefers-reduced-motion: reduce) {

    .language-switcher__trigger,
    .language-switcher__chevron,
    .language-switcher__panel,
    .language-switcher__item {
        transition: none;
    }

}


/* ============================================================
   11. MENU BUTTON
   ============================================================ */

.menu-toggle {
    position:
        relative;

    z-index:
        2100;

    display:
        none;

    width:
        48px;

    height:
        48px;

    color:
        inherit;

    -webkit-appearance:
        none;

    appearance:
        none;

    touch-action:
        manipulation;

    -webkit-tap-highlight-color:
        transparent;

    -webkit-user-select:
        none;

    user-select:
        none;
}


.menu-toggle span {
    position:
        absolute;

    left:
        12px;

    width:
        24px;

    height:
        1px;

    background:
        currentColor;

    transition:
        top var(--medium),
        transform var(--medium);
}


.menu-toggle span:first-child {
    top:
        19px;
}


.menu-toggle span:last-child {
    top:
        28px;
}


.menu-toggle[aria-expanded="true"] span:first-child {
    top:
        24px;

    transform:
        rotate(45deg);
}


.menu-toggle[aria-expanded="true"] span:last-child {
    top:
        24px;

    transform:
        rotate(-45deg);
}


/* ============================================================
   12. MOBILE MENU
   ============================================================ */

.mobile-menu {
    position:
        fixed;

    top:
        0;

    right:
        0;

    bottom:
        0;

    left:
        0;

    inset:
        0;

    z-index:
        1900;

    display:
        none;

    width:
        100%;

    height:
        100vh;

    height:
        100dvh;

    overflow-x:
        hidden;

    overflow-y:
        auto;

    overscroll-behavior:
        contain;

    -webkit-overflow-scrolling:
        touch;

    touch-action:
        pan-y;

    padding-top:
        var(--header-height);

    background:
        var(--ink);

    color:
        var(--white);

    opacity:
        0;

    visibility:
        hidden;

    pointer-events:
        none;

    transition:
        opacity 380ms var(--ease),
        visibility 0s linear 380ms;
}


.mobile-menu.is-open {
    opacity:
        1;

    visibility:
        visible;

    pointer-events:
        auto;

    transition-delay:
        0s;
}


.mobile-menu__inner {
    display:
        flex;

    flex-direction:
        column;

    justify-content:
        space-between;

    height:
        100%;

    padding:
        clamp(50px, 9vh, 100px)
        var(--page-x)
        max(
            34px,
            calc(
                22px +
                env(safe-area-inset-bottom)
            )
        );
}


.mobile-menu__navigation {
    counter-reset:
        navigation;
}


.mobile-menu__navigation li {
    counter-increment:
        navigation;
}


.mobile-menu__navigation li + li {
    margin-top:
        8px;
}


.mobile-menu__navigation a {
    position:
        relative;

    display:
        inline-flex;

    align-items:
        baseline;

    gap:
        18px;

    font-size:
        clamp(42px, 7vw, 74px);

    font-weight:
        300;

    line-height:
        1.02;

    letter-spacing:
        -0.055em;
}


.mobile-menu__navigation a::before {
    content:
        "0" counter(navigation);

    width:
        24px;

    color:
        rgba(255, 255, 255, 0.35);

    font-size:
        8px;

    font-weight:
        500;

    letter-spacing:
        0.1em;
}


.mobile-menu__footer {
    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap:
        35px;

    padding-top:
        30px;

    border-top:
        1px solid var(--line-light);
}


.mobile-menu__footer p {
    max-width:
        270px;

    color:
        var(--text-light-soft);

    font-size:
        9px;

    line-height:
        1.6;

    letter-spacing:
        0.16em;

    text-transform:
        uppercase;
}


/* ============================================================
   13. HERO
   ============================================================ */

.hero {
    position:
        relative;

    isolation:
        isolate;

    min-height:
        100vh;

    min-height:
        100svh;

    overflow:
        hidden;

    background:
        var(--ink);

    color:
        var(--white);
}


.hero__media {
    position:
        absolute;

    inset:
        0;

    z-index:
        -3;
}


.hero__media picture,
.hero__media img {
    width:
        100%;

    height:
        100%;
}


.hero__media picture {
    transition:
        opacity
        0.55s
        var(--ease-out);
}


.hero__video {
    position:
        absolute;

    inset:
        0;

    width:
        100%;

    height:
        100%;

    max-width:
        none;

    object-fit:
        cover;

    object-position:
        center;

    opacity:
        0;

    transform:
        scale(1.015);

    transition:
        opacity
        0.55s
        var(--ease-out);
}


.hero__media.has-video .hero__video {
    opacity:
        1;
}


.hero__media.has-video picture {
    opacity:
        0;
}


.hero__media img {
    object-fit:
        cover;

    object-position:
        center;

    transform:
        scale(1.015);

    animation:
        hbsHeroImage 1.8s var(--ease-out) both;
}


.hero__overlay {
    position:
        absolute;

    inset:
        0;

    z-index:
        -2;

    background:
        linear-gradient(
            180deg,
            rgba(9, 9, 8, 0.42) 0%,
            rgba(9, 9, 8, 0.09) 36%,
            rgba(9, 9, 8, 0.17) 57%,
            rgba(9, 9, 8, 0.75) 100%
        );
}


.hero__overlay::after {
    content: "";

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.21) 0%,
            transparent 55%
        );
}


.hero__content {
    position:
        relative;

    display:
        flex;

    flex-direction:
        column;

    min-height:
        100vh;

    min-height:
        100svh;

    padding-top:
        calc(
            var(--header-height) +
            clamp(55px, 8vh, 120px)
        );

    padding-bottom:
        max(
            55px,
            calc(
                34px +
                env(safe-area-inset-bottom)
            )
        );
}


.hero__eyebrow {
    margin-bottom:
        clamp(32px, 5vh, 60px);

    color:
        rgba(255, 255, 255, 0.66);

    font-size:
        9px;

    font-weight:
        600;

    letter-spacing:
        0.25em;

    text-transform:
        uppercase;

    animation:
        hbsHeroUp 900ms 120ms var(--ease-out) both;
}


.hero__title {
    max-width:
        1280px;

    font-size:
        clamp(75px, 9vw, 172px);

    font-weight:
        300;

    line-height:
        0.81;

    letter-spacing:
        -0.075em;

    text-wrap:
        balance;

    animation:
        hbsHeroUp 1100ms 200ms var(--ease-out) both;
}


.hero__title span {
    display:
        block;

    margin-top:
        0.03em;

    margin-left:
        clamp(0px, 12vw, 190px);

    font-family:
        var(--font-serif);

    font-weight:
        400;

    font-style:
        italic;

    letter-spacing:
        -0.045em;
}


.hero__bottom {
    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap:
        60px;

    margin-top:
        auto;

    padding-top:
        70px;

    animation:
        hbsHeroUp 1100ms 330ms var(--ease-out) both;
}


.hero__description {
    max-width:
        540px;

    color:
        rgba(255, 255, 255, 0.76);

    font-size:
        clamp(16px, 1.15vw, 20px);

    font-weight:
        300;

    line-height:
        1.62;

    letter-spacing:
        -0.015em;
}


.hero__actions {
    display:
        flex;

    align-items:
        center;

    gap:
        34px;
}


.hero__scroll {
    position:
        absolute;

    right:
        var(--page-x);

    bottom:
        clamp(100px, 14vh, 155px);

    display:
        flex;

    align-items:
        center;

    gap:
        16px;

    color:
        rgba(255, 255, 255, 0.45);

    font-size:
        7px;

    font-weight:
        600;

    letter-spacing:
        0.23em;

    text-transform:
        uppercase;

    transform:
        rotate(90deg);

    transform-origin:
        right bottom;
}


.hero__scroll-line {
    display:
        block;

    width:
        52px;

    height:
        1px;

    overflow:
        hidden;

    background:
        rgba(255, 255, 255, 0.28);
}


@keyframes hbsHeroImage {

    from {
        opacity: 0;
        transform: scale(1.07);
    }

    to {
        opacity: 1;
        transform: scale(1.015);
    }

}


@keyframes hbsHeroUp {

    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* ============================================================
   14. INTRODUCTION
   ============================================================ */

.introduction {
    overflow:
        hidden;

    background:
        var(--ivory-soft);
}


.introduction::after {
    content:
        "SPACE";

    position:
        absolute;

    right:
        -0.04em;

    bottom:
        -0.19em;

    color:
        rgba(20, 20, 18, 0.025);

    font-size:
        clamp(140px, 20vw, 380px);

    font-weight:
        500;

    line-height:
        0.8;

    letter-spacing:
        -0.08em;

    pointer-events:
        none;
}


.introduction__content {
    position:
        relative;

    z-index:
        1;

    max-width:
        1230px;
}


.introduction__text-grid {
    display:
        grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        clamp(40px, 7vw, 120px);

    max-width:
        970px;

    margin-top:
        clamp(65px, 8vw, 125px);

    margin-left:
        auto;
}


.introduction__text-grid p {
    color:
        var(--text-soft);

    font-size:
        clamp(15px, 1.05vw, 18px);

    line-height:
        1.82;
}


.introduction__text-grid p:first-child {
    color:
        var(--ink);

    font-size:
        clamp(21px, 1.55vw, 28px);

    font-weight:
        300;

    line-height:
        1.55;

    letter-spacing:
        -0.028em;
}


/* ============================================================
   15. FULL EDITORIAL IMAGE
   ============================================================ */

.editorial-image {
    position:
        relative;

    height:
        clamp(600px, 76vw, 1160px);

    overflow:
        hidden;

    background:
        var(--sand);
}


.editorial-image::after {
    content: "";

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02),
            rgba(0, 0, 0, 0.1)
        );

    pointer-events:
        none;
}


.editorial-image picture,
.editorial-image img {
    width:
        100%;

    height:
        100%;
}


.editorial-image img {
    object-fit:
        cover;

    object-position:
        center;
}


/* ============================================================
   16. COLLECTIONS
   ============================================================ */

.collections {
    background:
        var(--ivory);
}


.collections:nth-of-type(even) {
    background:
        var(--ivory-soft);
}


.collections-grid {
    display:
        grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:
        clamp(50px, 5vw, 90px)
        clamp(20px, 2.3vw, 40px);
}


/* Home material preview contains two cards; keep the pair centred. */

.collections--samples-home
.collections-grid {
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    width:
        min(100%, 1120px);

    margin-inline:
        auto;
}


@media (max-width: 620px) {

    .collections--samples-home
    .collections-grid {
        grid-template-columns:
            minmax(0, 1fr);

        width:
            min(100%, 560px);
    }

}


.custom-configurations {
    background: var(--paper);
}


.custom-scheme-gallery .collection-folder-item__image {
    aspect-ratio: 19 / 18;
    background: #3f6a50;
}


.custom-scheme-gallery .collection-folder-item__image img {
    object-fit: contain;
    filter: none;
}


.collection-card {
    min-width:
        0;
}


.collection-card__link {
    display:
        block;
}


.collection-card__image {
    position:
        relative;

    isolation:
        isolate;

    aspect-ratio:
        4 / 5;

    overflow:
        hidden;

    background:
        var(--sand);
}


.collection-card__image::after {
    content: "";

    position:
        absolute;

    inset:
        0;

    z-index:
        1;

    background:
        linear-gradient(
            180deg,
            transparent 48%,
            rgba(9, 9, 8, 0.12) 100%
        );

    opacity:
        0.45;

    transition:
        opacity var(--medium);
}


.collection-card__image picture,
.collection-card__image img {
    width:
        100%;

    height:
        100%;
}


.collection-card__image img {
    object-fit:
        cover;

    transform:
        scale(1.001);

    filter:
        saturate(0.92)
        contrast(1.015);

    transition:
        transform 1s var(--ease),
        filter 700ms var(--ease);
}


.collection-card__content {
    display:
        grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    gap:
        28px;

    padding-top:
        22px;
}


.collection-card__number {
    display:
        block;

    margin-bottom:
        12px;

    color:
        var(--bronze-dark);

    font-size:
        8px;

    font-weight:
        600;

    letter-spacing:
        0.2em;

    text-transform:
        uppercase;
}


.collection-card h3 {
    font-size:
        clamp(27px, 2vw, 37px);

    font-weight:
        300;

    line-height:
        1.02;

    letter-spacing:
        -0.045em;
}


.collection-card p {
    max-width:
        390px;

    margin-top:
        10px;

    color:
        var(--stone-dark);

    font-size:
        12px;

    line-height:
        1.68;
}


.collection-card__arrow {
    margin-top:
        19px;

    font-size:
        20px;

    font-weight:
        300;

    line-height:
        1;

    transition:
        transform var(--medium);
}


.collections__footer {
    display:
        flex;

    justify-content:
        flex-end;

    margin-top:
        clamp(65px, 7vw, 110px);
}


/* ============================================================
   17. COLLECTION HOVERS
   ============================================================ */

@media (hover: hover) and (pointer: fine) {

    .collection-card__link:hover
    .collection-card__image img {
        transform:
            scale(1.04);

        filter:
            saturate(1)
            contrast(1.025);
    }


    .collection-card__link:hover
    .collection-card__image::after {
        opacity:
            0.7;
    }


    .collection-card__link:hover
    .collection-card__arrow {
        transform:
            translate(5px, -5px);
    }

}


/* ============================================================
   18. STATEMENT
   ============================================================ */

.statement {
    display:
        flex;

    align-items:
        center;

    min-height:
        clamp(720px, 87vh, 1040px);

    padding-block:
        clamp(120px, 12vw, 190px);

    overflow:
        hidden;

    background:
        var(--ink);

    color:
        var(--white);
}


.statement::before {
    content: "";

    position:
        absolute;

    width:
        min(70vw, 1000px);

    aspect-ratio:
        1;

    top:
        50%;

    left:
        50%;

    border:
        1px solid rgba(255, 255, 255, 0.045);

    border-radius:
        50%;

    transform:
        translate(-50%, -50%);

    pointer-events:
        none;
}


.statement__inner {
    position:
        relative;

    z-index:
        1;

    text-align:
        center;
}


.statement__small {
    margin-bottom:
        45px;

    color:
        var(--bronze-light);

    font-size:
        8px;

    font-weight:
        600;

    letter-spacing:
        0.26em;

    text-transform:
        uppercase;
}


.statement__title {
    max-width:
        1420px;

    margin-inline:
        auto;

    font-size:
        clamp(59px, 8.3vw, 154px);

    font-weight:
        300;

    line-height:
        0.89;

    letter-spacing:
        -0.073em;

    text-wrap:
        balance;
}


.statement__title span {
    display:
        block;

    margin-top:
        0.03em;

    font-family:
        var(--font-serif);

    font-weight:
        400;

    font-style:
        italic;

    letter-spacing:
        -0.04em;
}


.statement__description {
    max-width:
        650px;

    margin:
        54px auto 0;

    color:
        rgba(255, 255, 255, 0.53);

    font-size:
        14px;

    line-height:
        1.82;
}


/* ============================================================
   19. PROJECTS
   ============================================================ */

.projects {
    background:
        var(--ivory-soft);
}


.projects-list {
    display:
        flex;

    flex-direction:
        column;

    gap:
        clamp(85px, 10vw, 165px);
}


.project-card__link {
    display:
        block;
}


.project-card__media {
    position:
        relative;

    overflow:
        hidden;

    background:
        var(--sand);
}


.project-card--large
.project-card__media {
    aspect-ratio:
        16 / 9;
}


.project-card:not(.project-card--large)
.project-card__media {
    aspect-ratio:
        4 / 5;
}


.project-card__media::after {
    content: "";

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0, 0, 0, 0.10) 100%
        );

    pointer-events:
        none;
}


.project-card__media picture,
.project-card__media img {
    width:
        100%;

    height:
        100%;
}


.project-card__media img {
    object-fit:
        cover;

    transition:
        transform 1.1s var(--ease),
        filter 700ms var(--ease);
}


.project-card__meta {
    display:
        flex;

    align-items:
        flex-start;

    justify-content:
        space-between;

    gap:
        35px;

    padding-top:
        22px;
}


.project-card__meta h3 {
    font-size:
        clamp(25px, 1.8vw, 33px);

    font-weight:
        300;

    line-height:
        1.05;

    letter-spacing:
        -0.045em;
}


.project-card__meta p {
    margin-top:
        8px;

    color:
        var(--stone-dark);

    font-size:
        9px;

    font-weight:
        500;

    letter-spacing:
        0.13em;

    text-transform:
        uppercase;
}


.project-card__meta > span {
    color:
        var(--stone-dark);

    font-size:
        8px;

    font-weight:
        500;

    letter-spacing:
        0.14em;

    text-transform:
        uppercase;
}


.projects-list__split {
    display:
        grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        clamp(28px, 5vw, 92px);
}


.projects-list__split
.project-card:nth-child(2) {
    margin-top:
        clamp(60px, 10vw, 175px);
}


.projects__footer {
    display:
        flex;

    justify-content:
        center;

    margin-top:
        clamp(80px, 10vw, 160px);
}


@media (hover: hover) and (pointer: fine) {

    .project-card__link:hover
    .project-card__media img {
        transform:
            scale(1.035);
    }

}


/* ============================================================
   20. TECHNOLOGY
   ============================================================ */

.technology {
    display:
        grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    min-height:
        940px;

    background:
        var(--ink);

    color:
        var(--white);
}


.technology__visual {
    position:
        relative;

    min-height:
        880px;

    overflow:
        hidden;

    background:
        var(--ink-soft);
}


.technology__visual::after {
    content: "";

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            90deg,
            transparent 72%,
            rgba(21, 21, 19, 0.22) 100%
        );

    pointer-events:
        none;
}


.technology__visual picture,
.technology__visual img {
    width:
        100%;

    height:
        100%;
}


.technology__visual img {
    object-fit:
        cover;
}


.technology__content {
    display:
        grid;

    grid-template-columns:
        minmax(80px, 0.38fr)
        minmax(0, 3fr);

    gap:
        clamp(35px, 5vw, 90px);

    padding:
        clamp(95px, 9vw, 155px)
        clamp(42px, 7vw, 125px);
}


.technology__copy {
    max-width:
        760px;
}


.technology__lead {
    max-width:
        590px;

    margin-top:
        52px;

    color:
        rgba(255, 255, 255, 0.60);

    font-size:
        clamp(18px, 1.3vw, 23px);

    font-weight:
        300;

    line-height:
        1.62;

    letter-spacing:
        -0.022em;
}


.technology-features {
    margin-block:
        70px;

    border-top:
        1px solid var(--line-light);
}


.technology-features li {
    display:
        grid;

    grid-template-columns:
        60px
        minmax(0, 1fr);

    gap:
        25px;

    padding-block:
        28px;

    border-bottom:
        1px solid var(--line-light);
}


.technology-features__number {
    padding-top:
        4px;

    color:
        rgba(255, 255, 255, 0.31);

    font-size:
        8px;

    letter-spacing:
        0.14em;
}


.technology-features h3 {
    margin-bottom:
        9px;

    font-size:
        20px;

    font-weight:
        300;

    line-height:
        1.2;

    letter-spacing:
        -0.025em;
}


.technology-features p {
    max-width:
        520px;

    color:
        rgba(255, 255, 255, 0.50);

    font-size:
        12px;

    line-height:
        1.76;
}


/* ============================================================
   21. PROCESS
   ============================================================ */

.process {
    background:
        var(--ivory);
}


.process-list {
    display:
        grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    border-top:
        1px solid var(--line);

    border-bottom:
        1px solid var(--line);
}


.process-item {
    position:
        relative;

    min-height:
        340px;

    padding:
        27px 25px 38px;

    border-right:
        1px solid var(--line);

    overflow:
        hidden;

    transition:
        background-color var(--medium),
        color var(--medium);
}


.process-item:first-child {
    border-left:
        1px solid var(--line);
}


.process-item::after {
    content:
        "";

    position:
        absolute;

    right:
        0;

    bottom:
        0;

    left:
        0;

    height:
        3px;

    background:
        var(--bronze);

    transform:
        scaleX(0);

    transform-origin:
        left;

    transition:
        transform 600ms var(--ease);
}


.process-item__number {
    display:
        block;

    margin-bottom:
        90px;

    color:
        var(--stone-dark);

    font-size:
        8px;

    font-weight:
        600;

    letter-spacing:
        0.16em;
}


.process-item h3 {
    margin-bottom:
        17px;

    font-size:
        clamp(22px, 1.6vw, 29px);

    font-weight:
        300;

    line-height:
        1.08;

    letter-spacing:
        -0.04em;
}


.process-item p {
    max-width:
        225px;

    color:
        var(--stone-dark);

    font-size:
        12px;

    line-height:
        1.7;

    transition:
        color var(--medium);
}


@media (hover: hover) and (pointer: fine) {

    .process-item:hover {
        background:
            var(--ink);

        color:
            var(--white);
    }


    .process-item:hover
    .process-item__number {
        color:
            var(--bronze-light);
    }


    .process-item:hover p {
        color:
            rgba(255, 255, 255, 0.55);
    }


    .process-item:hover::after {
        transform:
            scaleX(1);
    }

}


/* ============================================================
   22. DESIGNERS
   ============================================================ */

.designers {
    position:
        relative;

    isolation:
        isolate;

    display:
        flex;

    align-items:
        center;

    min-height:
        930px;

    overflow:
        hidden;

    background:
        var(--ink);

    color:
        var(--white);
}


.designers__media {
    position:
        absolute;

    inset:
        0;

    z-index:
        -3;
}


.designers__media picture,
.designers__media img {
    width:
        100%;

    height:
        100%;
}


.designers__media img {
    object-fit:
        cover;
}


.designers__overlay {
    position:
        absolute;

    inset:
        0;

    z-index:
        -2;

    background:
        linear-gradient(
            90deg,
            rgba(10, 10, 9, 0.91) 0%,
            rgba(10, 10, 9, 0.72) 43%,
            rgba(10, 10, 9, 0.16) 100%
        );
}


.designers__content {
    display:
        grid;

    grid-template-columns:
        minmax(110px, 0.65fr)
        minmax(0, 4fr);

    gap:
        clamp(55px, 7vw, 140px);

    padding-block:
        clamp(110px, 11vw, 185px);
}


.designers__copy {
    max-width:
        920px;
}


.designers__copy
> p:not(.eyebrow) {
    max-width:
        610px;

    margin-block:
        50px 44px;

    color:
        rgba(255, 255, 255, 0.65);

    font-size:
        clamp(16px, 1.15vw, 19px);

    font-weight:
        300;

    line-height:
        1.78;
}


/* ============================================================
   23. ABOUT
   ============================================================ */

.about {
    overflow:
        hidden;

    background:
        var(--ivory-soft);
}


.about::after {
    content:
        "2003 — 2026";

    position:
        absolute;

    right:
        var(--page-x);

    bottom:
        0;

    color:
        rgba(21, 21, 19, 0.025);

    font-size:
        clamp(80px, 11vw, 200px);

    font-weight:
        500;

    line-height:
        0.72;

    letter-spacing:
        -0.07em;

    pointer-events:
        none;
}


.about__content {
    position:
        relative;

    z-index:
        1;

    max-width:
        1210px;
}


.about__body {
    display:
        grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 1fr);

    gap:
        clamp(55px, 9vw, 150px);

    max-width:
        1020px;

    margin-top:
        clamp(75px, 9vw, 145px);

    margin-left:
        auto;
}


.about__lead p {
    font-size:
        clamp(23px, 2vw, 35px);

    font-weight:
        300;

    line-height:
        1.46;

    letter-spacing:
        -0.035em;
}


.about__text {
    color:
        var(--stone-dark);

    font-size:
        14px;

    line-height:
        1.88;
}


.about__text p + p {
    margin-top:
        25px;
}


.about__text .text-link {
    margin-top:
        44px;
}


/* ============================================================
   24. BRAND QUOTE
   ============================================================ */

.brand-quote {
    padding-block:
        clamp(120px, 15vw, 245px);

    overflow:
        hidden;

    background:
        var(--sand);
}


.brand-quote::before,
.brand-quote::after {
    content: "";

    position:
        absolute;

    top:
        50%;

    width:
        14vw;

    height:
        1px;

    background:
        rgba(21, 21, 19, 0.14);
}


.brand-quote::before {
    left:
        0;
}


.brand-quote::after {
    right:
        0;
}


.brand-quote__inner {
    text-align:
        center;
}


.brand-quote p {
    position:
        relative;

    z-index:
        1;

    font-size:
        clamp(64px, 9vw, 164px);

    font-weight:
        300;

    line-height:
        0.86;

    letter-spacing:
        -0.075em;

    text-wrap:
        balance;
}


.brand-quote p span {
    display:
        block;

    font-family:
        var(--font-serif);

    font-weight:
        400;

    font-style:
        italic;

    letter-spacing:
        -0.04em;
}


/* ============================================================
   25. PROJECT REQUEST
   ============================================================ */

.project-request {
    padding-block:
        clamp(110px, 11vw, 195px);

    background:
        var(--white);
}


.project-request__inner {
    display:
        grid;

    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(430px, 0.88fr);

    gap:
        clamp(80px, 10vw, 180px);
}


.project-request__heading {
    display:
        grid;

    grid-template-columns:
        minmax(90px, 0.30fr)
        minmax(0, 1fr);

    gap:
        clamp(35px, 5vw, 80px);

    align-self:
        start;
}


.project-request__heading
.display-title {
    font-size:
        clamp(54px, 5.3vw, 98px);
}


.project-request__intro {
    max-width:
        610px;

    margin-top:
        40px;

    color:
        var(--stone-dark);

    font-size:
        clamp(15px, 1vw, 18px);

    line-height:
        1.82;
}


.project-request__intro
+ .project-request__intro {
    margin-top:
        18px;
}


.project-request__heading
.text-link {
    margin-top:
        40px;
}


/* ============================================================
   26. FORM
   ============================================================ */

.project-form {
    align-self:
        start;

    padding-top:
        5px;
}


.form-grid {
    display:
        grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        38px 28px;
}


.form-field {
    position:
        relative;
}


.form-field--full {
    grid-column:
        1 / -1;
}


.form-field
label:not(.file-upload) {
    display:
        block;

    margin-bottom:
        10px;

    color:
        var(--stone-dark);

    font-size:
        8px;

    font-weight:
        600;

    letter-spacing:
        0.17em;

    text-transform:
        uppercase;
}


.form-field input,
.form-field textarea,
.form-field select {
    min-height:
        54px;

    padding:
        12px 0;

    border-bottom:
        1px solid rgba(21, 21, 19, 0.28);

    background:
        transparent;

    color:
        var(--ink);

    font-size:
        14px;

    outline:
        none;

    transition:
        border-color var(--fast);
}


.form-field textarea {
    min-height:
        130px;

    line-height:
        1.65;
}


.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color:
        var(--ink);
}


.form-field input::placeholder,
.form-field textarea::placeholder {
    color:
        rgba(21, 21, 19, 0.32);
}


.form-field select {
    padding-right:
        34px;

    -webkit-appearance:
        none;

    appearance:
        none;

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            var(--stone-dark) 50%
        ),
        linear-gradient(
            135deg,
            var(--stone-dark) 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 14px) 50%,
        calc(100% - 9px) 50%;

    background-size:
        5px 5px;

    background-repeat:
        no-repeat;
}


/* ============================================================
   27. FILE UPLOAD
   ============================================================ */

.file-upload {
    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    min-height:
        100px;

    padding:
        19px 0;

    border-top:
        1px solid var(--line);

    border-bottom:
        1px solid var(--line);

    cursor:
        pointer;

    transition:
        border-color var(--medium);
}


.file-upload:hover {
    border-color:
        var(--ink);
}


.file-upload__label {
    font-size:
        14px;

    font-weight:
        500;
}


.file-upload__description {
    margin-left:
        auto;

    color:
        var(--stone-dark);

    font-size:
        9px;

    letter-spacing:
        0.06em;
}


.file-upload__icon {
    display:
        grid;

    place-items:
        center;

    flex:
        0 0 auto;

    width:
        42px;

    height:
        42px;

    border:
        1px solid var(--line);

    border-radius:
        50%;

    font-size:
        20px;

    font-weight:
        300;

    transition:
        background-color var(--medium),
        color var(--medium),
        transform var(--medium);
}


.file-upload:hover
.file-upload__icon {
    background:
        var(--ink);

    color:
        var(--white);

    transform:
        rotate(90deg);
}


.file-upload__input {
    position:
        absolute;

    width:
        1px;

    height:
        1px;

    overflow:
        hidden;

    clip:
        rect(0, 0, 0, 0);

    clip-path:
        inset(50%);

    white-space:
        nowrap;
}


.file-upload__name {
    margin-top:
        10px;

    color:
        var(--bronze-dark);

    font-size:
        10px;
}


/* ============================================================
   28. FORM FOOTER
   ============================================================ */

.project-form__footer {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        35px;

    margin-top:
        48px;
}


.privacy-checkbox {
    display:
        flex;

    align-items:
        flex-start;

    gap:
        11px;

    max-width:
        340px;

    color:
        var(--stone-dark);

    font-size:
        9px;

    line-height:
        1.65;

    cursor:
        pointer;
}


.privacy-checkbox input {
    flex:
        0 0 auto;

    width:
        15px;

    height:
        15px;

    margin-top:
        1px;

    accent-color:
        var(--ink);
}


.privacy-checkbox a {
    color:
        var(--ink);

    text-decoration:
        underline;

    text-underline-offset:
        3px;
}


.form-status {
    min-height:
        20px;

    margin-top:
        22px;

    font-size:
        11px;

    line-height:
        1.5;
}


.form-status.is-success {
    color:
        var(--success);
}


.form-status.is-error {
    color:
        var(--error);
}


.form-honeypot {
    position:
        absolute !important;

    width:
        1px !important;

    height:
        1px !important;

    overflow:
        hidden !important;

    clip:
        rect(0, 0, 0, 0) !important;

    clip-path:
        inset(50%) !important;
}


/* ============================================================
   29. FOOTER
   ============================================================ */

.site-footer {
    padding:
        clamp(85px, 8vw, 140px)
        0
        max(
            30px,
            env(safe-area-inset-bottom)
        );

    background:
        var(--ink);

    color:
        var(--white);
}


.site-footer__top {
    display:
        flex;

    align-items:
        flex-start;

    justify-content:
        space-between;

    gap:
        50px;

    padding-bottom:
        clamp(70px, 8vw, 120px);

    border-bottom:
        1px solid var(--line-light);
}


.footer-brand {
    display:
        inline-flex;

    flex-direction:
        column;

    line-height:
        1;
}


.footer-brand > span {
    font-size:
        clamp(31px, 3vw, 53px);

    font-weight:
        300;

    letter-spacing:
        0.145em;
}


.footer-brand small {
    margin-top:
        12px;

    font-size:
        clamp(9px, 0.75vw, 12px);

    font-weight:
        500;

    letter-spacing:
        0.44em;

    opacity:
        0.68;
}


.site-footer__statement {
    max-width:
        390px;

    color:
        rgba(255, 255, 255, 0.48);

    font-family:
        var(--font-serif);

    font-size:
        clamp(20px, 1.65vw, 27px);

    font-style:
        italic;

    line-height:
        1.4;

    text-align:
        right;
}


.site-footer__grid {
    display:
        grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap:
        50px;

    padding-block:
        clamp(65px, 7vw, 110px);
}


.site-footer__title {
    margin-bottom:
        28px;

    color:
        rgba(255, 255, 255, 0.30);

    font-size:
        8px;

    font-weight:
        600;

    letter-spacing:
        0.18em;

    text-transform:
        uppercase;
}


.site-footer__column li + li {
    margin-top:
        13px;
}


.site-footer__column li a {
    color:
        rgba(255, 255, 255, 0.66);

    font-size:
        12px;

    line-height:
        1.55;

    transition:
        color var(--fast);
}


.site-footer__column li a:hover {
    color:
        var(--white);
}


.site-footer__column--cta {
    padding-left:
        clamp(0px, 3vw, 58px);
}


.site-footer__column--cta
> p:not(.site-footer__title) {
    max-width:
        260px;

    margin-bottom:
        31px;

    color:
        rgba(255, 255, 255, 0.60);

    font-size:
        12px;

    line-height:
        1.7;
}


.site-footer__bottom {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        35px;

    padding-top:
        27px;

    border-top:
        1px solid var(--line-light);

    color:
        rgba(255, 255, 255, 0.27);

    font-size:
        7px;

    line-height:
        1.5;

    letter-spacing:
        0.14em;

    text-transform:
        uppercase;
}


/* ============================================================
   30. NOSCRIPT
   ============================================================ */

.noscript-message {
    position:
        fixed;

    right:
        0;

    bottom:
        0;

    left:
        0;

    z-index:
        9999;

    padding:
        13px 20px;

    background:
        var(--ink);

    color:
        var(--white);

    font-size:
        11px;

    text-align:
        center;
}


/* ============================================================
   31. SAMPLES PAGE DETECTION
   samples.html contains this specific link.
   ============================================================ */

body:has(
    a[href="samples/neo-urban-line.html"]
) {
    background:
        #f5f2ec;
}


/* ============================================================
   32. SAMPLES — HERO
   ============================================================ */

body:has(
    a[href="samples/neo-urban-line.html"]
)
.hero {
    min-height:
        94vh;

    min-height:
        94svh;
}


body:has(
    a[href="samples/neo-urban-line.html"]
)
.hero__content {
    min-height:
        94vh;

    min-height:
        94svh;
}


body:has(
    a[href="samples/neo-urban-line.html"]
)
.hero__overlay {
    background:
        linear-gradient(
            180deg,
            rgba(8, 8, 7, 0.46) 0%,
            rgba(8, 8, 7, 0.08) 38%,
            rgba(8, 8, 7, 0.18) 60%,
            rgba(8, 8, 7, 0.75) 100%
        );
}


/* ============================================================
   33. SAMPLES — INTRO
   ============================================================ */

body:has(
    a[href="samples/neo-urban-line.html"]
)
.introduction::after {
    content:
        "MATERIAL";
}


/* ============================================================
   34. SAMPLES — COLLECTION SECTIONS
   ============================================================ */

body:has(
    a[href="samples/neo-urban-line.html"]
)
main > .collections {
    padding-block:
        clamp(110px, 10vw, 185px);

    border-top:
        1px solid var(--line);

    background:
        #f3f0e9;
}


/* Architectural */

body:has(
    a[href="samples/neo-urban-line.html"]
)
main > .collections:nth-of-type(4) {
    background:
        #ebe6dc;
}


/* Luxury */

body:has(
    a[href="samples/neo-urban-line.html"]
)
main > .collections:nth-of-type(5) {
    background:
        #dcd4c7;
}


/* Glass */

body:has(
    a[href="samples/neo-urban-line.html"]
)
main > .collections:nth-of-type(6) {
    background:
        #f6f3ed;
}


/* Special */

body:has(
    a[href="samples/neo-urban-line.html"]
)
main > .collections:nth-of-type(7) {
    background:
        #e8e2d8;
}


/* ============================================================
   35. SAMPLES — BIG TYPOGRAPHY
   ============================================================ */

body:has(
    a[href="samples/neo-urban-line.html"]
)
.collections .display-title {
    max-width:
        1200px;

    font-size:
        clamp(58px, 6.8vw, 128px);

    line-height:
        0.89;
}


/* ============================================================
   36. SAMPLES — EDITORIAL GRID
   ============================================================ */

body:has(
    a[href="samples/neo-urban-line.html"]
)
.collections-grid {
    display:
        grid;

    grid-template-columns:
        repeat(12, minmax(0, 1fr));

    grid-template-rows:
        auto auto;

    gap:
        clamp(38px, 4.5vw, 74px)
        clamp(24px, 3vw, 48px);

    align-items:
        start;
}


/* Big card */

body:has(
    a[href="samples/neo-urban-line.html"]
)
.collections-grid
.collection-card:nth-child(1) {
    grid-column:
        1 / span 7;

    grid-row:
        1 / span 2;
}


/* Small top */

body:has(
    a[href="samples/neo-urban-line.html"]
)
.collections-grid
.collection-card:nth-child(2) {
    grid-column:
        8 / span 5;

    grid-row:
        1;
}


/* Small bottom */

body:has(
    a[href="samples/neo-urban-line.html"]
)
.collections-grid
.collection-card:nth-child(3) {
    grid-column:
        8 / span 5;

    grid-row:
        2;
}


/* Reverse architectural / glass sections */

body:has(
    a[href="samples/neo-urban-line.html"]
)
main > .collections:nth-of-type(4)
.collections-grid
.collection-card:nth-child(1),

body:has(
    a[href="samples/neo-urban-line.html"]
)
main > .collections:nth-of-type(6)
.collections-grid
.collection-card:nth-child(1) {
    grid-column:
        6 / span 7;
}


body:has(
    a[href="samples/neo-urban-line.html"]
)
main > .collections:nth-of-type(4)
.collections-grid
.collection-card:nth-child(2),

body:has(
    a[href="samples/neo-urban-line.html"]
)
main > .collections:nth-of-type(6)
.collections-grid
.collection-card:nth-child(2) {
    grid-column:
        1 / span 5;
}


body:has(
    a[href="samples/neo-urban-line.html"]
)
main > .collections:nth-of-type(4)
.collections-grid
.collection-card:nth-child(3),

body:has(
    a[href="samples/neo-urban-line.html"]
)
main > .collections:nth-of-type(6)
.collections-grid
.collection-card:nth-child(3) {
    grid-column:
        1 / span 5;
}


/* ============================================================
   37. SAMPLES — IMAGE RATIOS
   ============================================================ */

body:has(
    a[href="samples/neo-urban-line.html"]
)
.collections-grid
.collection-card:nth-child(1)
.collection-card__image {
    aspect-ratio:
        4 / 5;
}


body:has(
    a[href="samples/neo-urban-line.html"]
)
.collections-grid
.collection-card:nth-child(2)
.collection-card__image,

body:has(
    a[href="samples/neo-urban-line.html"]
)
.collections-grid
.collection-card:nth-child(3)
.collection-card__image {
    aspect-ratio:
        16 / 10;
}


/* ============================================================
   38. SAMPLES — VIEW CIRCLE
   ============================================================ */

body:has(
    a[href="samples/neo-urban-line.html"]
)
.collection-card__image::before {
    content:
        "VIEW";

    position:
        absolute;

    right:
        22px;

    bottom:
        22px;

    z-index:
        3;

    display:
        grid;

    place-items:
        center;

    width:
        76px;

    height:
        76px;

    border:
        1px solid rgba(255, 255, 255, 0.55);

    border-radius:
        50%;

    background:
        rgba(12, 12, 11, 0.14);

    color:
        var(--white);

    -webkit-backdrop-filter:
        blur(10px);

    backdrop-filter:
        blur(10px);

    font-size:
        7px;

    font-weight:
        600;

    letter-spacing:
        0.24em;

    text-indent:
        0.24em;

    opacity:
        0;

    transform:
        translateY(12px)
        scale(0.94);

    transition:
        opacity 450ms var(--ease),
        transform 550ms var(--ease);

    pointer-events:
        none;
}


@media (hover: hover) and (pointer: fine) {

    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    .collection-card__link:hover
    .collection-card__image::before {
        opacity:
            1;

        transform:
            translateY(0)
            scale(1);
    }

}


/* ============================================================
   39. SAMPLES — WATERMARKS
   ============================================================ */

body:has(
    a[href="samples/neo-urban-line.html"]
)
main > .collections::after {
    position:
        absolute;

    top:
        clamp(40px, 5vw, 80px);

    right:
        var(--page-x);

    color:
        rgba(21, 21, 19, 0.035);

    font-size:
        clamp(80px, 10vw, 165px);

    font-weight:
        300;

    line-height:
        1;

    letter-spacing:
        -0.06em;

    pointer-events:
        none;
}


body:has(
    a[href="samples/neo-urban-line.html"]
)
main > .collections:nth-of-type(3)::after {
    content:
        "M";
}


body:has(
    a[href="samples/neo-urban-line.html"]
)
main > .collections:nth-of-type(4)::after {
    content:
        "A";
}


body:has(
    a[href="samples/neo-urban-line.html"]
)
main > .collections:nth-of-type(5)::after {
    content:
        "L";
}


body:has(
    a[href="samples/neo-urban-line.html"]
)
main > .collections:nth-of-type(6)::after {
    content:
        "G";
}


body:has(
    a[href="samples/neo-urban-line.html"]
)
main > .collections:nth-of-type(7)::after {
    content:
        "S";
}


/* ============================================================
   40. LARGE DESKTOP
   ============================================================ */

@media (min-width: 1750px) {

    :root {
        --container:
            1630px;

        --header-height:
            100px;
    }


    .hero__title {
        max-width:
            1400px;
    }

}


/* ============================================================
   41. LAPTOP
   ============================================================ */

@media (max-width: 1320px) {

    .desktop-navigation__list {
        gap:
            17px;
    }


    .desktop-navigation__list a {
        font-size:
            9px;
    }


    .header-project-link {
        font-size:
            9px;
    }


    .section-grid,
    .section-heading,
    .designers__content {
        grid-template-columns:
            105px
            minmax(0, 1fr);

        column-gap:
            58px;
    }


    .technology__content {
        grid-template-columns:
            80px
            minmax(0, 1fr);

        gap:
            35px;

        padding-inline:
            58px;
    }


    .project-request__inner {
        gap:
            85px;
    }


    .project-request__heading {
        display:
            block;
    }


    .project-request__heading
    .section-label {
        margin-bottom:
            46px;
    }

}


/* ============================================================
   42. NAVIGATION BREAKPOINT
   Must match main.js = 1080px
   ============================================================ */

@media (max-width: 1080px) {

    :root {
        --header-height:
            82px;
    }


    .desktop-navigation {
        display:
            none;
    }


    .site-header__inner {
        grid-template-columns:
            1fr auto;
    }


    .site-header__actions {
        justify-self:
            end;
    }


    .header-project-link {
        display:
            none;
    }


    .menu-toggle {
        display:
            block;
    }


    .mobile-menu {
        display:
            block;
    }


    .hero__title {
        max-width:
            930px;

        font-size:
            clamp(70px, 11vw, 120px);
    }


    .hero__title span {
        margin-left:
            clamp(0px, 7vw, 70px);
    }


    .hero__bottom {
        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            36px;
    }


    .hero__scroll {
        display:
            none;
    }


    .section-grid,
    .section-heading,
    .designers__content {
        grid-template-columns:
            1fr;

        gap:
            40px;
    }


    .section-heading {
        margin-bottom:
            72px;
    }


    .display-title {
        font-size:
            clamp(53px, 8vw, 90px);
    }


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


    .technology {
        grid-template-columns:
            1fr;
    }


    .technology__visual {
        min-height:
            auto;

        aspect-ratio:
            16 / 10;
    }


    .technology__content {
        grid-template-columns:
            100px
            minmax(0, 1fr);

        padding:
            100px
            var(--page-x)
            115px;
    }


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


    .process-item {
        min-height:
            280px;

        border-bottom:
            1px solid var(--line);
    }


    .process-item:nth-child(odd) {
        border-left:
            1px solid var(--line);
    }


    .process-item__number {
        margin-bottom:
            62px;
    }


    .project-request__inner {
        grid-template-columns:
            1fr;

        gap:
            85px;
    }


    .project-request__heading {
        max-width:
            920px;
    }


    /* Samples */

    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    .collections-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        grid-template-rows:
            auto;

        gap:
            65px 28px;
    }


    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    .collections-grid
    .collection-card:nth-child(1) {
        grid-column:
            1 / -1;

        grid-row:
            auto;
    }


    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    .collections-grid
    .collection-card:nth-child(2),

    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    .collections-grid
    .collection-card:nth-child(3) {
        grid-column:
            auto;

        grid-row:
            auto;
    }


    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    main > .collections:nth-of-type(4)
    .collections-grid
    .collection-card:nth-child(1),

    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    main > .collections:nth-of-type(6)
    .collections-grid
    .collection-card:nth-child(1) {
        grid-column:
            1 / -1;
    }


    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    main > .collections:nth-of-type(4)
    .collections-grid
    .collection-card:nth-child(2),

    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    main > .collections:nth-of-type(4)
    .collections-grid
    .collection-card:nth-child(3),

    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    main > .collections:nth-of-type(6)
    .collections-grid
    .collection-card:nth-child(2),

    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    main > .collections:nth-of-type(6)
    .collections-grid
    .collection-card:nth-child(3) {
        grid-column:
            auto;
    }


    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    .collections-grid
    .collection-card:nth-child(1)
    .collection-card__image {
        aspect-ratio:
            16 / 10;
    }


    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    .collections-grid
    .collection-card:nth-child(2)
    .collection-card__image,

    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    .collections-grid
    .collection-card:nth-child(3)
    .collection-card__image {
        aspect-ratio:
            4 / 5;
    }

}


/* ============================================================
   43. TABLET
   ============================================================ */

@media (max-width: 820px) {

    :root {
        --page-x:
            24px;
    }


    .hero__content {
        padding-top:
            calc(
                var(--header-height) +
                72px
            );
    }


    .hero__title {
        font-size:
            clamp(64px, 13vw, 102px);

        line-height:
            0.86;
    }


    .hero__title span {
        margin-left:
            0;
    }


    .hero__bottom {
        padding-top:
            58px;
    }


    .introduction__text-grid {
        grid-template-columns:
            1fr;

        gap:
            27px;

        margin-left:
            0;
    }


    .projects-list__split {
        gap:
            28px;
    }


    .projects-list__split
    .project-card:nth-child(2) {
        margin-top:
            72px;
    }


    .technology__content {
        grid-template-columns:
            1fr;

        padding:
            95px
            var(--page-x)
            105px;
    }


    .technology__content
    > .section-label {
        margin-bottom:
            12px;
    }


    .about__body {
        grid-template-columns:
            1fr;

        gap:
            50px;

        margin-left:
            0;
    }


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

        row-gap:
            60px;
    }


    .site-footer__column--cta {
        padding-left:
            0;
    }


    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    .collections .display-title {
        font-size:
            clamp(50px, 10vw, 80px);
    }

}


/* ============================================================
   44. MOBILE
   ============================================================ */

@media (max-width: 640px) {

    :root {
        --page-x:
            18px;

        --header-height:
            74px;
    }


    body {
        font-size:
            15px;
    }


    .section {
        padding-block:
            90px;
    }


    /* Brand */

    .brand__name {
        font-size:
            15px;

        letter-spacing:
            0.15em;
    }


    .brand__descriptor {
        font-size:
            8px;

        letter-spacing:
            0.34em;
    }


    /* Mobile menu */

    .mobile-menu__inner {
        padding-top:
            46px;
    }


    .mobile-menu__navigation a {
        gap:
            12px;

        font-size:
            clamp(38px, 11.2vw, 55px);
    }


    .mobile-menu__navigation li + li {
        margin-top:
            9px;
    }


    .mobile-menu__navigation a::before {
        width:
            20px;
    }


    .mobile-menu__footer {
        align-items:
            stretch;

        flex-direction:
            column;

        gap:
            22px;
    }


    .mobile-menu__footer .button {
        width:
            100%;
    }


    /* Global type */

    .section-label {
        font-size:
            8px;
    }


    .eyebrow {
        margin-bottom:
            18px;

        font-size:
            8px;
    }


    .display-title {
        font-size:
            clamp(44px, 13vw, 66px);

        line-height:
            0.96;

        letter-spacing:
            -0.06em;
    }


    /* Hero */

    .hero {
        min-height:
            100svh;
    }


    .hero__media img,
    .hero__video {
        object-position:
            58% center;
    }


    .hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(8, 8, 7, 0.43) 0%,
                rgba(8, 8, 7, 0.12) 32%,
                rgba(8, 8, 7, 0.40) 66%,
                rgba(8, 8, 7, 0.84) 100%
            );
    }


    .hero__content {
        min-height:
            100svh;

        padding-top:
            calc(
                var(--header-height) +
                68px
            );

        padding-bottom:
            max(
                32px,
                calc(
                    18px +
                    env(safe-area-inset-bottom)
                )
            );
    }


    .hero__eyebrow {
        margin-bottom:
            29px;

        font-size:
            7px;

        letter-spacing:
            0.21em;
    }


    .hero__title {
        max-width:
            100%;

        font-size:
            clamp(48px, 13.4vw, 62px);

        line-height:
            0.87;

        letter-spacing:
            -0.07em;
    }


    .hero__title span {
        margin-top:
            3px;

        margin-left:
            0;
    }


    .hero__bottom {
        gap:
            27px;

        padding-top:
            52px;
    }


    .hero__description {
        max-width:
            400px;

        font-size:
            14px;

        line-height:
            1.63;
    }


    .hero__actions {
        align-items:
            stretch;

        flex-direction:
            column;

        gap:
            21px;

        width:
            100%;
    }


    .hero__actions .button {
        width:
            100%;
    }


    .hero__actions .text-link {
        align-self:
            flex-start;
    }


    /* Introduction */

    .section-grid {
        gap:
            32px;
    }


    .introduction__text-grid {
        margin-top:
            52px;
    }


    .introduction__text-grid p:first-child {
        font-size:
            20px;
    }


    .introduction__text-grid p {
        font-size:
            14px;
    }


    .introduction::after {
        font-size:
            115px;
    }


    /* Full image */

    .editorial-image {
        height:
            72vh;

        min-height:
            540px;
    }


    /* Collections */

    .section-heading {
        gap:
            31px;

        margin-bottom:
            58px;
    }


    .collections-grid {
        grid-template-columns:
            1fr;

        gap:
            58px;
    }


    .collection-card__image {
        aspect-ratio:
            4 / 5;
    }


    .collection-card__content {
        padding-top:
            17px;
    }


    .collection-card h3 {
        font-size:
            29px;
    }


    .collection-card p {
        font-size:
            11px;
    }


    .collection-card__arrow {
        margin-top:
            16px;

        font-size:
            18px;
    }


    .collections__footer {
        justify-content:
            flex-start;

        margin-top:
            66px;
    }


    .collections__footer .button {
        width:
            100%;
    }


    /* Statement */

    .statement {
        min-height:
            650px;

        padding-block:
            100px;
    }


    .statement__small {
        margin-bottom:
            35px;
    }


    .statement__title {
        font-size:
            clamp(57px, 16.5vw, 88px);

        line-height:
            0.9;
    }


    .statement__description {
        margin-top:
            39px;

        font-size:
            13px;

        line-height:
            1.72;
    }


    /* Projects */

    .projects-list {
        gap:
            70px;
    }


    .project-card--large
    .project-card__media {
        aspect-ratio:
            4 / 5;
    }


    .projects-list__split {
        grid-template-columns:
            1fr;

        gap:
            70px;
    }


    .projects-list__split
    .project-card:nth-child(2) {
        margin-top:
            0;
    }


    .project-card__meta {
        padding-top:
            17px;
    }


    .project-card__meta h3 {
        font-size:
            24px;
    }


    .projects__footer {
        justify-content:
            stretch;

        margin-top:
            75px;
    }


    .projects__footer .button {
        width:
            100%;
    }


    /* Technology */

    .technology__visual {
        aspect-ratio:
            4 / 5;
    }


    .technology__content {
        padding:
            84px
            var(--page-x)
            90px;
    }


    .technology__lead {
        margin-top:
            37px;

        font-size:
            17px;
    }


    .technology-features {
        margin-block:
            52px;
    }


    .technology-features li {
        grid-template-columns:
            40px
            minmax(0, 1fr);

        gap:
            13px;

        padding-block:
            24px;
    }


    .technology-features h3 {
        font-size:
            18px;
    }


    .technology-features p {
        font-size:
            11px;
    }


    /* Process */

    .process-list {
        grid-template-columns:
            1fr;

        border-bottom:
            0;
    }


    .process-item {
        min-height:
            auto;

        padding:
            23px 18px 31px;

        border-right:
            1px solid var(--line);

        border-bottom:
            1px solid var(--line);

        border-left:
            1px solid var(--line);
    }


    .process-item + .process-item {
        border-top:
            0;
    }


    .process-item__number {
        margin-bottom:
            44px;
    }


    .process-item h3 {
        font-size:
            26px;
    }


    .process-item p {
        max-width:
            340px;
    }


    /* Designers */

    .designers {
        min-height:
            780px;
    }


    .designers__media img {
        object-position:
            62% center;
    }


    .designers__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(10, 10, 9, 0.22) 0%,
                rgba(10, 10, 9, 0.51) 39%,
                rgba(10, 10, 9, 0.94) 100%
            );
    }


    .designers__content {
        align-self:
            flex-end;

        padding-block:
            90px 70px;
    }


    .designers__copy
    > p:not(.eyebrow) {
        margin-block:
            36px 32px;

        font-size:
            14px;
    }


    .designers__copy .button {
        width:
            100%;
    }


    /* About */

    .about__body {
        margin-top:
            57px;
    }


    .about__lead p {
        font-size:
            22px;
    }


    .about__text {
        font-size:
            13px;
    }


    .about::after {
        right:
            18px;

        font-size:
            71px;
    }


    /* Brand quote */

    .brand-quote {
        padding-block:
            106px;
    }


    .brand-quote::before,
    .brand-quote::after {
        display:
            none;
    }


    .brand-quote p {
        font-size:
            clamp(56px, 17vw, 88px);
    }


    /* Request */

    .project-request {
        padding-block:
            90px;
    }


    .project-request__inner {
        gap:
            68px;
    }


    .project-request__heading
    .section-label {
        margin-bottom:
            32px;
    }


    .project-request__heading
    .display-title {
        font-size:
            clamp(44px, 13vw, 64px);
    }


    .project-request__intro {
        margin-top:
            30px;

        font-size:
            14px;
    }


    .form-grid {
        grid-template-columns:
            1fr;

        gap:
            29px;
    }


    .form-field--full {
        grid-column:
            auto;
    }


    .form-field input,
    .form-field textarea,
    .form-field select {
        font-size:
            16px;
    }


    .file-upload {
        display:
            grid;

        grid-template-columns:
            minmax(0, 1fr)
            auto;

        min-height:
            102px;
    }


    .file-upload__description {
        grid-column:
            1;

        grid-row:
            2;

        margin:
            5px 0 0;
    }


    .file-upload__icon {
        grid-column:
            2;

        grid-row:
            1 / span 2;
    }


    .project-form__footer {
        align-items:
            stretch;

        flex-direction:
            column;

        margin-top:
            40px;
    }


    .project-form__footer .button {
        width:
            100%;
    }


    /* Footer */

    .site-footer {
        padding-top:
            75px;
    }


    .site-footer__top {
        flex-direction:
            column;

        gap:
            33px;

        padding-bottom:
            62px;
    }


    .site-footer__statement {
        max-width:
            300px;

        text-align:
            left;
    }


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

        gap:
            55px 25px;

        padding-block:
            62px;
    }


    .site-footer__bottom {
        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            13px;
    }


    /* --------------------------------------------------------
       Samples mobile
    -------------------------------------------------------- */

    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    .hero {
        min-height:
            100svh;
    }


    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    .hero__content {
        min-height:
            100svh;
    }


    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    main > .collections {
        padding-block:
            87px;
    }


    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    .collections .display-title {
        font-size:
            clamp(45px, 13vw, 65px);

        line-height:
            0.94;
    }


    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    .collections-grid {
        display:
            grid;

        grid-template-columns:
            1fr;

        gap:
            62px;
    }


    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    .collections-grid
    .collection-card:nth-child(1),

    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    .collections-grid
    .collection-card:nth-child(2),

    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    .collections-grid
    .collection-card:nth-child(3),

    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    main > .collections:nth-of-type(4)
    .collections-grid
    .collection-card:nth-child(1),

    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    main > .collections:nth-of-type(4)
    .collections-grid
    .collection-card:nth-child(2),

    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    main > .collections:nth-of-type(4)
    .collections-grid
    .collection-card:nth-child(3),

    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    main > .collections:nth-of-type(6)
    .collections-grid
    .collection-card:nth-child(1),

    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    main > .collections:nth-of-type(6)
    .collections-grid
    .collection-card:nth-child(2),

    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    main > .collections:nth-of-type(6)
    .collections-grid
    .collection-card:nth-child(3) {
        grid-column:
            1;

        grid-row:
            auto;
    }


    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    .collections-grid
    .collection-card:nth-child(1)
    .collection-card__image,

    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    .collections-grid
    .collection-card:nth-child(2)
    .collection-card__image,

    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    .collections-grid
    .collection-card:nth-child(3)
    .collection-card__image {
        aspect-ratio:
            4 / 5;
    }


    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    .collection-card__image::before {
        content:
            "↗";

        right:
            14px;

        bottom:
            14px;

        width:
            54px;

        height:
            54px;

        font-size:
            17px;

        letter-spacing:
            0;

        text-indent:
            0;

        opacity:
            1;

        transform:
            none;
    }


    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    main > .collections::after {
        top:
            26px;

        right:
            17px;

        font-size:
            70px;
    }

}


/* ============================================================
   45. SMALL MOBILE
   ============================================================ */

@media (max-width: 390px) {

    :root {
        --page-x:
            15px;
    }


    .hero__title {
        font-size:
            clamp(46px, 13.2vw, 54px);
    }


    .display-title {
        font-size:
            42px;
    }


    .mobile-menu__navigation a {
        font-size:
            36px;
    }


    .statement__title {
        font-size:
            54px;
    }


    .brand-quote p {
        font-size:
            53px;
    }


    .site-footer__grid {
        grid-template-columns:
            1fr;
    }


    body:has(
        a[href="samples/neo-urban-line.html"]
    )
    .collections .display-title {
        font-size:
            42px;
    }

}


/* ============================================================
   46. MOBILE LANDSCAPE
   ============================================================ */

@media
(max-height: 560px)
and (orientation: landscape) {

    .hero__content {
        padding-top:
            calc(
                var(--header-height) +
                25px
            );

        padding-bottom:
            26px;
    }


    .hero__eyebrow {
        margin-bottom:
            18px;
    }


    .hero__title {
        max-width:
            780px;

        font-size:
            clamp(50px, 9vw, 75px);
    }


    .hero__bottom {
        flex-direction:
            row;

        align-items:
            flex-end;

        padding-top:
            25px;
    }


    .hero__description {
        max-width:
            430px;

        font-size:
            12px;
    }


    .hero__actions {
        flex-direction:
            row;

        width:
            auto;
    }


    .mobile-menu__inner {
        padding-top:
            20px;

        padding-bottom:
            20px;
    }


    .mobile-menu__navigation {
        display:
            grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            5px 30px;
    }


    .mobile-menu__navigation li + li {
        margin-top:
            0;
    }


    .mobile-menu__navigation a {
        font-size:
            28px;
    }


    .mobile-menu__footer {
        flex-direction:
            row;

        align-items:
            center;
    }

}


/* ============================================================
   47. SAFARI / iOS
   ============================================================ */

@supports (-webkit-touch-callout: none) {

    input,
    textarea,
    select {
        font-size:
            16px;
    }


    .hero,
    .hero__content {
        min-height:
            -webkit-fill-available;
    }

}


/* ============================================================
   48. :HAS FALLBACK
   samples.html remains fully functional even in
   browsers without :has().
   ============================================================ */

@supports not selector(body:has(*)) {

    .collection-card__image img {
        transition:
            transform 800ms var(--ease);
    }


    .collections-grid {
        display:
            grid;

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


    @media (max-width: 1080px) {

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

    }


    @media (max-width: 640px) {

        .collections-grid {
            grid-template-columns:
                1fr;
        }

    }

}


/* ============================================================
   49. REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior:
            auto;
    }


    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

        scroll-behavior:
            auto !important;
    }

}


/* ============================================================
   50. FORCED COLORS / ACCESSIBILITY
   ============================================================ */

@media (forced-colors: active) {

    .button,
    .menu-toggle,
    .file-upload__icon {
        border:
            1px solid currentColor;
    }

}


/* ============================================================
   51. PRINT
   ============================================================ */

@media print {

    .site-header,
    .mobile-menu,
    .hero__scroll,
    .project-request,
    .site-footer {
        display:
            none !important;
    }


    body {
        background:
            #ffffff;

        color:
            #000000;
    }


    .hero,
    .statement,
    .technology,
    .designers {
        min-height:
            auto;

        background:
            #ffffff !important;

        color:
            #000000 !important;
    }


    .hero {
        padding:
            60px 0;
    }


    .hero__media,
    .hero__overlay,
    .designers__media,
    .designers__overlay,
    .technology__visual {
        display:
            none;
    }

}


/* ============================================================
   END
   HELGBERGSTUDIO PREMIUM DESIGN SYSTEM
   ============================================================ */
   /* ============================================================
   52. HELGBERGSTUDIO
   LUXURY SIGNATURE COLOR SYSTEM

   OBSIDIAN
   SMOKED BRONZE
   CHAMPAGNE
   COGNAC
   PORCELAIN

   Premium European / Quiet Luxury
   ============================================================ */


/* ============================================================
   52.1 LUXURY MASTER PALETTE
   ============================================================ */

:root {

    /* --------------------------------------------------------
       OBSIDIAN / DEEP LUXURY
    -------------------------------------------------------- */

    --luxury-black: #0d0c0a;
    --luxury-obsidian: #12110f;
    --luxury-coal: #1b1916;
    --luxury-graphite: #26221d;


    /* --------------------------------------------------------
       PORCELAIN / IVORY
    -------------------------------------------------------- */

    --luxury-porcelain: #faf7f1;
    --luxury-ivory: #f3eee5;
    --luxury-cream: #e9e1d5;
    --luxury-stone: #d8cec0;


    /* --------------------------------------------------------
       CHAMPAGNE
    -------------------------------------------------------- */

    --luxury-champagne: #c0a276;
    --luxury-champagne-soft: #d0b994;
    --luxury-champagne-light: #dfcdb0;


    /* --------------------------------------------------------
       BRONZE
    -------------------------------------------------------- */

    --luxury-bronze: #806444;
    --luxury-bronze-deep: #5d4632;
    --luxury-smoked-bronze: #665446;


    /* --------------------------------------------------------
       COGNAC
    -------------------------------------------------------- */

    --luxury-cognac: #8a6042;
    --luxury-cognac-deep: #69452f;


    /* --------------------------------------------------------
       TAUPE
    -------------------------------------------------------- */

    --luxury-taupe: #84796b;
    --luxury-taupe-dark: #655d54;
    --luxury-taupe-light: #aaa094;


    /* --------------------------------------------------------
       ORIGINAL DESIGN TOKEN OVERRIDE
    -------------------------------------------------------- */

    --ink:
        var(--luxury-obsidian);

    --ink-soft:
        var(--luxury-coal);

    --ink-muted:
        var(--luxury-graphite);


    --stone:
        var(--luxury-taupe-light);

    --stone-dark:
        var(--luxury-taupe-dark);

    --stone-light:
        var(--luxury-stone);


    --ivory:
        var(--luxury-ivory);

    --ivory-soft:
        var(--luxury-porcelain);

    --ivory-deep:
        var(--luxury-cream);


    --sand:
        #ddd2c3;

    --sand-deep:
        #cdbda9;


    --bronze:
        var(--luxury-bronze);

    --bronze-light:
        var(--luxury-champagne-soft);

    --bronze-dark:
        var(--luxury-bronze-deep);


    --white:
        #fffdf9;

    --pure-white:
        #ffffff;


    --line:
        rgba(65, 52, 40, 0.15);

    --line-soft:
        rgba(65, 52, 40, 0.075);


    --text-soft:
        rgba(49, 42, 35, 0.67);

}


/* ============================================================
   52.2 BODY
   Warm porcelain instead of plain beige
   ============================================================ */

html,
body {
    background:
        var(--luxury-porcelain);
}


body {
    color:
        var(--luxury-obsidian);
}


/* ============================================================
   52.3 HEADER — GLASS CHAMPAGNE EFFECT
   ============================================================ */

.site-header.is-fixed {
    background:
        rgba(250, 247, 241, 0.92);

    box-shadow:
        0 1px 0 rgba(77, 59, 42, 0.10),
        0 14px 50px rgba(55, 43, 31, 0.035);
}


.site-header.is-fixed
.header-project-link {
    color:
        var(--luxury-bronze-deep);
}


/* ============================================================
   52.4 HERO — WARM CINEMATIC LUXURY
   ============================================================ */

.hero {
    background:
        var(--luxury-black);
}


.hero__overlay {
    background:
        linear-gradient(
            180deg,
            rgba(11, 9, 7, 0.55) 0%,
            rgba(30, 22, 15, 0.12) 34%,
            rgba(24, 17, 12, 0.24) 59%,
            rgba(10, 8, 6, 0.84) 100%
        );
}


.hero__overlay::after {
    background:
        linear-gradient(
            90deg,
            rgba(26, 18, 12, 0.32) 0%,
            rgba(65, 43, 27, 0.08) 42%,
            transparent 72%
        );
}


.hero__eyebrow {
    color:
        var(--luxury-champagne-light);
}


.hero__description {
    color:
        rgba(255, 250, 242, 0.77);
}


/* ============================================================
   52.5 HERO BUTTON
   Champagne luxury
   ============================================================ */

.hero .button--light,
.designers .button--light,
.mobile-menu .button--light {
    background:
        var(--luxury-champagne-light);

    color:
        var(--luxury-black);
}


.hero .button--light::before,
.designers .button--light::before,
.mobile-menu .button--light::before {
    background:
        var(--luxury-champagne);
}


/* ============================================================
   52.6 EYEBROWS / MICRO LABELS
   ============================================================ */

.eyebrow {
    color:
        var(--luxury-bronze);
}


.eyebrow--light {
    color:
        var(--luxury-champagne-soft);
}


.section-label {
    color:
        var(--luxury-taupe);
}


.section-label--light {
    color:
        rgba(223, 205, 176, 0.55);
}


/* ============================================================
   52.7 INTRODUCTION
   Porcelain / champagne atmosphere
   ============================================================ */

.introduction {
    background:
        linear-gradient(
            135deg,
            #fbf8f3 0%,
            #f4eee5 55%,
            #ede3d6 100%
        );
}


.introduction::after {
    color:
        rgba(115, 83, 52, 0.035);
}


/* ============================================================
   52.8 COLLECTIONS
   ============================================================ */

.collections {
    background:
        var(--luxury-ivory);
}


.collections:nth-of-type(even) {
    background:
        var(--luxury-porcelain);
}


.collection-card__image {
    background:
        #d8ccbd;
}


.collection-card__number {
    color:
        var(--luxury-bronze);
}


.collection-card p {
    color:
        var(--luxury-taupe-dark);
}


/* ============================================================
   52.9 DARK STATEMENT
   Obsidian + champagne
   ============================================================ */

.statement {
    background:
        radial-gradient(
            circle at 50% 40%,
            #211b15 0%,
            #15120f 38%,
            #0c0b09 100%
        );
}


.statement::before {
    border-color:
        rgba(208, 185, 148, 0.09);
}


.statement__small {
    color:
        var(--luxury-champagne);
}


.statement__description {
    color:
        rgba(239, 228, 211, 0.60);
}


/* ============================================================
   52.10 PROJECTS
   ============================================================ */

.projects {
    background:
        #f8f4ed;
}


.project-card__meta p,
.project-card__meta > span {
    color:
        var(--luxury-taupe);
}


/* ============================================================
   52.11 TECHNOLOGY
   Signature smoked bronze dark section
   ============================================================ */

.technology {
    background:
        linear-gradient(
            135deg,
            #0d0c0a 0%,
            #17130f 47%,
            #211a14 100%
        );
}


.technology__visual {
    background:
        var(--luxury-black);
}


.technology__visual::after {
    background:
        linear-gradient(
            90deg,
            transparent 66%,
            rgba(33, 24, 17, 0.44) 100%
        );
}


.technology__lead {
    color:
        rgba(245, 235, 220, 0.65);
}


.technology-features {
    border-color:
        rgba(208, 185, 148, 0.18);
}


.technology-features li {
    border-color:
        rgba(208, 185, 148, 0.15);
}


.technology-features__number {
    color:
        var(--luxury-champagne);
}


.technology-features h3 {
    color:
        #fffaf2;
}


.technology-features p {
    color:
        rgba(235, 222, 204, 0.54);
}


/* ============================================================
   52.12 PROCESS
   Luxury interaction
   ============================================================ */

.process {
    background:
        var(--luxury-ivory);
}


.process-item::after {
    background:
        linear-gradient(
            90deg,
            var(--luxury-bronze-deep),
            var(--luxury-champagne)
        );
}


@media (hover: hover) and (pointer: fine) {

    .process-item:hover {
        background:
            linear-gradient(
                145deg,
                #15120f,
                #211a14
            );
    }


    .process-item:hover
    .process-item__number {
        color:
            var(--luxury-champagne);
    }

}


/* ============================================================
   52.13 DESIGNERS
   Cognac smoked overlay
   ============================================================ */

.designers {
    background:
        var(--luxury-black);
}


.designers__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(12, 10, 8, 0.94) 0%,
            rgba(27, 20, 14, 0.82) 38%,
            rgba(66, 45, 29, 0.33) 72%,
            rgba(15, 12, 9, 0.13) 100%
        );
}


.designers__copy
> p:not(.eyebrow) {
    color:
        rgba(247, 237, 221, 0.69);
}


/* ============================================================
   52.14 ABOUT
   ============================================================ */

.about {
    background:
        linear-gradient(
            135deg,
            #faf7f2 0%,
            #f2ebe1 100%
        );
}


.about::after {
    color:
        rgba(125, 91, 57, 0.035);
}


.about__text {
    color:
        var(--luxury-taupe-dark);
}


/* ============================================================
   52.15 BRAND QUOTE
   Signature Champagne section
   ============================================================ */

.brand-quote {
    background:
        linear-gradient(
            135deg,
            #d8c8b2 0%,
            #c9b293 48%,
            #b79a77 100%
        );
}


.brand-quote::before,
.brand-quote::after {
    background:
        rgba(46, 34, 23, 0.22);
}


.brand-quote p {
    color:
        #1a1510;
}


/* ============================================================
   52.16 FORM AREA
   ============================================================ */

.project-request {
    background:
        linear-gradient(
            145deg,
            #fffdf9 0%,
            #f7f1e8 100%
        );
}


.form-field input,
.form-field textarea,
.form-field select {
    border-color:
        rgba(87, 67, 48, 0.30);
}


.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color:
        var(--luxury-bronze);
}


.file-upload {
    border-color:
        rgba(87, 67, 48, 0.18);
}


.file-upload:hover {
    border-color:
        var(--luxury-bronze);
}


.file-upload__icon {
    border-color:
        rgba(87, 67, 48, 0.24);
}


.file-upload:hover
.file-upload__icon {
    background:
        var(--luxury-bronze-deep);

    color:
        #fffaf2;
}


/* ============================================================
   52.17 PRIMARY DARK BUTTONS
   ============================================================ */

.button--dark {
    background:
        var(--luxury-obsidian);

    color:
        #fffaf2;
}


.button--dark::before {
    background:
        linear-gradient(
            90deg,
            var(--luxury-bronze-deep),
            var(--luxury-cognac)
        );
}


/* ============================================================
   52.18 TEXT LINKS
   ============================================================ */

.text-link:not(.text-link--light) {
    color:
        var(--luxury-bronze-deep);
}


/* ============================================================
   52.19 FOOTER
   Ultra dark luxury
   ============================================================ */

.site-footer {
    background:
        linear-gradient(
            145deg,
            #090806 0%,
            #12100d 48%,
            #18130f 100%
        );
}


.site-footer__top,
.site-footer__bottom {
    border-color:
        rgba(208, 185, 148, 0.14);
}


.site-footer__statement {
    color:
        var(--luxury-champagne-soft);
}


.site-footer__title {
    color:
        rgba(208, 185, 148, 0.46);
}


.site-footer__column li a {
    color:
        rgba(245, 235, 220, 0.66);
}


.site-footer__column li a:hover {
    color:
        var(--luxury-champagne-light);
}


.site-footer__column--cta
> p:not(.site-footer__title) {
    color:
        rgba(245, 235, 220, 0.59);
}


/* ============================================================
   52.20 MOBILE MENU
   ============================================================ */

.mobile-menu {
    background:
        radial-gradient(
            circle at 80% 10%,
            #2a2119 0%,
            #15110d 38%,
            #090806 100%
        );
}


.mobile-menu__navigation a::before {
    color:
        var(--luxury-champagne);
}


.mobile-menu__footer {
    border-color:
        rgba(208, 185, 148, 0.17);
}


/* ============================================================
   52.21 SAMPLE PAGE
   Premium material library colors
   ============================================================ */

body:has(
    a[href="samples/neo-urban-line.html"]
) {
    background:
        var(--luxury-porcelain);
}


/* Minimal */

body:has(
    a[href="samples/neo-urban-line.html"]
)
main > .collections:nth-of-type(3) {
    background:
        #f5f0e8;
}


/* Architectural */

body:has(
    a[href="samples/neo-urban-line.html"]
)
main > .collections:nth-of-type(4) {
    background:
        #e7ddd0;
}


/* Luxury */

body:has(
    a[href="samples/neo-urban-line.html"]
)
main > .collections:nth-of-type(5) {
    background:
        linear-gradient(
            145deg,
            #d2c0aa 0%,
            #bfa484 100%
        );

    color:
        #17120e;
}


/* Glass */

body:has(
    a[href="samples/neo-urban-line.html"]
)
main > .collections:nth-of-type(6) {
    background:
        linear-gradient(
            145deg,
            #f7f5f0 0%,
            #e5e1da 100%
        );
}


/* Special */

body:has(
    a[href="samples/neo-urban-line.html"]
)
main > .collections:nth-of-type(7) {
    background:
        linear-gradient(
            145deg,
            #ebe2d5 0%,
            #d8c9b6 100%
        );
}


/* ============================================================
   52.22 LUXURY SAMPLE SECTION TYPOGRAPHY
   ============================================================ */

body:has(
    a[href="samples/neo-urban-line.html"]
)
main > .collections:nth-of-type(5)
.eyebrow {
    color:
        var(--luxury-bronze-deep);
}


body:has(
    a[href="samples/neo-urban-line.html"]
)
main > .collections:nth-of-type(5)
.collection-card__number {
    color:
        var(--luxury-cognac-deep);
}


body:has(
    a[href="samples/neo-urban-line.html"]
)
main > .collections:nth-of-type(5)
.collection-card p {
    color:
        rgba(37, 27, 19, 0.68);
}


/* ============================================================
   52.23 IMAGE TREATMENT
   Adds subtle premium warmth without
   destroying original photo colors.
   ============================================================ */

.hero__media img,
.hero__video,
.editorial-image img,
.collection-card__image img,
.project-card__media img,
.designers__media img {
    filter:
        saturate(0.94)
        contrast(1.015)
        sepia(0.025);
}


@media (hover: hover) and (pointer: fine) {

    .collection-card__link:hover
    .collection-card__image img,

    .project-card__link:hover
    .project-card__media img {
        filter:
            saturate(1)
            contrast(1.025)
            sepia(0);
    }

}


/* ============================================================
   52.24 CHAMPAGNE HAIRLINES
   ============================================================ */

.statement::after {
    content: "";

    position:
        absolute;

    top:
        0;

    left:
        50%;

    width:
        1px;

    height:
        70px;

    background:
        linear-gradient(
            180deg,
            var(--luxury-champagne),
            transparent
        );

    opacity:
        0.55;
}


.brand-quote__inner::before {
    content:
        "HELGBERGSTUDIO";

    display:
        block;

    margin-bottom:
        clamp(35px, 4vw, 60px);

    color:
        rgba(35, 25, 16, 0.46);

    font-family:
        var(--font-sans);

    font-size:
        8px;

    font-weight:
        600;

    letter-spacing:
        0.42em;

    text-transform:
        uppercase;
}


/* ============================================================
   52.25 PREMIUM GOLD — NEVER YELLOW
   Ensure browser autofill doesn't introduce
   ugly blue/yellow colors.
   ============================================================ */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-text-fill-color:
        var(--luxury-obsidian);

    -webkit-box-shadow:
        0 0 0 1000px
        #faf7f1 inset;

    transition:
        background-color 9999s ease-in-out 0s;
}


/* ============================================================
   52.26 PREMIUM SCROLLBAR
   Desktop Chromium / Safari
   ============================================================ */

@media (hover: hover) and (pointer: fine) {

    ::-webkit-scrollbar {
        width:
            8px;
    }


    ::-webkit-scrollbar-track {
        background:
            var(--luxury-porcelain);
    }


    ::-webkit-scrollbar-thumb {
        background:
            var(--luxury-bronze);

        border:
            2px solid var(--luxury-porcelain);

        border-radius:
            20px;
    }


    ::-webkit-scrollbar-thumb:hover {
        background:
            var(--luxury-bronze-deep);
    }

}


/* ============================================================
   52.27 MOBILE LUXURY TUNING
   ============================================================ */

@media (max-width: 640px) {

    .hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(11, 8, 6, 0.46) 0%,
                rgba(28, 19, 12, 0.17) 31%,
                rgba(26, 17, 11, 0.44) 66%,
                rgba(9, 7, 5, 0.89) 100%
            );
    }


    .statement {
        background:
            radial-gradient(
                circle at 50% 35%,
                #251c15 0%,
                #15110d 43%,
                #090806 100%
            );
    }


    .technology {
        background:
            linear-gradient(
                180deg,
                #0b0907 0%,
                #18120e 100%
            );
    }


    .brand-quote {
        background:
            linear-gradient(
                145deg,
                #dacbb7,
                #bea17f
            );
    }

}


/* ============================================================
   END
   HELGBERGSTUDIO LUXURY SIGNATURE PALETTE
   ============================================================ */

   /* ============================================================
   TECHNOLOGY LAYOUT — FINAL FIX
   ============================================================ */


/* ------------------------------------------------------------
   DESKTOP
------------------------------------------------------------- */

.technology__content {
    display: grid;

    grid-template-columns:
        minmax(80px, 0.38fr)
        minmax(0, 3fr);

    column-gap:
        clamp(35px, 5vw, 90px);

    align-items:
        start;
}


/* Левая служебная колонка */

.technology__content > .section-label {
    grid-column:
        1;

    grid-row:
        1;

    min-width:
        0;
}


/* Основной текст ВСЕГДА во второй широкой колонке */

.technology__copy {
    grid-column:
        2;

    grid-row:
        1;

    width:
        100%;

    min-width:
        0;

    max-width:
        760px;

    justify-self:
        stretch;
}


/* Заголовок */

.technology__copy .display-title {
    width:
        100%;

    max-width:
        760px;
}


/* Основной текст */

.technology__lead {
    width:
        100%;

    max-width:
        590px;
}


/* Список */

.technology-features {
    width:
        100%;

    max-width:
        760px;
}


/* Каждая строка списка */

.technology-features li {
    width:
        100%;

    min-width:
        0;

    grid-template-columns:
        60px
        minmax(0, 1fr);
}


/* Текстовая часть пункта */

.technology-features li > div {
    width:
        100%;

    min-width:
        0;
}


/* Заголовок пункта */

.technology-features h3 {
    width:
        100%;

    max-width:
        none;
}


/* Описание пункта */

.technology-features p {
    width:
        100%;

    max-width:
        520px;
}


/* ============================================================
   LAPTOP
   ============================================================ */

@media (max-width: 1320px) {

    .technology__content {
        grid-template-columns:
            80px
            minmax(0, 1fr);

        column-gap:
            35px;

        padding-inline:
            58px;
    }


    .technology__copy {
        grid-column:
            2;

        width:
            100%;

        min-width:
            0;

        max-width:
            none;
    }


    .technology__copy .display-title {
        max-width:
            100%;
    }


    .technology-features {
        max-width:
            100%;
    }

}


/* ============================================================
   TABLET / MOBILE
   ============================================================ */

@media (max-width: 820px) {

    .technology__content {
        grid-template-columns:
            minmax(0, 1fr);

        row-gap:
            28px;

        padding:
            95px
            var(--page-x)
            105px;
    }


    .technology__content > .section-label {
        grid-column:
            1;

        grid-row:
            auto;

        width:
            100%;
    }


    .technology__copy {
        grid-column:
            1;

        grid-row:
            auto;

        width:
            100%;

        min-width:
            0;

        max-width:
            none;
    }


    .technology__copy .display-title {
        width:
            100%;

        max-width:
            none;
    }


    .technology__lead {
        width:
            100%;

        max-width:
            650px;
    }


    .technology-features {
        width:
            100%;

        max-width:
            none;
    }


    .technology-features li {
        grid-template-columns:
            40px
            minmax(0, 1fr);

        column-gap:
            18px;
    }


    .technology-features p {
        width:
            100%;

        max-width:
            620px;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 640px) {

    .technology__content {
        padding:
            84px
            var(--page-x)
            90px;
    }


    .technology__copy {
        width:
            100%;
    }


    .technology__lead {
        width:
            100%;

        max-width:
            none;

        margin-top:
            37px;

        font-size:
            17px;
    }


    .technology-features {
        width:
            100%;

        margin-block:
            52px;
    }


    .technology-features li {
        width:
            100%;

        grid-template-columns:
            36px
            minmax(0, 1fr);

        column-gap:
            14px;

        padding-block:
            24px;
    }


    .technology-features h3 {
        font-size:
            18px;
    }


    .technology-features p {
        width:
            100%;

        max-width:
            none;

        font-size:
            11px;

        line-height:
            1.72;
    }

}
/* ============================================================
   MOBILE HEADER — FINAL FIX
   Prevent hero / broken image text from overlapping header
   ============================================================ */


/* Если hero-картинка ещё не загружена,
   браузер не показывает её ALT-текст поверх дизайна */

.hero__media img {
    display: block;
    color: transparent;
    font-size: 0;
}


/* ============================================================
   MOBILE HEADER
   ============================================================ */

@media (max-width: 640px) {

    .site-header {
        position: absolute;

        top: 0;
        right: 0;
        left: 0;

        z-index: 2000;

        height: var(--header-height);

        overflow: hidden;

        background:
            linear-gradient(
                180deg,
                rgba(10, 8, 6, 0.98) 0%,
                rgba(10, 8, 6, 0.94) 72%,
                rgba(10, 8, 6, 0.88) 100%
            );

        -webkit-backdrop-filter:
            blur(12px);

        backdrop-filter:
            blur(12px);
    }


    .site-header__inner {
        position: relative;

        z-index: 3;

        display: grid;

        grid-template-columns:
            minmax(0, 1fr)
            auto;

        align-items: center;

        width: 100%;

        height: var(--header-height);
        min-height: var(--header-height);

        padding-top: 0;
        padding-bottom: 0;
    }


    /* --------------------------------------------------------
       LOGO
    --------------------------------------------------------- */

    .brand {
        position: relative;

        z-index: 4;

        justify-self: start;

        display: inline-flex;

        flex-direction: column;

        width: auto;
        max-width: 170px;

        margin: 0;

        line-height: 1;

        white-space: nowrap;
    }


    .brand__name {
        display: block;

        margin: 0;

        font-size: 15px;

        line-height: 1;

        letter-spacing: 0.15em;

        white-space: nowrap;
    }


    .brand__descriptor {
        display: block;

        margin-top: 7px;

        padding-left: 1px;

        font-size: 8px;

        line-height: 1;

        letter-spacing: 0.34em;

        white-space: nowrap;
    }


    /* --------------------------------------------------------
       RIGHT SIDE / MENU
    --------------------------------------------------------- */

    .site-header__actions {
        position: relative;

        z-index: 4;

        justify-self: end;

        display: flex;

        align-items: center;

        margin: 0;
    }


    .menu-toggle {
        position: relative;

        z-index: 5;

        flex: 0 0 auto;

        margin: 0;
    }


    /* --------------------------------------------------------
       HEADER BOTTOM LINE
    --------------------------------------------------------- */

    .site-header::after {
        content: "";

        position: absolute;

        z-index: 5;

        right: var(--page-x);
        bottom: 0;
        left: var(--page-x);

        height: 1px;

        background:
            rgba(255, 255, 255, 0.16);
    }


    /* --------------------------------------------------------
       HERO STARTS BELOW HEADER
    --------------------------------------------------------- */

    .hero__content {
        padding-top:
            calc(
                var(--header-height) +
                68px
            );
    }

}


/* ============================================================
   19A. RECOVERED VIDEO ARCHIVE
   ============================================================ */

.video-archive {
    background:
        var(--ivory);
}


.video-archive__grid {
    display:
        grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:
        clamp(42px, 5vw, 78px)
        clamp(20px, 2.5vw, 42px);
}


.video-card__player {
    position:
        relative;

    overflow:
        hidden;

    aspect-ratio:
        16 / 9;

    background:
        #11100e;
}


.video-card__button,
.video-card__player iframe {
    display:
        block;

    width:
        100%;

    height:
        100%;

    border:
        0;
}


.video-card__preview-note {
    position:
        absolute;

    z-index:
        3;

    right:
        12px;

    bottom:
        12px;

    left:
        12px;

    display:
        block;

    padding:
        13px 15px;

    border:
        1px solid rgba(255, 255, 255, 0.36);

    color:
        #fff;

    background:
        rgba(13, 12, 10, 0.82);

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.2);

    font-size:
        10px;

    font-weight:
        500;

    letter-spacing:
        0.08em;

    line-height:
        1.35;

    text-align:
        center;

    text-transform:
        uppercase;
}


.video-card__button {
    position:
        relative;
}


.video-card__button::after {
    content:
        "";

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            180deg,
            transparent 48%,
            rgba(0, 0, 0, 0.25) 100%
        );

    transition:
        background-color 350ms var(--ease);
}


.video-card__button img {
    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform 700ms var(--ease);
}


.video-card__play {
    position:
        absolute;

    z-index:
        1;

    top:
        50%;

    left:
        50%;

    width:
        clamp(54px, 5vw, 72px);

    height:
        clamp(54px, 5vw, 72px);

    border:
        1px solid rgba(255, 255, 255, 0.72);

    border-radius:
        50%;

    background:
        rgba(13, 12, 10, 0.52);

    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.18);

    transform:
        translate(-50%, -50%);

    transition:
        background-color 300ms var(--ease),
        transform 300ms var(--ease);
}


.video-card__play::after {
    content:
        "";

    position:
        absolute;

    top:
        50%;

    left:
        52%;

    border-top:
        7px solid transparent;

    border-bottom:
        7px solid transparent;

    border-left:
        11px solid #fff;

    transform:
        translate(-36%, -50%);
}


.video-card h3 {
    margin-top:
        20px;

    font-size:
        clamp(19px, 1.4vw, 25px);

    font-weight:
        300;

    line-height:
        1.12;

    letter-spacing:
        -0.035em;
}


.video-card p {
    margin-top:
        8px;

    color:
        var(--stone-dark);

    font-size:
        10px;

    font-weight:
        500;

    letter-spacing:
        0.13em;

    text-transform:
        uppercase;
}


.video-card__button:focus-visible {
    outline:
        2px solid currentColor;

    outline-offset:
        4px;
}


@media (hover: hover) and (pointer: fine) {

    .video-card__button:hover img {
        transform:
            scale(1.035);
    }


    .video-card__button:hover::after {
        background-color:
            rgba(0, 0, 0, 0.08);
    }


    .video-card__button:hover
    .video-card__play {
        background:
            rgba(13, 12, 10, 0.72);

        transform:
            translate(-50%, -50%)
            scale(1.06);
    }

}


@media (max-width: 980px) {

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

}


@media (max-width: 620px) {

    .video-archive__grid {
        grid-template-columns:
            minmax(0, 1fr);

        gap:
            42px;
    }

}


/* ============================================================
   61. HIGH-DEFINITION TYPE AND MEDIA
   Final contrast and large-screen rendering pass
   ============================================================ */

:root {
    --text-soft: rgba(32, 27, 22, 0.78);
    --text-light: rgba(255, 255, 255, 0.90);
    --text-light-soft: rgba(255, 255, 255, 0.70);
}


html {
    font-kerning: normal;
    font-optical-sizing: auto;
    text-rendering: optimizeLegibility;
}


body {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
}


body p,
body li,
body dd,
body address {
    font-weight: 400 !important;
}


body a,
body button,
body label,
body input,
body select,
body textarea {
    font-weight: 500;
}


.legal-entity-name {
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.045em;
}


.hero__eyebrow {
    color: rgba(255, 252, 247, 0.92);
    font-size: 11px;
    font-weight: 600;
}


.hero__description {
    color: rgba(255, 255, 255, 0.94);
    font-weight: 400;
}


.hero__scroll {
    color: rgba(255, 255, 255, 0.76);
    font-size: 9px;
}


.section-label,
.eyebrow,
.collection-card__number,
.project-card__meta,
.brand__sub {
    font-weight: 600;
}


.hero__media img,
.hero__video,
.editorial-image img,
.collection-card__image img,
.project-card__media img,
.designers__media img,
.technology__visual img {
    filter: none;
    image-rendering: auto;
}


.hero__media picture {
    transform: none !important;
    will-change: auto !important;
}


.hero__media img {
    transform: none;
    animation: none;
}


@media (hover: hover) and (pointer: fine) {

    .collection-card__link:hover .collection-card__image img,
    .project-card__link:hover .project-card__media img {
        filter: none;
    }

}


/* Full-resolution Hero photographs with a true cross-fade. */

.hero__media[data-hero-slider] {
    overflow: hidden;
    background: #15120f;
}


.hero__media[data-hero-slider] .hero__slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 1800ms cubic-bezier(0.37, 0, 0.63, 1),
        visibility 0s linear 1800ms;
}


.hero__media[data-hero-slider] .hero__slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}


.hero__media[data-hero-slider] .hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.008);
    transform-origin: center center;
    will-change: transform;
}


.hero__media[data-hero-slider]
.hero__slide.is-active img,
.hero__media[data-hero-slider]
.hero__slide.is-leaving img {
    animation:
        hbsHeroZoomOut 5.2s
        cubic-bezier(0.22, 0.61, 0.36, 1)
        both;
}


@keyframes hbsHeroZoomOut {

    from {
        transform:
            scale(1.045);
    }

    to {
        transform:
            scale(1.008);
    }

}


.hero__pagination {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: max(24px, env(safe-area-inset-bottom));
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}


.hero__pagination-button {
    position: relative;
    width: 34px;
    height: 24px;
    padding: 0;
    border: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
}


.hero__pagination-button::before,
.hero__pagination-button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 2px;
    transform: translateY(-50%);
}


.hero__pagination-button::before {
    background: rgba(255, 255, 255, 0.38);
}


.hero__pagination-button::after {
    background: #fff;
    transform: translateY(-50%) scaleX(0);
    transform-origin: left center;
    transition: transform 450ms var(--ease);
}


.hero__pagination-button.is-active::after {
    transform: translateY(-50%) scaleX(1);
}


.hero__pagination-button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}


@media (min-width: 1600px) {

    body {
        font-size: 17px;
    }

    .section-label,
    .eyebrow,
    .collection-card__number,
    .project-card__meta,
    .brand__sub {
        font-size: 11px;
    }

}


@media (max-width: 640px) {

    .hero__pagination {
        bottom: max(14px, env(safe-area-inset-bottom));
        gap: 5px;
    }

    .hero__pagination-button {
        width: 25px;
    }

}


/* ============================================================
   63. IMAGE BRAND MARK
   Transparent horizontal artwork, sized for legibility in both
   the header and the footer without a visible background tile.
   ============================================================ */

.brand__logo-frame,
.footer-brand__logo-frame {
    position: relative;
    display: block;
    flex: 0 0 auto;
    overflow: hidden;
    aspect-ratio: 3.08 / 1;
    background: transparent;
}


.brand__logo-frame {
    width: clamp(235px, 16vw, 285px);
}


.footer-brand__logo-frame {
    width: clamp(280px, 22vw, 350px);
}


.brand__logo-image,
.footer-brand__logo-image {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: contain;
    transform: translate3d(-50%, -50%, 0);
    filter:
        saturate(1.08)
        contrast(1.045)
        drop-shadow(0 0 1px rgba(255, 247, 203, 0.78))
        drop-shadow(0 2px 5px rgba(255, 183, 35, 0.2));
}


/* On the light, fixed header the gold mark becomes rich chocolate. */

body:not(.menu-open) .site-header.is-fixed .brand__logo-image {
    opacity: 1;
    filter:
        brightness(0)
        saturate(100%)
        invert(19%)
        sepia(11%)
        saturate(3053%)
        hue-rotate(336deg)
        brightness(95%)
        contrast(86%)
        drop-shadow(0 1px 2px rgba(55, 28, 15, 0.16));
}


body:not(.menu-open) .site-header.is-fixed .brand__logo-frame::before {
    background: var(--logo-chocolate);
    opacity: 1;
    mix-blend-mode: normal;
}


.brand__logo-frame::before,
.brand__logo-frame::after,
.footer-brand__logo-frame::before,
.footer-brand__logo-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    -webkit-mask:
        url("../LOGO/helgbergstudio-wordmark.png?v=20260820-1")
        center / contain no-repeat;
    mask:
        url("../LOGO/helgbergstudio-wordmark.png?v=20260820-1")
        center / contain no-repeat;
}


/* Fine top-edge reflection gives the gold lettering a lacquered finish. */

.brand__logo-frame::before,
.footer-brand__logo-frame::before {
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.62) 4%,
            rgba(255, 246, 191, 0.27) 30%,
            rgba(255, 255, 255, 0) 56%,
            rgba(112, 60, 0, 0.16) 82%,
            rgba(255, 223, 112, 0.22) 100%
        );
    opacity: 0.72;
    mix-blend-mode: screen;
}


/* A slow reflected highlight travels only inside the letter shapes. */

.brand__logo-frame::after,
.footer-brand__logo-frame::after {
    background:
        linear-gradient(
            108deg,
            transparent 36%,
            rgba(255, 255, 255, 0.08) 43%,
            rgba(255, 252, 222, 0.82) 49%,
            rgba(255, 255, 255, 0.14) 55%,
            transparent 63%
        );
    background-position: 145% 50%;
    background-size: 260% 100%;
    opacity: 0;
    filter: blur(0.35px);
    animation:
        hbsLogoReflection 7.6s
        cubic-bezier(0.4, 0, 0.2, 1)
        infinite 1.2s;
}


@keyframes hbsLogoReflection {

    0%,
    12% {
        background-position: 145% 50%;
        opacity: 0;
    }

    20% {
        opacity: 0.68;
    }

    38% {
        background-position: -45% 50%;
        opacity: 0.42;
    }

    44%,
    100% {
        background-position: -45% 50%;
        opacity: 0;
    }
}


.brand {
    max-width: none;
}


.brand,
.footer-brand {
    transition: opacity var(--fast);
}


@media (hover: hover) and (pointer: fine) {

    .brand:hover,
    .footer-brand:hover {
        opacity: 0.84;
    }

}


@media (max-width: 640px) {

    .brand__logo-frame {
        width: min(180px, 54vw);
    }

    .footer-brand__logo-frame {
        width: min(300px, 84vw);
    }

}


@media (prefers-reduced-motion: reduce) {

    .hero__media[data-hero-slider] .hero__slide {
        transition: none;
    }


    .hero__media[data-hero-slider]
    .hero__slide.is-active img,
    .hero__media[data-hero-slider]
    .hero__slide.is-leaving img {
        animation: none;
        transform: scale(1.008);
    }


    .brand__logo-frame::after,
    .footer-brand__logo-frame::after {
        animation: none;
        opacity: 0.16;
        background-position: 50% 50%;
    }

}


/* ============================================================
   62. COMPACT CONTENT RHYTHM
   Keeps every hero and the document structure unchanged.
   ============================================================ */

main > .section {
    padding-block: clamp(64px, 4.4vw, 92px) !important;
}


main > .section .section-heading {
    margin-bottom: clamp(40px, 4vw, 64px) !important;
}


main > .section .section-grid,
main > .section .section-heading {
    column-gap: clamp(38px, 5vw, 92px) !important;
}


main > .section > .container > :is(
    [class$="__layout"],
    [class$="__grid"],
    [class$="__content"]
) {
    row-gap: clamp(28px, 3.5vw, 58px) !important;
}


main > .section .display-title,
main > .project-request .display-title {
    font-size: clamp(44px, 4.7vw, 88px) !important;
    line-height: 0.94;
}


main > .section .eyebrow {
    margin-bottom: 18px !important;
}


.introduction__text-grid {
    gap: clamp(28px, 4vw, 66px) !important;
    margin-top: clamp(42px, 4.5vw, 76px) !important;
}


.introduction__text-grid p {
    font-size: clamp(14px, 0.9vw, 16px) !important;
    line-height: 1.65 !important;
}


.introduction__text-grid p:first-child {
    font-size: clamp(18px, 1.35vw, 24px) !important;
    line-height: 1.48 !important;
}


main > .editorial-image {
    height: clamp(440px, 52vw, 820px) !important;
}


.collections-grid {
    gap:
        clamp(34px, 3.4vw, 62px)
        clamp(18px, 2vw, 32px) !important;
}


.collection-card__image,
.project-card:not(.project-card--large) .project-card__media {
    aspect-ratio: 1 / 1.15 !important;
}


.collection-card__content {
    gap: 20px !important;
    padding-top: 16px !important;
}


.collection-card__number {
    margin-bottom: 8px !important;
}


.collection-card h3 {
    font-size: clamp(23px, 1.7vw, 31px) !important;
}


.collection-card p {
    margin-top: 7px !important;
    font-size: 11px !important;
    line-height: 1.55 !important;
}


.collections__footer {
    margin-top: clamp(42px, 4.5vw, 72px) !important;
}


main > .statement {
    min-height: clamp(460px, 55vh, 650px) !important;
    padding-block: clamp(68px, 6vw, 100px) !important;
}


.statement__small {
    margin-bottom: 28px !important;
}


.statement__title {
    font-size: clamp(48px, 6.4vw, 118px) !important;
    line-height: 0.91 !important;
}


.statement__description {
    margin-top: 34px !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
}


main > section[class$="-statement"] {
    min-height: clamp(410px, 50vh, 600px) !important;
    padding-block: clamp(64px, 6vw, 96px) !important;
}


main > section[class$="-statement"] h2 {
    font-size: clamp(44px, 5.8vw, 104px) !important;
    line-height: 0.94 !important;
}


.projects-list {
    gap: clamp(54px, 6vw, 102px) !important;
}


.projects-list__split {
    gap: clamp(24px, 3.5vw, 58px) !important;
}


.projects-list__split .project-card:nth-child(2) {
    margin-top: clamp(34px, 5vw, 88px) !important;
}


.project-card__meta {
    gap: 22px !important;
    padding-top: 16px !important;
}


.project-card__meta h3 {
    font-size: clamp(22px, 1.55vw, 29px) !important;
}


.projects__footer {
    margin-top: clamp(48px, 5vw, 85px) !important;
}


main > .technology {
    min-height: 700px !important;
}


main > .technology .technology__visual {
    min-height: 700px !important;
}


main > .technology .technology__content {
    gap: clamp(28px, 4vw, 64px) !important;
    padding:
        clamp(68px, 6vw, 100px)
        clamp(34px, 5vw, 84px) !important;
}


.technology__lead {
    margin-top: 34px !important;
    font-size: clamp(16px, 1.1vw, 20px) !important;
    line-height: 1.52 !important;
}


.technology-features {
    margin-block: 45px !important;
}


.technology-features li {
    gap: 18px !important;
    padding-block: 19px !important;
}


.technology-features h3 {
    margin-bottom: 6px !important;
    font-size: 18px !important;
}


.technology-features p {
    font-size: 11px !important;
    line-height: 1.58 !important;
}


.process-item {
    min-height: 260px !important;
    padding: 22px 20px 28px !important;
}


.process-item__number {
    margin-bottom: 54px !important;
}


.process-item h3 {
    margin-bottom: 12px !important;
    font-size: clamp(19px, 1.35vw, 25px) !important;
}


.process-item p {
    font-size: 11px !important;
    line-height: 1.55 !important;
}


main > .designers {
    min-height: 700px !important;
}


.designers__content {
    gap: clamp(38px, 5vw, 90px) !important;
    padding-block: clamp(76px, 7vw, 115px) !important;
}


.designers__copy > p:not(.eyebrow) {
    margin-block: 32px 30px !important;
    font-size: clamp(14px, 1vw, 17px) !important;
    line-height: 1.62 !important;
}


.about__body {
    gap: clamp(38px, 6vw, 90px) !important;
    margin-top: clamp(46px, 5vw, 82px) !important;
}


.about__lead p {
    font-size: clamp(19px, 1.65vw, 29px) !important;
    line-height: 1.4 !important;
}


.about__text {
    font-size: 13px !important;
    line-height: 1.68 !important;
}


.about__text p + p {
    margin-top: 17px !important;
}


.about__text .text-link {
    margin-top: 28px !important;
}


main > .brand-quote {
    padding-block: clamp(64px, 7vw, 120px) !important;
}


.brand-quote p {
    font-size: clamp(52px, 6.8vw, 126px) !important;
    line-height: 0.9 !important;
}


main > .project-request {
    padding-block: clamp(64px, 6vw, 105px) !important;
}


.project-request__inner {
    gap: clamp(48px, 6vw, 105px) !important;
}


.project-request__heading {
    gap: clamp(28px, 3.5vw, 54px) !important;
}


.project-request__intro {
    margin-top: 26px !important;
    font-size: clamp(14px, 0.9vw, 16px) !important;
    line-height: 1.62 !important;
}


.project-request__heading .text-link {
    margin-top: 27px !important;
}


.form-grid {
    gap: 28px 24px !important;
}


.form-field input,
.form-field textarea,
.form-field select {
    min-height: 48px !important;
}


.form-field textarea {
    min-height: 100px !important;
}


.file-upload {
    min-height: 78px !important;
    padding-block: 14px !important;
}


.project-form__footer {
    margin-top: 32px !important;
}


main > .contact-address,
main > .final-navigation {
    padding-block: clamp(70px, 7vw, 115px) !important;
}


.site-footer {
    padding-top: clamp(58px, 5.5vw, 90px) !important;
}


.site-footer__top {
    padding-bottom: clamp(45px, 5vw, 72px) !important;
}


.site-footer__grid {
    gap: 36px !important;
    padding-block: clamp(45px, 5vw, 72px) !important;
}


.site-footer__title {
    margin-bottom: 19px !important;
}


.site-footer__column li + li {
    margin-top: 9px !important;
}


/* Detailed sample pages: remove stacked gaps and shorten repeated cards. */

body:has(.sample-breadcrumbs)
main > .section
:is([class$="__cards"], [class$="__list"], [class$="__compare"]) {
    margin-top: clamp(28px, 2.8vw, 46px) !important;
}


body:has(.sample-breadcrumbs)
main > .section
.section-heading + * {
    margin-top: 0 !important;
}


body:has(.sample-breadcrumbs)
main > .section
:is([class$="__layout"], [class$="__grid"]) {
    gap: clamp(30px, 4.5vw, 72px) !important;
}


body:has(.sample-breadcrumbs)
main > .section
article:is(
    [class$="__item"],
    [class$="__card"]
) {
    min-height: 0 !important;
    padding: clamp(24px, 2.7vw, 38px) !important;
}


body:has(.sample-breadcrumbs)
main > .section
article:is([class*="application"], [class*="faq"]) {
    min-height: 0 !important;
    padding-block: clamp(24px, 2.7vw, 38px) !important;
    padding-inline: 0 !important;
}


body:has(.sample-breadcrumbs)
main > .section
article small {
    margin-bottom: 34px !important;
}


body:has(.sample-breadcrumbs)
main > .section
article h3 {
    margin-bottom: 12px !important;
    font-size: clamp(25px, 2.15vw, 36px) !important;
    line-height: 1.08 !important;
}


body:has(.sample-breadcrumbs)
main > .section
article p {
    font-size: 14px !important;
    line-height: 1.58 !important;
}


body:has(.sample-breadcrumbs)
main > .section
[class$="__item"] {
    min-height: 0 !important;
}


body:has(.sample-breadcrumbs)
main > .section
[class$="__swatches"] > * {
    min-height: 180px !important;
}


body:has(.sample-breadcrumbs) .next-sample {
    padding-block: clamp(60px, 7vw, 100px) !important;
}


@media (max-width: 980px) {

    main > .section {
        padding-block: 60px !important;
    }

    main > .editorial-image {
        height: clamp(360px, 68vw, 600px) !important;
    }

    main > .technology,
    main > .technology .technology__visual {
        min-height: 580px !important;
    }

    .process-item {
        min-height: 225px !important;
    }

}


@media (max-width: 640px) {

    main > .section {
        padding-block: 46px !important;
    }

    main > .section .section-heading {
        margin-bottom: 34px !important;
    }

    main > .section .display-title,
    main > .project-request .display-title {
        font-size: clamp(35px, 10vw, 46px) !important;
    }

    .introduction__text-grid,
    .about__body {
        gap: 24px !important;
        margin-top: 34px !important;
    }

    main > .editorial-image {
        height: 330px !important;
    }

    .collections-grid {
        gap: 34px !important;
    }

    .collection-card__image,
    .project-card:not(.project-card--large) .project-card__media {
        aspect-ratio: 1 / 1.08 !important;
    }

    main > .statement,
    main > section[class$="-statement"] {
        min-height: 380px !important;
        padding-block: 62px !important;
    }

    .statement__title,
    main > section[class$="-statement"] h2 {
        font-size: clamp(39px, 12vw, 58px) !important;
    }

    .projects-list {
        gap: 44px !important;
    }

    .projects-list__split .project-card:nth-child(2) {
        margin-top: 0 !important;
    }

    main > .technology,
    main > .technology .technology__visual {
        min-height: 420px !important;
    }

    main > .technology .technology__content {
        padding: 52px var(--page-x) !important;
    }

    .technology-features {
        margin-block: 34px !important;
    }

    .process-item {
        min-height: 190px !important;
        padding: 20px 17px 24px !important;
    }

    .process-item__number {
        margin-bottom: 34px !important;
    }

    main > .designers {
        min-height: 560px !important;
    }

    .designers__content {
        padding-block: 62px !important;
    }

    main > .brand-quote {
        padding-block: 62px !important;
    }

    .brand-quote p {
        font-size: clamp(40px, 13vw, 62px) !important;
    }

    main > .project-request {
        padding-block: 58px !important;
    }

    .project-request__inner {
        gap: 44px !important;
    }

    .form-grid {
        gap: 23px !important;
    }

    .site-footer {
        padding-top: 52px !important;
    }

    .site-footer__top,
    .site-footer__grid {
        padding-bottom: 42px !important;
    }

    .site-footer__grid {
        gap: 34px 22px !important;
        padding-top: 42px !important;
    }

}


/* ==========================================================
   HOMEPAGE ENGINEERING — COMPACT COMPOSITION
========================================================== */

main > .technology--home {
    grid-template-columns: minmax(340px, 0.68fr) minmax(0, 1.32fr);
    min-height: 0 !important;
    align-items: stretch;
}

main > .technology--home .technology__visual {
    min-height: 0 !important;
    height: auto;
    aspect-ratio: auto;
}

.technology--home .technology__visual picture,
.technology--home .technology__visual img {
    width: 100%;
    height: 100%;
}

.technology--home .technology__visual picture {
    position: absolute;
    inset: 0;
    display: block;
}

.technology--home .technology__visual img {
    display: block;
    object-fit: cover;
}

main > .technology--home .technology__content {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: clamp(26px, 3vw, 52px) !important;
    padding: clamp(46px, 4vw, 70px) clamp(34px, 4.5vw, 76px) !important;
}

.technology--home .technology__copy .display-title {
    max-width: 690px;
    font-size: clamp(46px, 3.3vw, 64px);
    line-height: 0.96;
}

.technology--home .technology__lead {
    max-width: 650px;
    margin-top: 22px !important;
    font-size: 15px !important;
    line-height: 1.52 !important;
}

.technology--home .technology-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(20px, 2.2vw, 38px);
    margin-block: 27px !important;
}

.technology--home .technology-features li {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px !important;
    padding-block: 13px !important;
}

.technology--home .technology-features h3 {
    font-size: 15px !important;
}

.technology--home .technology-features p {
    margin-top: 5px;
    font-size: 10px !important;
    line-height: 1.45 !important;
}


/* ==========================================================
   SAMPLES — MATERIAL LIBRARY
========================================================== */

.material-library {
    background: #e8e2d8;
}

.material-library__heading {
    margin-bottom: clamp(38px, 4.5vw, 68px) !important;
}

.material-library__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 32px);
}

.material-category {
    min-width: 0;
    overflow: hidden;
    color: #171513;
    background: #f5f1e9;
    border: 1px solid rgba(24, 21, 18, 0.13);
}

.material-category--profiles {
    color: #f4efe8;
    background: #171614;
    border-color: rgba(255, 255, 255, 0.13);
}

.material-category--glass {
    background: #d7c6af;
}

.material-category--systems {
    color: #f4efe8;
    background: #34312d;
    border-color: rgba(255, 255, 255, 0.13);
}

.material-category__gallery {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    height: clamp(310px, 27vw, 445px);
    gap: 2px;
    overflow: hidden;
    background: rgba(21, 18, 15, 0.18);
}

.material-category__image {
    display: block;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
}

.material-category__image--main {
    grid-row: 1 / -1;
}

.material-category__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.material-category:hover .material-category__image img {
    transform: scale(1.025);
}

.material-category__content {
    display: grid;
    grid-template-columns: minmax(90px, 0.35fr) minmax(0, 1fr);
    gap: clamp(18px, 2vw, 34px);
    min-height: 210px;
    padding: clamp(24px, 2.6vw, 38px);
}

.material-category__number {
    padding-top: 7px;
    font-size: 10px;
    line-height: 1.3;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.66;
}

.material-category__content h3 {
    margin: 0;
    font-family: var(--font-sans);
    font-size: clamp(34px, 3vw, 52px);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: -0.035em;
}

.material-category__content p {
    max-width: 430px;
    margin: 14px 0 22px;
    font-size: 13px;
    line-height: 1.55;
    opacity: 0.76;
}

.material-category--profiles .text-link--light,
.material-category--systems .text-link--light {
    color: #f4efe8;
}


@media (max-width: 900px) {

    main > .technology--home {
        grid-template-columns: 1fr;
    }

    main > .technology--home .technology__visual {
        min-height: 0 !important;
        aspect-ratio: 16 / 7;
    }

    main > .technology--home .technology__content {
        grid-template-columns: 64px minmax(0, 1fr);
        padding: 48px var(--page-x) 54px !important;
    }

    .material-library__grid {
        gap: 20px;
    }

    .material-category__gallery {
        height: 330px;
    }

    .material-category__content {
        grid-template-columns: 1fr;
        gap: 10px;
        min-height: 225px;
    }

}


@media (max-width: 760px) {

    .material-library__grid {
        grid-template-columns: 1fr;
    }

    .material-category__gallery {
        height: clamp(270px, 76vw, 390px);
    }

    .material-category__content {
        min-height: 0;
    }

}


@media (max-width: 640px) {

    main > .technology--home,
    main > .technology--home .technology__visual {
        min-height: 0 !important;
    }

    main > .technology--home .technology__visual {
        aspect-ratio: 16 / 9;
    }

    main > .technology--home .technology__content {
        grid-template-columns: 1fr;
        gap: 24px !important;
        padding: 44px var(--page-x) 48px !important;
    }

    .technology--home .technology__copy .display-title {
        font-size: clamp(37px, 11vw, 49px);
    }

    .technology--home .technology-features {
        grid-template-columns: 1fr;
        margin-block: 24px !important;
    }

    .technology--home .technology-features li {
        padding-block: 12px !important;
    }

    .material-category__gallery {
        grid-template-columns: 1.45fr 1fr;
        height: 285px;
    }

    .material-category__content {
        padding: 23px 21px 26px;
    }

    .material-category__content h3 {
        font-size: 38px;
    }

}


/* ============================================================
   66. LARGE-PHOTO PARALLAX

   Single-image heroes and editorial photographs gain depth while
   the five-slide home hero remains exactly as designed.
   ============================================================ */

[data-parallax] {
    --parallax-y: 0px;
    --parallax-foreground-y: 0px;
    overflow: hidden;
}


[data-parallax] > picture {
    display: block;
    transform:
        translate3d(
            0,
            var(--parallax-y),
            0
        ) !important;
    transform-origin: center center !important;
    backface-visibility: hidden;
}


[data-parallax-active] > picture {
    will-change: transform !important;
}


[data-parallax] > [data-parallax-foreground] {
    transform:
        translate3d(
            0,
            var(--parallax-foreground-y),
            0
        );
    backface-visibility: hidden;
}


[data-parallax-active] > [data-parallax-foreground] {
    will-change: transform;
}


.hero__media[data-parallax="hero"] > picture,
.editorial-image[data-parallax="editorial"] > picture {
    position: absolute;
    top: -9%;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 118%;
}


.hero__media[data-parallax="hero"] > picture > img,
.editorial-image[data-parallax="editorial"] > picture > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


[data-parallax="split"] > picture {
    width: 100%;
    height: 100%;
    transform:
        translate3d(
            0,
            var(--parallax-y),
            0
        )
        scale(1.055) !important;
}


.hero__media[data-parallax="hero"] > .hero__video {
    top: -9%;
    bottom: auto;
    height: 118%;
    transform:
        translate3d(
            0,
            var(--parallax-y),
            0
        ) !important;
}


/* A large photo still feels cinematic, but no longer consumes an entire
   oversized monitor or creates an unnecessary full-screen scroll step. */

main > .hero:has(
    > .hero__media:not([data-hero-slider])
) {
    min-height: clamp(620px, 82svh, 900px) !important;
}


main > .hero:has(
    > .hero__media:not([data-hero-slider])
) > .hero__content {
    min-height: clamp(620px, 82svh, 900px) !important;
}


main > .editorial-image {
    height: clamp(360px, 42vw, 680px) !important;
}


@media (max-width: 900px) {

    main > .hero:has(
        > .hero__media:not([data-hero-slider])
    ) {
        min-height: clamp(540px, 82svh, 720px) !important;
    }


    main > .hero:has(
        > .hero__media:not([data-hero-slider])
    ) > .hero__content {
        min-height: clamp(540px, 82svh, 720px) !important;
    }


    main > .editorial-image {
        height: clamp(320px, 64vw, 520px) !important;
    }

}


@media (max-width: 640px) {

    main > .hero:has(
        > .hero__media:not([data-hero-slider])
    ) {
        min-height: clamp(520px, 84svh, 680px) !important;
    }


    main > .hero:has(
        > .hero__media:not([data-hero-slider])
    ) > .hero__content {
        min-height: clamp(520px, 84svh, 680px) !important;
    }


    main > .editorial-image {
        height: clamp(300px, 72vw, 440px) !important;
    }

}


@media (prefers-reduced-motion: reduce) {

    [data-parallax] > picture,
    [data-parallax] > [data-parallax-foreground],
    .hero__media[data-parallax="hero"] > .hero__video {
        transform: none !important;
        will-change: auto !important;
    }

}


/* ============================================================
   67. CONTENT PROTECTION

   Public content cannot be made extraction-proof in a browser,
   but native copy/drag/save gestures are blocked. Forms are fully
   exempt and retain normal selection, paste and touch behaviour.
   ============================================================ */

html.content-protection body {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}


html.content-protection img,
html.content-protection video,
html.content-protection picture,
html.content-protection svg,
html.content-protection canvas {
    -webkit-user-drag: none;
}


html.content-protection form,
html.content-protection form *,
html.content-protection [data-copy-allow],
html.content-protection [data-copy-allow] * {
    -webkit-user-select: auto;
    user-select: auto;
    -webkit-touch-callout: default;
}


html.content-protection form input,
html.content-protection form textarea,
html.content-protection form select,
html.content-protection form option,
html.content-protection form [contenteditable="true"],
html.content-protection form [role="textbox"] {
    -webkit-user-select: text;
    user-select: text;
}


@media print {

    html.content-protection body > * {
        display: none !important;
    }


    html.content-protection body::before {
        display: grid !important;
        min-height: 100vh;
        padding: 48px;
        place-items: center;
        content: "Материалы HelgBergStudio.OÜ защищены от копирования.";
        color: #111;
        font: 500 20px/1.5 Arial, sans-serif;
        text-align: center;
    }

}


/* ============================================================
   68. SAMPLE PHOTO LIGHTBOX
   ============================================================ */

.material-category__image[data-sample-zoom] {
    position: relative;
    cursor: zoom-in;
    outline: none;
}


.material-category__image[data-sample-zoom]::after {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    width: 42px;
    height: 42px;
    content: "";
    background: rgba(12, 11, 10, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 50%;
    pointer-events: none;
    transition:
        color 240ms ease,
        background-color 240ms ease,
        transform 240ms ease;
    backdrop-filter: blur(8px);
}


.material-category__image[data-sample-zoom]::before {
    position: absolute;
    top: 26px;
    right: 26px;
    z-index: 2;
    width: 18px;
    height: 18px;
    content: "";
    background: #fff;
    pointer-events: none;
    transition:
        background-color 240ms ease,
        transform 240ms ease;
    -webkit-mask:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='10' cy='10' r='6.5' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='m15 15 5.5 5.5' fill='none' stroke='black' stroke-linecap='round' stroke-width='2'/%3E%3C/svg%3E")
        center / contain
        no-repeat;
    mask:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='10' cy='10' r='6.5' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='m15 15 5.5 5.5' fill='none' stroke='black' stroke-linecap='round' stroke-width='2'/%3E%3C/svg%3E")
        center / contain
        no-repeat;
}


.material-category__image[data-sample-zoom]:focus-visible::after {
    background: #fff;
    transform: scale(1.08);
}


.material-category__image[data-sample-zoom]:focus-visible::before {
    background: #171513;
    transform: scale(1.08);
}


.sample-lightbox {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: grid;
    width: 100vw;
    min-height: 100svh;
    place-items: center;
    padding: clamp(18px, 3vw, 48px);
    opacity: 0;
    visibility: hidden;
    background: rgba(10, 9, 8, 0.95);
    transition:
        opacity 320ms ease,
        visibility 0s linear 320ms;
    overscroll-behavior: contain;
}


.sample-lightbox[hidden] {
    display: none;
}


.sample-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}


.sample-lightbox__stage {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    cursor: zoom-out;
    touch-action: pan-y pinch-zoom;
}


.sample-lightbox__figure {
    display: grid;
    max-width: min(92vw, 1680px);
    max-height: 89svh;
    margin: 0;
    grid-template-rows: minmax(0, 1fr) auto;
    cursor: default;
    transform: translateY(14px) scale(0.985);
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}


.sample-lightbox.is-open .sample-lightbox__figure {
    transform: translateY(0) scale(1);
}


.sample-lightbox__image {
    display: block;
    max-width: 100%;
    max-height: calc(89svh - 48px);
    margin: auto;
    object-fit: contain;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
    touch-action: pan-y pinch-zoom;
}


.sample-lightbox__image.is-switching {
    animation: sample-lightbox-switch 260ms cubic-bezier(0.22, 1, 0.36, 1);
}


@keyframes sample-lightbox-switch {

    from {
        opacity: 0.2;
        transform: scale(0.985);
    }


    to {
        opacity: 1;
        transform: scale(1);
    }

}


.sample-lightbox__caption {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    min-height: 20px;
    padding-top: 13px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0.08em;
    text-align: left;
    text-transform: uppercase;
}


.sample-lightbox__caption [data-sample-lightbox-counter] {
    flex: 0 0 auto;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}


.sample-lightbox__close {
    position: absolute;
    top: clamp(16px, 2.2vw, 34px);
    right: clamp(16px, 2.2vw, 34px);
    z-index: 2;
    width: 50px;
    height: 50px;
    padding: 0;
    color: #fff;
    background: rgba(20, 18, 16, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    cursor: pointer;
    transition:
        color 220ms ease,
        background-color 220ms ease,
        border-color 220ms ease,
        transform 220ms ease;
    backdrop-filter: blur(8px);
}


.sample-lightbox__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    width: 52px;
    height: 52px;
    padding: 0;
    place-items: center;
    color: #fff;
    background: rgba(20, 18, 16, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    transition:
        color 220ms ease,
        background-color 220ms ease,
        border-color 220ms ease,
        transform 220ms ease;
    backdrop-filter: blur(8px);
}


.sample-lightbox__nav[hidden] {
    display: none;
}


.sample-lightbox__nav--previous {
    left: clamp(14px, 2.2vw, 34px);
}


.sample-lightbox__nav--next {
    right: clamp(14px, 2.2vw, 34px);
}


.sample-lightbox__nav span {
    display: block;
    transform: translateY(-1px);
    font: 300 24px/1 var(--font-sans);
}


.sample-lightbox__nav:focus-visible {
    color: #171513;
    background: #fff;
    border-color: #fff;
    outline: 2px solid #fff;
    outline-offset: 4px;
}


.sample-lightbox__close span::before,
.sample-lightbox__close span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1px;
    content: "";
    background: currentColor;
}


.sample-lightbox__close span::before {
    transform: translate(-50%, -50%) rotate(45deg);
}


.sample-lightbox__close span::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}


.sample-lightbox__close:focus-visible {
    color: #171513;
    background: #fff;
    border-color: #fff;
    outline: 2px solid #fff;
    outline-offset: 4px;
}


html.sample-lightbox-open,
body.sample-lightbox-open {
    overflow: hidden;
    overscroll-behavior: none;
}


@media (hover: hover) and (pointer: fine) {

    .material-category__image[data-sample-zoom]:hover::after {
        background: #fff;
        border-color: #fff;
        transform: scale(1.08);
    }


    .material-category__image[data-sample-zoom]:hover::before {
        background: #171513;
        transform: scale(1.08);
    }


    .sample-lightbox__close:hover {
        color: #171513;
        background: #fff;
        border-color: #fff;
        transform: scale(1.08);
    }


    .sample-lightbox__nav:hover {
        color: #171513;
        background: #fff;
        border-color: #fff;
        transform: translateY(-50%) scale(1.08);
    }

}


@media (max-width: 640px) {

    .material-category__image[data-sample-zoom]::after {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
    }


    .material-category__image[data-sample-zoom]::before {
        top: 19px;
        right: 19px;
        width: 17px;
        height: 17px;
    }


    .sample-lightbox {
        padding: 14px;
    }


    .sample-lightbox__figure {
        max-width: 100%;
        max-height: 88svh;
    }


    .sample-lightbox__image {
        max-height: calc(88svh - 55px);
    }


    .sample-lightbox__close {
        top: 14px;
        right: 14px;
        width: 46px;
        height: 46px;
    }


    .sample-lightbox__nav {
        width: 44px;
        height: 44px;
    }


    .sample-lightbox__nav--previous {
        left: 10px;
    }


    .sample-lightbox__nav--next {
        right: 10px;
    }


    .sample-lightbox__caption {
        gap: 12px;
        padding-inline: 4px;
        font-size: 9px;
    }

}


@media (prefers-reduced-motion: reduce) {

    .sample-lightbox,
    .sample-lightbox__figure,
    .sample-lightbox__image.is-switching {
        transition: none;
        animation: none;
    }

}


/* ============================================================
   ABOUT — COMPACT EUROPE SECTION
   ============================================================ */

.sample-directory {
    padding-top: clamp(70px, 8vw, 130px);
    border-top: 1px solid var(--line);
}

.sample-directory__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: clamp(42px, 5vw, 78px) 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.sample-directory__list li {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.sample-directory__list li:nth-child(3n) {
    border-right: 0;
}

.sample-directory__list a {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    color: inherit;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease;
}

.sample-directory__list a:hover,
.sample-directory__list a:focus-visible {
    color: var(--bg);
    background: var(--text);
}

@media (max-width: 900px) {
    .sample-directory__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sample-directory__list li:nth-child(3n) {
        border-right: 1px solid var(--line);
    }

    .sample-directory__list li:nth-child(2n) {
        border-right: 0;
    }
}

@media (max-width: 560px) {
    .sample-directory__list {
        grid-template-columns: 1fr;
    }

    .sample-directory__list li,
    .sample-directory__list li:nth-child(3n) {
        border-right: 0;
    }
}

main > .technology--europe {
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    min-height: 0 !important;
    align-items: stretch;
}


main > .technology--europe .technology__visual {
    min-height: 0 !important;
    align-self: stretch;
}


main > .technology--europe .technology__visual picture {
    position: absolute;
    top: -5%;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 110%;
}


main > .technology--europe .technology__visual img {
    object-position: center center;
}


main > .technology--europe .technology__content {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: clamp(22px, 2.5vw, 42px) !important;
    padding: clamp(42px, 3.2vw, 58px) clamp(30px, 3.7vw, 66px) !important;
}


.technology--europe .technology__copy .display-title {
    max-width: 650px;
    font-size: clamp(48px, 3.5vw, 66px);
    line-height: 0.94;
}


.technology--europe .technology__lead {
    max-width: 610px;
    margin-top: 20px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}


.technology--europe .technology-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(18px, 2vw, 32px);
    margin-block: 24px !important;
}


.technology--europe .technology-features li {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 9px !important;
    padding-block: 12px !important;
}


.technology--europe .technology-features h3 {
    font-size: 15px !important;
}


.technology--europe .technology-features p {
    font-size: 10px !important;
    line-height: 1.46 !important;
}


@media (max-width: 980px) {

    main > .technology--europe {
        grid-template-columns: 1fr;
        min-height: 0 !important;
    }


    main > .technology--europe .technology__visual {
        min-height: 0 !important;
        aspect-ratio: 8 / 5;
    }


    main > .technology--europe .technology__content {
        padding: 48px var(--page-x) 54px !important;
    }

}


@media (max-width: 640px) {

    main > .technology--europe .technology__visual {
        aspect-ratio: 8 / 5;
    }


    main > .technology--europe .technology__content {
        grid-template-columns: 1fr;
        gap: 24px !important;
        padding: 42px var(--page-x) 46px !important;
    }


    .technology--europe .technology__copy .display-title {
        font-size: clamp(37px, 11vw, 48px);
    }


    .technology--europe .technology-features {
        grid-template-columns: 1fr;
        margin-block: 22px !important;
    }

}


/* ============================================================
   HOME — PHILOSOPHY PARALLAX
   The former standalone editorial image is now the background of
   the philosophy copy, shortening the page by one full photo block.
   ============================================================ */

main > .introduction--philosophy {
    display: grid;
    min-height: clamp(740px, 88svh, 900px);
    align-items: center;
    isolation: isolate;
    margin-top: clamp(20px, 1.8vw, 30px);
    padding-block: clamp(105px, 8vw, 145px) !important;
    border-top: 1px solid rgba(216, 180, 125, 0.38);
    color: #fffaf3;
    background: #171411;
}


.introduction--philosophy > .introduction__media {
    position: absolute;
    top: -18%;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 136%;
}


.introduction--philosophy > .introduction__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}


.introduction--philosophy > .introduction__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(10, 9, 8, 0.84) 0%,
            rgba(12, 10, 9, 0.73) 43%,
            rgba(13, 11, 10, 0.52) 72%,
            rgba(12, 10, 9, 0.34) 100%
        ),
        linear-gradient(
            180deg,
            rgba(8, 7, 6, 0.30) 0%,
            rgba(8, 7, 6, 0.08) 48%,
            rgba(8, 7, 6, 0.48) 100%
        );
    pointer-events: none;
}


.introduction--philosophy > .container {
    position: relative;
    z-index: 2;
}


.introduction--philosophy::after {
    z-index: 1;
    color: rgba(255, 248, 237, 0.035);
}


.introduction--philosophy .section-label {
    color: rgba(236, 213, 178, 0.70);
}


.introduction--philosophy .eyebrow {
    color: #d8b47d;
}


.introduction--philosophy .display-title {
    max-width: 1030px;
    color: #fffaf3;
    text-shadow: 0 3px 28px rgba(0, 0, 0, 0.20);
}


.introduction--philosophy .introduction__text-grid {
    max-width: 960px;
}


.introduction--philosophy .introduction__text-grid p {
    color: rgba(255, 250, 243, 0.72);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.26);
}


.introduction--philosophy .introduction__text-grid p:first-child {
    color: rgba(255, 250, 243, 0.96);
}


@media (max-width: 980px) {

    main > .introduction--philosophy {
        min-height: 760px;
        padding-block: 94px 84px !important;
    }


    .introduction--philosophy > .introduction__media img {
        object-position: center center;
    }


    .introduction--philosophy > .introduction__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(9, 8, 7, 0.84) 0%,
                rgba(10, 9, 8, 0.70) 72%,
                rgba(10, 9, 8, 0.52) 100%
            ),
            linear-gradient(
                180deg,
                rgba(8, 7, 6, 0.26) 0%,
                rgba(8, 7, 6, 0.18) 50%,
                rgba(8, 7, 6, 0.58) 100%
            );
    }

}


@media (max-width: 640px) {

    main > .introduction--philosophy {
        min-height: 0;
        margin-top: 22px;
        padding-block: 78px 72px !important;
    }


    .introduction--philosophy > .introduction__media {
        top: -16%;
        height: 132%;
    }


    .introduction--philosophy > .introduction__media img {
        object-position: center center;
    }


    .introduction--philosophy > .introduction__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(8, 7, 6, 0.72) 0%,
                rgba(8, 7, 6, 0.66) 42%,
                rgba(8, 7, 6, 0.84) 100%
            );
    }


    .introduction--philosophy .introduction__text-grid {
        margin-top: 38px !important;
    }


    .introduction--philosophy .introduction__content {
        min-width: 0;
    }


    .introduction--philosophy .display-title {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

}


/* ============================================================
   ABOUT — HISTORY / KIOTO PARALLAX
   The archive photograph and the history copy share one compact,
   cinematic section instead of two consecutive scroll blocks.
   ============================================================ */

main > .about-history--parallax {
    position: relative;
    display: grid;
    min-height: clamp(720px, 82svh, 860px);
    align-items: center;
    isolation: isolate;
    padding-block: clamp(92px, 7vw, 124px) !important;
    color: #fffaf3;
    background: #15120f;
    overflow: hidden;
}


.about-history--parallax > .about-history__media {
    position: absolute;
    top: -25%;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 150%;
}


.about-history--parallax > .about-history__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 52%;
}


.about-history--parallax > .about-history__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(9, 8, 7, 0.88) 0%,
            rgba(10, 9, 8, 0.78) 42%,
            rgba(11, 9, 8, 0.63) 72%,
            rgba(10, 9, 8, 0.52) 100%
        ),
        linear-gradient(
            180deg,
            rgba(7, 6, 5, 0.36) 0%,
            rgba(7, 6, 5, 0.08) 48%,
            rgba(7, 6, 5, 0.55) 100%
        );
    pointer-events: none;
}


.about-history--parallax > .container {
    position: relative;
    z-index: 2;
}


.about-history--parallax .section-label {
    color: rgba(236, 213, 178, 0.72);
}


.about-history--parallax .eyebrow {
    color: #d8b47d;
}


.about-history--parallax .display-title {
    max-width: 980px;
    color: #fffaf3;
    text-shadow: 0 3px 30px rgba(0, 0, 0, 0.30);
}


.about-history--parallax .about__lead p {
    color: rgba(255, 250, 243, 0.96);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}


.about-history--parallax .about__text p {
    color: rgba(255, 250, 243, 0.72);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}


@media (max-width: 980px) {

    main > .about-history--parallax {
        min-height: 760px;
        padding-block: 88px 82px !important;
    }


    .about-history--parallax > .about-history__media img {
        object-position: 50% center;
    }


    .about-history--parallax > .about-history__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(8, 7, 6, 0.88) 0%,
                rgba(9, 8, 7, 0.76) 68%,
                rgba(9, 8, 7, 0.60) 100%
            ),
            linear-gradient(
                180deg,
                rgba(7, 6, 5, 0.30) 0%,
                rgba(7, 6, 5, 0.18) 52%,
                rgba(7, 6, 5, 0.62) 100%
            );
    }

}


@media (max-width: 640px) {

    main > .about-history--parallax {
        min-height: 0;
        padding-block: 78px 68px !important;
    }


    .about-history--parallax > .about-history__media {
        top: -24%;
        height: 148%;
    }


    .about-history--parallax > .about-history__media img {
        object-position: center center;
    }


    .about-history--parallax > .about-history__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(7, 6, 5, 0.75) 0%,
                rgba(7, 6, 5, 0.70) 45%,
                rgba(7, 6, 5, 0.88) 100%
            );
    }


    .about-history--parallax .about__body {
        margin-top: 36px !important;
    }

}


/* The Collaboration photograph uses a deliberately stronger travel
   distance than ordinary split-layout media. */

.designers__media--collaboration > picture {
    position: absolute;
    top: -25%;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 150%;
}


.designers__media--collaboration > picture > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 640px) {

    .designers__media--collaboration > picture {
        top: -24%;
        height: 148%;
    }

}


/* ============================================================
   HEADER — CURRENT SECTION
   A restrained champagne accent marks the user's current rubric.
   ============================================================ */

.desktop-navigation__list a[aria-current] {
    font-weight: 800;
}


.site-header:not(.is-fixed)
.desktop-navigation__list a[aria-current] {
    color: #f0d29f;
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.74),
        0 0 18px rgba(216, 180, 125, 0.28);
}


.site-header.is-fixed
.desktop-navigation__list a[aria-current] {
    color: #8b5f2c;
}


.desktop-navigation__list a[aria-current]::after {
    height: 2px;
    background: currentColor;
    box-shadow: 0 0 12px rgba(216, 180, 125, 0.34);
    transform: scaleX(1);
    transform-origin: center center;
}


.mobile-menu__navigation a[aria-current] {
    color: #f0d29f;
}


.mobile-menu__navigation a[aria-current]::before {
    color: #d8b47d;
}


.mobile-menu__navigation a[aria-current]::after {
    content: "";
    width: clamp(24px, 8vw, 52px);
    height: 1px;
    margin-left: clamp(2px, 1vw, 10px);
    background: #d8b47d;
    box-shadow: 0 0 14px rgba(216, 180, 125, 0.34);
}


/* ============================================================
   SYSTEMS / DESIGNERS — COMPACT ENGINEERING BLOCKS
   Two-column editorial layout that remains within a laptop
   viewport while retaining a readable single-column mobile flow.
   ============================================================ */

main > .technology--compact {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    min-height: clamp(620px, 78svh, 760px) !important;
    align-items: stretch;
}


main > .technology--compact .technology__visual {
    min-height: 0 !important;
    align-self: stretch;
}


.technology--compact .technology__visual picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}


main > .technology--compact .technology__content {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: clamp(20px, 2.2vw, 36px) !important;
    padding: clamp(38px, 3.6vw, 58px) clamp(28px, 4.2vw, 66px) !important;
    align-content: center;
}


.technology--compact .technology__copy .display-title {
    max-width: 660px;
    font-size: clamp(44px, 3.45vw, 66px);
    line-height: 0.95;
}


.technology--compact .technology__lead {
    max-width: 620px;
    margin-top: 20px !important;
    font-size: clamp(13px, 0.9vw, 15px) !important;
    line-height: 1.52 !important;
}


.technology--compact .technology-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(18px, 2vw, 32px);
    margin-block: 24px !important;
}


.technology--compact .technology-features li {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 10px !important;
    padding-block: 12px !important;
}


.technology--compact .technology-features h3 {
    margin-bottom: 5px !important;
    font-size: 15px !important;
}


.technology--compact .technology-features p {
    font-size: 10px !important;
    line-height: 1.46 !important;
}


@media (max-width: 980px) {

    main > .technology--compact {
        grid-template-columns: 1fr;
        min-height: 0 !important;
    }


    main > .technology--compact .technology__visual {
        aspect-ratio: 16 / 9;
    }


    main > .technology--compact .technology__content {
        grid-template-columns: 54px minmax(0, 1fr);
        padding: 46px var(--page-x) 52px !important;
    }

}


@media (max-width: 640px) {

    main > .technology--compact .technology__visual {
        min-height: 280px !important;
        aspect-ratio: 4 / 3;
    }


    main > .technology--compact .technology__content {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px !important;
        padding: 38px var(--page-x) 44px !important;
    }


    .technology--compact .technology__content > .section-label,
    .technology--compact .technology__copy {
        grid-column: 1;
        grid-row: auto;
    }


    .technology--compact .technology__copy .display-title {
        font-size: clamp(37px, 11vw, 48px);
        line-height: 0.96;
    }


    .technology--compact .technology__lead {
        margin-top: 18px !important;
        font-size: 15px !important;
        line-height: 1.58 !important;
    }


    .technology--compact .technology-features {
        grid-template-columns: 1fr;
        margin-block: 24px !important;
    }


    .technology--compact .technology-features li {
        grid-template-columns: 30px minmax(0, 1fr);
        padding-block: 15px !important;
    }


    .technology--compact .technology-features h3 {
        font-size: 17px !important;
    }


    .technology--compact .technology-features p {
        font-size: 12px !important;
        line-height: 1.55 !important;
    }

}


/* ============================================================
   73. BARN DOORS — DEDICATED SYSTEM CATALOG

   Barn Doors media is intentionally isolated from every other collection.
   The galleries scroll horizontally so every photo remains available without
   forcing the page into a dense wall of thumbnails.
   ============================================================ */

.barn-system-index,
.collection-folder-index {
    padding-top: clamp(70px, 8vw, 120px);
    background: var(--paper);
}


.barn-system-nav,
.collection-folder-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: clamp(42px, 5vw, 76px);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}


.barn-system-nav a,
.collection-folder-nav a {
    display: flex;
    align-items: baseline;
    gap: 18px;
    min-height: 92px;
    padding: 24px 22px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: clamp(18px, 1.6vw, 25px);
    font-weight: 350;
    letter-spacing: -0.03em;
    transition: color var(--fast), background var(--fast);
}


.barn-system-nav a span,
.collection-folder-nav a span {
    color: var(--bronze-dark);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
}


@media (hover: hover) and (pointer: fine) {

    .barn-system-nav a:hover,
    .collection-folder-nav a:hover {
        color: var(--paper);
        background: var(--ink);
    }

}


.barn-mechanisms,
.collection-folder-catalog {
    overflow: hidden;
    background: #f4f0e8;
}


.barn-mechanisms__title,
.collection-folder-catalog__title {
    margin-bottom: clamp(68px, 8vw, 120px);
}


.barn-mechanism-list,
.collection-folder-list {
    border-top: 1px solid var(--line);
}


.barn-mechanism,
.collection-folder-item {
    padding-block: clamp(56px, 6vw, 92px);
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 88px;
}


.barn-mechanism__heading,
.collection-folder-item__heading {
    display: grid;
    grid-template-columns: minmax(120px, 0.33fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 70px);
    margin-bottom: clamp(28px, 4vw, 48px);
}


.barn-mechanism__number,
.collection-folder-item__number {
    padding-top: 10px;
    color: var(--bronze-dark);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}


.barn-mechanism__heading h3,
.collection-folder-item__heading h3 {
    font-size: clamp(40px, 5vw, 76px);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.055em;
}


.barn-mechanism__heading p,
.collection-folder-item__heading > div > p:last-child {
    max-width: 580px;
    margin-top: 18px;
    color: var(--stone-dark);
    font-size: 13px;
    line-height: 1.65;
}


.barn-mechanism__gallery.material-category__gallery,
.collection-folder-item__gallery.material-category__gallery {
    display: flex;
    grid-template: none;
    height: auto;
    gap: clamp(10px, 1.2vw, 18px);
    margin-right: calc(var(--page-x) * -1);
    padding-right: var(--page-x);
    padding-bottom: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    background: transparent;
    scroll-padding-inline: 0 var(--page-x);
    scroll-snap-type: x proximity;
    scrollbar-color: var(--bronze-dark) transparent;
    scrollbar-width: thin;
}


.barn-mechanism__gallery::-webkit-scrollbar,
.collection-folder-item__gallery::-webkit-scrollbar {
    height: 4px;
}


.barn-mechanism__gallery::-webkit-scrollbar-thumb,
.collection-folder-item__gallery::-webkit-scrollbar-thumb {
    background: var(--bronze-dark);
}


.barn-mechanism__image.material-category__image,
.collection-folder-item__image.material-category__image {
    flex: 0 0 clamp(260px, 31vw, 440px);
    aspect-ratio: 4 / 3;
    cursor: zoom-in;
    background: #e7e0d6;
    scroll-snap-align: start;
}


.barn-mechanism__image.material-category__image img,
.collection-folder-item__image.material-category__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.94) contrast(1.015);
}


.finished-projects-gallery.collection-folder-item__gallery.material-category__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    height: auto;
    gap: clamp(8px, 1vw, 14px);
    margin-right: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
}


.finished-projects-gallery .collection-folder-item__image.material-category__image {
    min-width: 0;
    aspect-ratio: 4 / 3;
    border-radius: 2px;
    flex: none;
}


/* One quiet miniature represents each realized project. The remaining photos
   stay in the same lightbox group without duplicating visible project blocks. */
.finished-projects-project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: clamp(8px, 1vw, 14px);
}


.project-gallery-card.material-category__gallery {
    display: block;
    height: auto;
    overflow: visible;
    background: transparent;
}


.project-gallery-card .project-gallery__cover.material-category__image {
    display: block;
    width: 100%;
    min-width: 0;
    aspect-ratio: 4 / 3;
    border-radius: 2px;
    cursor: zoom-in;
}


.project-gallery-card .project-gallery__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.project-gallery__hidden-trigger {
    display: none !important;
}


/* Keep each system label in one compact line: number and system name,
   without a second repeated heading, description or arrow. */
.system-number-card .system-number-card__content {
    display: block;
    min-height: 0;
    padding-top: clamp(10px, 1vw, 16px) !important;
}


.system-number-card .system-number-card__content .collection-card__number {
    display: block;
    margin-bottom: 0 !important;
    font-size: clamp(11px, 0.75vw, 13px);
    line-height: 1.35;
    letter-spacing: 0.13em;
}


/* Technology opens as a true full-screen visual. The stronger left veil
   keeps the editorial copy legible over the light aluminium close-up. */
main > #technology.technology-hero,
main > #technology.technology-hero > .hero__content {
    min-height: 100vh !important;
    min-height: 100svh !important;
}


#technology.technology-hero .hero__overlay {
    background:
        linear-gradient(
            180deg,
            rgba(8, 8, 7, 0.48) 0%,
            rgba(8, 8, 7, 0.16) 48%,
            rgba(8, 8, 7, 0.8) 100%
        );
}


#technology.technology-hero .hero__overlay::after {
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.48) 45%,
            rgba(0, 0, 0, 0.08) 100%
        );
}


.technology-final-image img {
    object-position: center 48%;
}


/* The systems engineering panel cycles through one real profile photograph
   from ten distinct HBS systems. Technical product shots remain fully visible
   instead of being cropped like interior photography. */
.systems-profile-slider {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #080806;
}


.technology--compact .systems-profile-slider .systems-profile-slide {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.018);
    transition:
        opacity 0.8s var(--ease-out),
        transform 1.1s var(--ease-out);
    pointer-events: none;
}


.technology--compact .systems-profile-slider .systems-profile-slide.is-active {
    z-index: 1;
    opacity: 1;
    transform: scale(1);
}


.systems-profile-slider .systems-profile-slide img {
    width: 100%;
    height: 100%;
    padding: clamp(18px, 2.2vw, 38px);
    object-fit: contain !important;
    object-position: center !important;
}


.systems-profile-slider__counter {
    position: absolute;
    right: clamp(16px, 2vw, 28px);
    bottom: clamp(14px, 1.8vw, 24px);
    z-index: 3;
    padding: 7px 9px 6px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(8, 8, 6, 0.72);
    font-size: 9px;
    line-height: 1;
    letter-spacing: 0.16em;
    backdrop-filter: blur(8px);
}


@media (prefers-reduced-motion: reduce) {
    .technology--compact .systems-profile-slider .systems-profile-slide {
        transition: none;
        transform: none;
    }
}


/* Supplied technology libraries: exact profile types, profile-system folders
   and real glass samples use one consistent, touch-friendly visual language. */
.material-category__gallery--profile-types {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
}


.material-category__gallery--glass-types {
    grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
}


.material-swatch {
    position: relative;
    min-width: 0;
    min-height: 0;
    margin: 0;
    background: #171513;
}


.material-swatch--main {
    grid-row: 1 / -1;
}


.material-swatch > picture {
    display: block;
    width: 100%;
    height: 100%;
}


.material-swatch figcaption {
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 3;
    width: fit-content;
    max-width: calc(100% - 20px);
    padding: 7px 9px 6px;
    color: #fff;
    background: rgba(13, 12, 11, 0.76);
    font-size: 9px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    pointer-events: none;
    backdrop-filter: blur(8px);
}


.material-swatch figcaption span {
    display: block;
}


.material-swatch figcaption small {
    display: block;
    margin-top: 5px;
    font-size: 8px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
    text-transform: none;
}


.material-swatch--with-description figcaption {
    width: min(260px, calc(100% - 20px));
}


.material-category__gallery--profile-types .material-swatch img {
    padding: clamp(10px, 1.2vw, 20px);
    object-fit: contain;
    background: #0b0a09;
}


.profile-systems {
    background: #e8e2d8;
}


.profile-systems__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 1.7vw, 28px);
}


.profile-system-card {
    min-width: 0;
    background: #f5f1e9;
    border: 1px solid rgba(24, 21, 18, 0.13);
}


.profile-system-card__gallery .project-gallery__cover.material-category__image {
    aspect-ratio: 4 / 3;
    border-radius: 0;
    background: #11100f;
}


.profile-system-card__gallery .project-gallery__cover img {
    padding: clamp(8px, 1vw, 16px);
    object-fit: contain;
    background: #11100f;
}


.profile-system-card__content {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    min-height: 102px;
    padding: 18px;
    align-items: start;
}


.profile-system-card__content > span {
    padding-top: 3px;
    color: var(--bronze-dark);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
}


.profile-system-card__content h3 {
    margin: 0;
    font-size: clamp(17px, 1.35vw, 23px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.025em;
    overflow-wrap: anywhere;
}


.technology-glass {
    background: #d7c6af;
}


.technology-glass__grid.material-category__gallery {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-template-rows: none;
    height: auto;
    gap: clamp(8px, 1vw, 14px);
    overflow: visible;
    background: transparent;
}


.technology-glass__grid .material-swatch {
    aspect-ratio: 1;
}


@media (max-width: 980px) {
    .profile-systems__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .technology-glass__grid.material-category__gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


@media (max-width: 640px) {
    .material-category__gallery--profile-types,
    .material-category__gallery--glass-types {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, minmax(0, 1fr));
        height: min(112vw, 430px);
    }

    .material-category__gallery--glass-types {
        grid-template-rows: repeat(3, minmax(0, 1fr));
    }

    .material-category__gallery--glass-types .material-swatch--main {
        grid-row: auto;
    }

    .material-category__gallery--glass-types .material-swatch:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 1px);
        justify-self: center;
    }

    .material-swatch figcaption {
        right: 7px;
        bottom: 7px;
        left: 7px;
        max-width: calc(100% - 14px);
        padding: 6px 7px 5px;
        font-size: 8px;
    }

    .profile-systems__grid,
    .technology-glass__grid.material-category__gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .profile-system-card__content {
        grid-template-columns: 26px minmax(0, 1fr);
        gap: 8px;
        min-height: 92px;
        padding: 13px 11px;
    }

    .profile-system-card__content h3 {
        font-size: 15px;
    }
}


/* The systems overview uses a quiet architectural frame with intentional
   negative space for the headline and a clear view of the glass leaf. */
.systems-hero .hero__slide img {
    object-position: var(--hero-slide-position, 50%) center;
}


.systems-hero .hero__overlay {
    background:
        linear-gradient(
            180deg,
            rgba(8, 8, 7, 0.46) 0%,
            rgba(8, 8, 7, 0.10) 36%,
            rgba(8, 8, 7, 0.26) 63%,
            rgba(8, 8, 7, 0.84) 100%
        ),
        linear-gradient(
            90deg,
            rgba(8, 8, 7, 0.80) 0%,
            rgba(8, 8, 7, 0.60) 34%,
            rgba(8, 8, 7, 0.18) 66%,
            rgba(8, 8, 7, 0.05) 100%
        );
}


.collections-editorial-image img {
    object-position: 54% center;
}


.systems-hero .hero__pagination-button::after {
    background: var(--luxury-champagne-light);
}


@media (max-width: 640px) {
    .systems-hero .hero__slide img {
        object-position: var(--hero-slide-position-mobile, 50%) center;
    }

    .systems-hero .hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(8, 8, 7, 0.56) 0%,
                rgba(8, 8, 7, 0.19) 34%,
                rgba(8, 8, 7, 0.43) 62%,
                rgba(8, 8, 7, 0.91) 100%
            ),
            linear-gradient(
                90deg,
                rgba(8, 8, 7, 0.54) 0%,
                rgba(8, 8, 7, 0.18) 72%,
                rgba(8, 8, 7, 0.04) 100%
            );
    }
}


/* Pivot uses a deliberately composed architectural Hero. The darker left
   field keeps the title readable while the open rotating leaf remains clear. */
.pivot-hero .hero__media img {
    object-position: 58% center;
}


.pivot-hero .hero__overlay {
    background:
        linear-gradient(
            180deg,
            rgba(8, 8, 7, 0.42) 0%,
            rgba(8, 8, 7, 0.08) 38%,
            rgba(8, 8, 7, 0.24) 64%,
            rgba(8, 8, 7, 0.82) 100%
        ),
        linear-gradient(
            90deg,
            rgba(8, 8, 7, 0.72) 0%,
            rgba(8, 8, 7, 0.48) 32%,
            rgba(8, 8, 7, 0.10) 66%,
            rgba(8, 8, 7, 0.04) 100%
        );
}


.pivot-hero .hero__overlay::after {
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.18),
            transparent 52%
        );
}


.pivot-hero__title {
    max-width: 1120px;
    font-size: clamp(68px, 8.3vw, 150px);
    line-height: 0.84;
}


.pivot-hero__title > span {
    max-width: 920px;
    margin-left: clamp(0px, 7vw, 110px);
    font-size: 0.72em;
    line-height: 0.94;
}


.pivot-hero__title em {
    color: var(--bronze-light);
    font: inherit;
}


.pivot-hero .hero__description {
    max-width: 490px;
}


/* Pocket keeps the hidden leaf legible while reserving the darker timber wall
   for the Hero copy. The mobile focal point follows the doorway. */
.pocket-hero .hero__media img {
    object-position: 50% center;
}


/* Romantic retains the complete decorative grid in the wide Hero crop. */
.romantic-hero .hero__media img {
    object-position: 50% center;
}


.scandinavian-hero .hero__media img {
    object-position: 50% center;
}


.sliding-hero .hero__media img {
    object-position: 50% center;
}


.sliding-editorial-image img {
    object-position: 50% 42%;
}


.slim-line-hero .hero__media img {
    object-position: 50% center;
}


/* The wide realized frame keeps the complete Telescopic cascade visible. */
.telescopic-hero .hero__media img {
    object-position: 50% center;
}


/* Wardrobe keeps the glass facade and the bedroom context in one frame. */
.wardrobe-hero .hero__media img {
    object-position: 60% center;
}


@media (max-width: 700px) {

    .finished-projects-gallery.collection-folder-item__gallery.material-category__gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }


    .finished-projects-gallery .collection-folder-item__image.material-category__image {
        flex-basis: auto;
    }


    .finished-projects-project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }


    .pivot-hero .hero__media img {
        object-position: 61% center;
    }


    .pivot-hero .hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(8, 8, 7, 0.52) 0%,
                rgba(8, 8, 7, 0.14) 33%,
                rgba(8, 8, 7, 0.40) 64%,
                rgba(8, 8, 7, 0.88) 100%
            );
    }


    .pivot-hero__title {
        font-size: clamp(51px, 14.4vw, 68px);
        line-height: 0.88;
    }


    .pivot-hero__title > span {
        max-width: 100%;
        margin-left: 0;
        font-size: 0.72em;
        line-height: 0.98;
    }


    .pocket-hero .hero__media img {
        object-position: 51% center;
    }


    .romantic-hero .hero__media img {
        object-position: 53% center;
    }


    .scandinavian-hero .hero__media img {
        object-position: 54% center;
    }


    .sliding-hero .hero__media img {
        object-position: 50% center;
    }


    .sliding-editorial-image img {
        object-position: 50% center;
    }


    .slim-line-hero .hero__media img {
        object-position: 50% center;
    }


    .telescopic-hero .hero__media img {
        object-position: 50% center;
    }


    .wardrobe-hero .hero__media img {
        object-position: 68% center;
    }

}


@media (max-width: 980px) {

    .barn-system-nav,
    .collection-folder-nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}


@media (max-width: 700px) {

    .barn-system-nav,
    .collection-folder-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .barn-system-nav a,
    .collection-folder-nav a {
        min-height: 76px;
        padding: 19px 16px;
    }


    .barn-mechanism__heading,
    .collection-folder-item__heading {
        grid-template-columns: 1fr;
        gap: 12px;
    }


    .barn-mechanism__number,
    .collection-folder-item__number {
        padding-top: 0;
    }


    .barn-mechanism__image.material-category__image,
    .collection-folder-item__image.material-category__image {
        flex-basis: min(82vw, 360px);
    }

}


@media (max-width: 440px) {

    .barn-system-nav,
    .collection-folder-nav {
        grid-template-columns: 1fr;
    }

}


.cabine-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 clamp(26px, 4vw, 64px);
    max-width: 760px;
    margin: 28px 0 0;
    border-top: 1px solid var(--line);
}


.cabine-specs > div {
    display: grid;
    grid-template-columns: minmax(70px, 0.35fr) minmax(0, 1fr);
    gap: 16px;
    padding-block: 15px;
    border-bottom: 1px solid var(--line);
}


.cabine-specs dt {
    color: var(--bronze-dark);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}


.cabine-specs dd {
    margin: 0;
    color: var(--stone-dark);
    font-size: 12px;
    line-height: 1.5;
}


/* ============================================================
   DESIGNERS — SUPPLIED CATALOGUES AND WORKING DRAWINGS
   ============================================================ */

.designer-resources {
    background: var(--ivory-deep);
}


.designer-resources__intro {
    max-width: 720px;
    margin-top: 24px;
    color: var(--text-soft);
    font-size: clamp(14px, 1vw, 17px);
    line-height: 1.7;
}


.designer-resource-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}


.designer-resource-card {
    display: flex;
    min-height: 300px;
    flex-direction: column;
    padding: clamp(25px, 2.4vw, 42px);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.22);
}


.designer-resource-card__meta {
    margin: 0 0 28px;
    color: var(--bronze-dark);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}


.designer-resource-card h3,
.designer-scheme-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(23px, 2vw, 34px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.04;
}


.designer-resource-card > p:not(.designer-resource-card__meta),
.designer-scheme-card__content > p:not(.designer-resource-card__meta) {
    margin: 18px 0 28px;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.65;
}


.designer-resource-card > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 17px;
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


.designer-resource-card > a span {
    font-size: 18px;
    font-weight: 400;
    transition: transform var(--fast);
}


@media (hover: hover) and (pointer: fine) {

    .designer-resource-card > a:hover span {
        transform: translate(3px, -3px);
    }

}


.designer-scheme-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
    gap: clamp(20px, 2.4vw, 40px);
    margin-top: clamp(56px, 6vw, 104px);
}


.designer-scheme-card {
    display: grid;
    grid-template-rows: minmax(300px, 1fr) auto;
    min-width: 0;
    background: var(--ivory-soft);
}


.designer-scheme-card__media {
    display: block;
    min-height: 300px;
    overflow: hidden;
    background: #fff;
}


.designer-scheme-card__media picture,
.designer-scheme-card__media img {
    display: block;
    width: 100%;
    height: 100%;
}


.designer-scheme-card__media img {
    object-fit: contain;
    transition: transform var(--slow);
}


.designer-scheme-card__content {
    padding: clamp(24px, 2.6vw, 42px);
    border-top: 1px solid var(--line);
}


.designer-scheme-card__content .designer-resource-card__meta {
    margin-bottom: 18px;
}


.designer-resources__note {
    max-width: 850px;
    margin: clamp(34px, 4vw, 60px) 0 0 auto;
    padding-left: 28px;
    border-left: 1px solid var(--bronze);
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.7;
}


.collection-card__image img[src*="reinforcement-scheme"],
.collection-card__image img[src*="track-niche-scheme"] {
    padding: clamp(12px, 2vw, 30px);
    background: #fff;
    object-fit: contain !important;
}


/* A picture is inline by default; make every supplied card image a stable box. */
.collection-card__image picture,
.collection-card__image img {
    display: block;
}


@media (max-width: 980px) {

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


    .designer-scheme-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 620px) {

    .designer-resource-grid {
        grid-template-columns: 1fr;
    }


    .designer-resource-card {
        min-height: 250px;
    }


    .designer-scheme-card {
        grid-template-rows: minmax(240px, 55vh) auto;
    }

}


@media (max-width: 620px) {

    .cabine-specs {
        grid-template-columns: 1fr;
    }

}
