

:root {

    --black:        #0A0A0A;
    --black-deep:   #000000;
    --white:        #FFFFFF;
    --cream:        #E8E1D5;
    --cream-soft:   #F2EDE3;
    --grey-line:    rgba(255, 255, 255, 0.18);
    --grey-soft:    rgba(255, 255, 255, 0.55);
    --grey-mute:    rgba(255, 255, 255, 0.35);

    --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-mono:    'JetBrains Mono', monospace;

    --container:    1440px;
    --gutter:       clamp(1.5rem, 4vw, 4rem);

    --ease:         cubic-bezier(0.65, 0.05, 0.36, 1);
    --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: var(--white);
    background: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity 0.3s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--cream); color: var(--black); }

.eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--grey-soft);
    margin-bottom: 1.5rem;
}
.eyebrow--dark {
    color: rgba(10, 10, 10, 0.55);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white);
    background: transparent;
    border: 1px solid var(--white);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.4s var(--ease);
}
.btn:hover {
    background: var(--white);
    color: var(--black);
}
.btn--dark {
    color: var(--black);
    border-color: var(--black);
}
.btn--dark:hover {
    background: var(--black);
    color: var(--white);
}
.btn--large {
    padding: 1.1rem 2.5rem;
    font-size: 0.78rem;
}
.btn--full {
    width: 100%;
}
.btn svg {
    transition: transform 0.4s var(--ease);
}
.btn:hover svg {
    transform: translateX(4px);
}

.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.5rem var(--gutter);
    background: transparent;
    transition: background 0.4s var(--ease);
}
.nav--scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
}

.nav__container {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 0.15rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--white);
}

.nav__menu {
    display: flex;
    gap: 2.5rem;
}
.nav__menu a {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding: 0.3rem 0;
}
.nav__menu a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--white);
    transition: width 0.4s var(--ease);
}
.nav__menu a:hover::after {
    width: 100%;
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}
.nav__burger span {
    width: 100%;
    height: 1px;
    background: var(--white);
}

.nav__right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
}
.lang-switch__btn {
    color: var(--grey-mute);
    background: none;
    border: none;
    padding: 0.2rem 0.1rem;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    transition: color 0.3s ease;
}
.lang-switch__btn:hover {
    color: var(--white);
}
.lang-switch__btn.is-active {
    color: var(--cream);
}
.lang-switch__sep {
    color: var(--grey-mute);
    font-size: 0.7rem;
}

[data-i18n], [data-i18n-html] {
    transition: opacity 0.28s var(--ease);
}
.i18n-fading {
    opacity: 0;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    background: var(--black);
}

.hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10, 10, 10, 0.68) 0%,
        rgba(10, 10, 10, 0.40) 30%,
        rgba(10, 10, 10, 0.50) 60%,
        rgba(10, 10, 10, 0.85) 100%);
}
.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 12s var(--ease-out) forwards;
}
@keyframes heroZoom {
    from { transform: scale(1.08); }
    to   { transform: scale(1); }
}

.hero__overlay {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 5rem var(--gutter) 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
}

.hero__top {margin-top:3.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out) 0.3s forwards;
}

.hero__meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-soft);
    border: 1px solid var(--grey-line);
    padding: 0.6rem 1rem;
    border-radius: 999px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
}
.hero__meta-sep {
    color: var(--grey-mute);
}

.hero__center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 0;
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero__title-row {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 1.2s var(--ease-out) forwards;
}
.hero__title-row:nth-child(1) { animation-delay: 0.5s; }
.hero__title-row:nth-child(2) { animation-delay: 0.7s; }
.hero__title-row:nth-child(3) { animation-delay: 0.9s; }

.hero__title-row--italic {
    font-style: italic;
    font-weight: 300;
    text-transform: none;
    font-size: 0.85em;
    color: var(--cream);
}

@keyframes heroReveal {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    to { opacity: 1; }
}

.hero__bottom {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out) 1.2s forwards;
}

.hero__brand {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 0 1rem;
    align-items: center;
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--grey-line);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    min-width: 280px;
}

.hero__brand-line {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    grid-column: 1;
}
.hero__brand-line:first-child {
    grid-row: 1;
}
.hero__brand-line:nth-child(2) {
    grid-row: 2;
}
.hero__brand-divider {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 1px;
    height: 80%;
    background: var(--grey-line);
    margin: auto 0.5rem;
}
.hero__brand-est {
    grid-column: 3;
    grid-row: 1 / 3;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--grey-soft);
    align-self: center;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--grey-soft);
    z-index: 2;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--grey-soft);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: -50%; left: 0;
    width: 100%; height: 50%;
    background: var(--white);
    animation: scrollDot 2s var(--ease) infinite;
}
@keyframes scrollDot {
    0%   { top: -50%; }
    100% { top: 100%; }
}

.strip-nav {
    background: var(--cream-soft);
    color: var(--black);
    padding: 0.9rem var(--gutter);
    border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}
.strip-nav__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.strip-nav__logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 0.1rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
}
.strip-nav__menu {
    font-size: 1.4rem;
    letter-spacing: 0.3em;
    color: rgba(10, 10, 10, 0.5);
    cursor: pointer;
}

.about {
    background: var(--black);
    padding: 8rem var(--gutter);
    position: relative;
}

.about__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about__text {
    padding-right: 2rem;
}

.about__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--white);
}

.about__title-name {
    font-style: italic;
    font-weight: 300;
    color: var(--cream);
    text-transform: none;
}

.about__intro {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--grey-soft);
    margin-bottom: 2.5rem;
    max-width: 32rem;
    font-family: var(--font-mono);
    font-weight: 300;
}

.about__image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #1A1A1A;
    position: relative;
}
.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.about__image:hover img {
    transform: scale(1.04);
}

.work {
    background: var(--black);
    padding: 4rem var(--gutter) 8rem;
}

.work__grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.work__image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #1A1A1A;
}
.work__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.work__image:hover img {
    transform: scale(1.05);
}

.work__card {
    background: var(--cream-soft);
    color: var(--black);
    padding: 3rem 2.5rem;
    text-align: center;
    aspect-ratio: 3 / 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.work__card-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.work__card-text {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(10, 10, 10, 0.7);
    margin-bottom: 2rem;
    max-width: 22rem;
}

.statement {
    background: var(--black);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.statement__inner {
    position: relative;
    width: 100%;
}

.statement__row {
    overflow: hidden;
    padding: 0.5rem 0;
    position: relative;
}

.statement__row--1 {
    border-top: 1px solid var(--grey-line);
}

.statement__row--3 {
    border-bottom: 1px solid var(--grey-line);
}

.statement__track {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    white-space: nowrap;
}

.statement__track--ltr {
    animation: marqueeLeft 35s linear infinite;
}
.statement__track--rtl {
    animation: marqueeRight 28s linear infinite;
}
.statement__track--ltr-slow {
    animation: marqueeLeft 42s linear infinite;
}

@keyframes marqueeLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes marqueeRight {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

.statement__word {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.statement__word--outline {
    color: transparent;
    -webkit-text-stroke: 1px var(--white);
}

.statement__word--solid {
    color: var(--white);
    font-style: italic;
}

.statement__sep {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 8rem);
    color: var(--cream);
    font-style: italic;
}

.statement__photo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 4px solid var(--black);
    background: #1A1A1A;
    z-index: 5;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8);
}
.statement__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 1.2s var(--ease);
}
.statement__photo:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.statement__cta {
    text-align: center;
    margin-top: 4rem;
    padding: 0 var(--gutter);
}
.statement__cta-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--grey-soft);
    margin-bottom: 1rem;
}
.statement__cta-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--white);
    margin-bottom: 0;
    letter-spacing: 0.05em;
}

.gallery {
    background: var(--black);
    padding: 5rem var(--gutter) 7rem;
}

.gallery__grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: 300px;
    gap: 1.25rem;
    grid-template-areas:
        "tall  wide  wide"
        "tall  three four"
        "pano  pano  pano";
}

.gallery__item {
    position: relative;
    overflow: hidden;
    background: #1A1A1A;
}

.gallery__item--tall {
    grid-area: tall;
}
.gallery__item--wide {
    grid-area: wide;
}
.gallery__item:nth-child(3) {
    grid-area: three;
}
.gallery__item:nth-child(4) {
    grid-area: four;
}
.gallery__item--panorama {
    grid-area: pano;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease), filter 0.6s ease;
}
.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__cap {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.7) 100%);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.gallery__item:hover .gallery__cap {
    opacity: 1;
    transform: translateY(0);
}
.gallery__cap-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
}
.gallery__cap-meta {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
}

.gallery__item {
    cursor: pointer;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem var(--gutter);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox__content {
    max-width: 1000px;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    transform: scale(0.96);
    transition: transform 0.45s var(--ease-out);
}
.lightbox.is-open .lightbox__content {
    transform: scale(1);
}

.lightbox__img {
    max-width: 100%;
    max-height: 72vh;
    object-fit: contain;
    display: block;
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8);
}

.lightbox__cap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
}
.lightbox__cap-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
}
.lightbox__cap-meta {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream);
}

.lightbox__close {
    position: absolute;
    top: 1.8rem;
    right: 2rem;
    width: 52px;
    height: 52px;
    border: 1px solid var(--grey-line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: transparent;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    z-index: 2;
}
.lightbox__close:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: rotate(90deg);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: 1px solid var(--grey-line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: transparent;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    z-index: 2;
}
.lightbox__nav:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}
.lightbox__nav--prev { left: 2rem; }
.lightbox__nav--next { right: 2rem; }

.lightbox__counter {
    position: absolute;
    bottom: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--grey-mute);
}

@media (max-width: 720px) {
    .lightbox {
        padding: 4rem 1rem;
    }
    .lightbox__close {
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }
    .lightbox__nav {
        width: 44px;
        height: 44px;
    }
    .lightbox__nav--prev { left: 0.75rem; }
    .lightbox__nav--next { right: 0.75rem; }
    .lightbox__img {
        max-height: 70vh;
    }
}

.polaroid {
    background: var(--black);
    padding: 8rem 0;
    overflow: hidden;
}

.polaroid__content {
    max-width: 720px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 0 var(--gutter);
}

.polaroid__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.polaroid__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--grey-soft);
    margin-bottom: 2.5rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.carousel {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

.carousel__track {
    display: flex;
    gap: 1.5rem;
    padding: 1rem var(--gutter);
    cursor: grab;
    user-select: none;
    transition: transform 0.6s var(--ease);
    will-change: transform;
}
.carousel__track.is-dragging {
    cursor: grabbing;
    transition: none;
}

.carousel__slide {
    flex: 0 0 auto;
    width: 420px;
    max-width: 80vw;
}

.carousel__card {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    background: var(--cream-soft);
    padding: 16px 16px 48px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s var(--ease);
}
.carousel__card:hover {
    transform: translateY(-8px);
}
.carousel__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.carousel__caption {
    position: absolute;
    bottom: 16px;
    left: 0; right: 0;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: rgba(10, 10, 10, 0.6);
    text-transform: lowercase;
}

.carousel__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 var(--gutter);
}

.carousel__btn {
    width: 56px;
    height: 56px;
    border: 1px solid var(--grey-line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    flex-shrink: 0;
}
.carousel__btn:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}
.carousel__btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}
.carousel__btn:disabled:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--grey-line);
}

.carousel__dots {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}
.carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--grey-line);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s var(--ease);
}
.carousel__dot.is-active {
    background: var(--cream);
    width: 28px;
    border-radius: 4px;
}

.specs {
    background: var(--black);
    padding: 6rem var(--gutter);
    border-top: 1px solid var(--grey-line);
    border-bottom: 1px solid var(--grey-line);
}

.specs__inner {
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
}

.specs__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 4rem;
}
.specs__title em {
    font-style: italic;
    font-weight: 300;
    color: var(--cream);
    text-transform: none;
}

.specs__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--grey-line);
    max-width: 1100px;
    margin: 0 auto;
}

.specs__row {
    background: var(--black);
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}
.specs__label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--grey-soft);
}
.specs__value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.01em;
}

.contact {
    background: var(--black);
    padding: 8rem var(--gutter);
}

.contact__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact__intro {
    align-self: start;
}

.contact__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.contact__title em {
    font-style: italic;
    font-weight: 300;
    color: var(--cream);
    text-transform: none;
}

.contact__lead {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--grey-soft);
    margin-bottom: 3rem;
    max-width: 26rem;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact__info-item {
    display: flex;
    gap: 1.5rem;
    align-items: baseline;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--grey-line);
}
.contact__info-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--cream);
    min-width: 4.5rem;
}
.contact__info-item a,
.contact__info-item span:last-child {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 400;
}
.contact__info-item a:hover {
    color: var(--cream);
}

.contact__social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact__social a {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--grey-soft);
    transition: color 0.3s ease, gap 0.3s ease;
}
.contact__social a:hover {
    color: var(--white);
    gap: 1rem;
}
.contact__social a span {
    font-size: 1rem;
    color: var(--cream);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--grey-line);
    padding: 3rem 2.5rem;
    border-radius: 4px;
}

.form__field {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.form__field label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--cream);
}
.form__field input,
.form__field select,
.form__field textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--grey-line);
    padding: 0.7rem 0;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    outline: none;
    transition: border-color 0.3s ease;
    resize: vertical;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
    border-bottom-color: var(--cream);
}
.form__field select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23E8E1D5' fill='none' stroke-width='1.2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 12px;
}
.form__field select option {
    background: var(--black);
    color: var(--white);
}

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

.form__consent {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin: 1.5rem 0;
    cursor: pointer;
}
.form__consent input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    flex-shrink: 0;
    border: 1px solid var(--grey-line);
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.25s var(--ease);
}
.form__consent input[type="checkbox"]:checked {
    background: var(--cream);
    border-color: var(--cream);
}
.form__consent input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid var(--black);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.form__consent-text {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--grey-soft);
}
.form__consent-text a {
    color: var(--cream);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.form__consent-text a:hover {
    color: var(--white);
}

.form__status {
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s var(--ease);
}
.form__status--success,
.form__status--error {
    opacity: 1;
    max-height: 8rem;
    padding: 1rem 1.25rem;
    border-radius: 4px;
}
.form__status--success {
    background: rgba(232, 225, 213, 0.08);
    color: var(--cream);
    border-left: 2px solid var(--cream);
}
.form__status--error {
    background: rgba(220, 80, 80, 0.08);
    color: #E89090;
    border-left: 2px solid #E89090;
}

#submitBtn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.footer {
    background: var(--black);
    padding: 4rem var(--gutter) 2rem;
    border-top: 1px solid var(--grey-line);
}
.footer__inner {
    max-width: var(--container);
    margin: 0 auto;
}
.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--grey-line);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer__brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 0.2rem;
}
.footer__brand-line {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--white);
}
.footer__tagline {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--grey-soft);
}
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--grey-mute);
}
.footer__links {
    display: flex;
    gap: 2rem;
}
.footer__links a:hover {
    color: var(--white);
}

@media (max-width: 1024px) {
    .about__inner,
    .contact__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .work__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .work__card,
    .work__image {
        aspect-ratio: 4 / 3;
    }
    .specs__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .carousel__slide {
        width: 360px;
    }
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 260px;
        grid-template-areas:
            "tall  wide"
            "tall  wide"
            "three four"
            "pano  pano";
    }
    .gallery__item--tall { grid-area: tall; }
    .gallery__item--wide { grid-area: wide; }
    .gallery__item:nth-child(3) { grid-area: three; }
    .gallery__item:nth-child(4) { grid-area: four; }
    .gallery__item--panorama { grid-area: pano; }
}

@media (max-width: 720px) {
    .nav__menu { display: none; }
    .nav__burger { display: flex; }

    .hero {
        min-height: 100svh;
    }
    .hero__image img {
        object-position: 85% 25%;
    }
    .hero__overlay {
        padding: 4.5rem var(--gutter) 2rem;
    }
    .hero__meta {
        font-size: 0.62rem;
        padding: 0.5rem 0.8rem;
        gap: 0.5rem;
    }
    .hero__brand {
        min-width: 240px;
    }
    .hero__brand-line {
        font-size: 1.2rem;
    }

    .about {
        padding: 5rem var(--gutter);
    }
    .work {
        padding: 3rem var(--gutter) 5rem;
    }
    .work__card {
        aspect-ratio: auto;
        padding: 2.5rem 1.5rem;
    }

    .statement {
        padding: 2rem 0;
    }
    .statement__photo {
        width: 280px;
    }
    .statement__marquee--bottom {
        margin-top: -1.5rem;
    }

    .polaroid {
        padding: 5rem 0;
    }
    .carousel__slide {
        width: 280px;
    }
    .carousel__nav {
        gap: 1.2rem;
        margin-top: 2rem;
    }
    .carousel__btn {
        width: 48px;
        height: 48px;
    }

    .specs {
        padding: 4rem var(--gutter);
    }
    .specs__grid {
        grid-template-columns: 1fr 1fr;
    }
    .specs__title {
        margin-bottom: 2rem;
    }

    .contact {
        padding: 5rem var(--gutter);
    }
    .contact__form {
        padding: 2rem 1.5rem;
    }

    .gallery {
        padding: 3rem var(--gutter) 5rem;
    }
    .gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 360px;
        grid-template-areas: none;
        gap: 1rem;
    }
    .gallery__item--tall,
    .gallery__item--wide,
    .gallery__item:nth-child(3),
    .gallery__item:nth-child(4),
    .gallery__item--panorama {
        grid-area: auto;
    }
    .gallery__cap {
        opacity: 1;
        transform: translateY(0);
    }

    .footer__top,
    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* italic-Headlines Anne */
.hero__title-row--italic,.about__title-name,.statement__word--solid,.statement__sep,.specs__title em,.contact__title em{color:#F3D5DA !important;}

.strip-nav{background:#F3D5DA !important;}


/* About-Bild S/W-Hover + naeher + Kontrast nur S/W (Anne) */
.about__image img{filter:grayscale(1) contrast(1.32);transform:scale(1.2);transition:transform 1.2s var(--ease),filter .8s ease;}
.about__image:hover img{filter:grayscale(0) contrast(1);transform:scale(1.24);}
