@font-face {
    font-family: DM;
    src: url("/fonts/portfolio/dm-sans.ttf") format("truetype");
    font-weight: 400 700;
    font-display: swap;
}
:root {
    --navy: #003366;
    --ink: #122b40;
    --paper: #f6f3ec;
    --white: #fffdf8;
    --muted: #606a73;
    --line: #dcd6cc;
    --gold: #98723e;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font:
        15px/1.5 DM,
        Arial,
        sans-serif;
    -webkit-font-smoothing: antialiased;
}
a {
    color: inherit;
    text-decoration: none;
}
button,
select {
    font: inherit;
    color: inherit;
}
button {
    cursor: pointer;
}
button,
a {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
img {
    display: block;
    max-width: 100%;
}
button:disabled {
    opacity: 0.35;
    cursor: default;
}
[hidden] {
    display: none !important;
}
:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}
.shell {
    width: min(1320px, calc(100% - 32px));
    margin: auto;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}
.skip {
    position: fixed;
    top: -100px;
    left: 16px;
    background: white;
    padding: 16px;
    z-index: 100;
}
.skip:focus {
    top: 16px;
}
.header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #f6f3ecf5;
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}
.nav-inner {
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.logo {
    width: 98px;
    height: auto;
}
.nav,
.contact-nav.pill {
    display: none;
}
.nav a {
    min-height: 44px;
    align-items: center;
    font-size: 12px;
    white-space: nowrap;
}
.nav a[aria-current] {
    color: var(--navy);
    font-weight: 700;
    border-bottom: 2px solid var(--gold);
}
.pill {
    border: 1px solid var(--navy);
    border-radius: 30px;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 44px;
    background: var(--navy);
    color: white;
}
.menu-toggle {
    background: none;
    border: 0;
    min-height: 44px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.menu-icon {
    display: grid;
    gap: 5px;
    width: 21px;
}
.menu-icon i {
    height: 1px;
    background: var(--navy);
}
.mobile-nav {
    padding: 8px 16px 20px;
    max-height: calc(100dvh - 68px);
    overflow: auto;
}
.mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    border-bottom: 1px solid var(--line);
}
.mobile-nav a[aria-current] {
    color: var(--navy);
    font-weight: 700;
}
.hero {
    padding: 20px 0 24px;
}
.topline {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    margin-bottom: 22px;
    font-size: 10px;
    color: var(--muted);
}
.breadcrumb span {
    margin: 0 8px;
    color: var(--gold);
}
.proposal {
    font-size: 9px;
    display: flex;
    gap: 5px;
    align-items: center;
}
.proposal:before {
    content: "";
    background: var(--gold);
    width: 5px;
    height: 5px;
    border-radius: 50%;
}
.eyebrow {
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: 0.16em;
    color: var(--gold);
    font-weight: 700;
    margin: 0 0 10px;
}
h1 {
    font-weight: 500;
    letter-spacing: -0.055em;
    font-size: clamp(38px, 9vw, 74px);
    line-height: 1.05;
    color: var(--navy);
    margin: 0;
}
h1 em {
    font-family: Georgia, serif;
    color: var(--gold);
    font-weight: 400;
}
.hero-side {
    max-width: 320px;
    font-size: 12px;
    color: var(--muted);
    margin: 14px 0 0;
}
.hero-side p {
    margin: 0;
    line-height: 1.7;
}
.hero-meta {
    display: none;
}
.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--brand-bg, #e4e8ed);
    color: var(--navy);
    font-size: 15px;
    font-weight: 600;
}
.avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.avatar.reny img {
    object-fit: cover;
}
.brand-collections {
    display: grid;
    gap: 32px;
}
.brand-collection {
    min-width: 0;
    border-top: 1px solid var(--line);
}
.profile {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    column-gap: 12px;
    row-gap: 2px;
    padding: 20px 0 16px;
}
.profile .avatar {
    width: 44px;
    height: 44px;
}
.profile h2 {
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -0.035em;
    margin: 0;
    color: var(--navy);
    font-weight: 500;
}
.profile p {
    font-size: 10px;
    color: var(--muted);
    margin: 4px 0 0;
}
.profile-link {
    grid-column: 2;
    justify-self: start;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    border-bottom: 1px solid var(--gold);
    gap: 14px;
    max-width: 100%;
    overflow-wrap: anywhere;
}
.feed-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 4px;
}
.piece {
    min-width: 0;
}
.piece-button {
    border: 0;
    background: none;
    padding: 0;
    display: block;
    width: 100%;
    text-align: left;
}
.media {
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
    background: #e9e5df;
    border-radius: 2px;
}
.media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.media.contain {
    background: #efefed;
}
.media.contain img {
    object-fit: contain;
}
.piece-button:hover .media img {
    transform: scale(1.035);
}
.format-tag {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #112b40a6;
    color: white;
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 3px 6px;
    font-size: 9px;
    line-height: 1.3;
}
.piece-caption {
    padding: 8px 2px 0;
}
.piece-caption h3 {
    font-size: 9px;
    line-height: 1.35;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.piece-caption p {
    font-size: 8px;
    line-height: 1.4;
    color: var(--muted);
    margin: 3px 0 0;
}
.feed-end {
    text-align: center;
    font-size: 10px;
    color: var(--muted);
    padding: 30px 0 0;
}
.feed-end span {
    display: block;
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 8px;
}
.cta {
    background: var(--navy);
    color: var(--paper);
    border-radius: 3px;
    padding: 30px 23px;
    margin-top: 40px;
}
.cta .eyebrow {
    color: #d9b787;
}
.cta h2 {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.035em;
    margin: 0 0 18px;
}
.cta .pill {
    background: var(--paper);
    color: var(--navy);
    border-color: var(--paper);
}
.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 30px 0;
    flex-wrap: wrap;
}
.footer img {
    width: 80px;
}
.footer p,
.footer a {
    font-size: 10px;
    color: var(--muted);
}
.proposal-note {
    font-size: 10px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    padding: 18px 0 28px;
    line-height: 1.7;
}
.proposal-note strong {
    font-weight: 500;
    color: var(--navy);
}
dialog {
    border: 0;
    padding: 0;
    background: var(--paper);
    color: var(--ink);
    width: calc(100% - 24px);
    max-width: 880px;
    max-height: calc(100dvh - 24px);
    overflow: auto;
    border-radius: 5px;
    box-shadow: 0 20px 100px #0005;
}
dialog::backdrop {
    background: #001426cc;
    backdrop-filter: blur(6px);
}
.dialog-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    position: sticky;
    top: 0;
    background: var(--paper);
    z-index: 3;
    border-bottom: 1px solid var(--line);
    gap: 12px;
}
.dialog-top p {
    font-size: 11px;
    margin: 0;
}
.dialog-close,
.round-button {
    width: 44px;
    height: 44px;
    flex: none;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    background: none;
    border-radius: 50%;
    font-size: 20px;
}
.dialog-main {
    padding: 14px;
}
.dialog-visual {
    width: 100%;
    max-width: 390px;
    margin: auto;
}
.dialog-visual .media {
    aspect-ratio: 4/5;
    background: #e9e5df;
}
.dialog-visual .media img {
    object-fit: contain;
}
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}
.slide-counter {
    font-size: 12px;
    min-width: 38px;
    text-align: center;
}
.dialog-details {
    padding: 22px 4px 8px;
}
.detail-brand {
    font-size: 10px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.dialog-details h2 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.035em;
    color: var(--navy);
    margin: 10px 0 20px;
}
.detail-caption {
    font-size: 13px;
    line-height: 1.8;
    color: var(--muted);
    white-space: pre-line;
}
.detail-tags {
    font-size: 11px;
    color: var(--muted);
    padding: 12px 0;
    border-block: 1px solid var(--line);
    margin: 20px 0;
}
.text-link {
    font-size: 12px;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-height: 44px;
    border-bottom: 1px solid var(--gold);
}
.instagram-pending {
    font-size: 10px;
    color: var(--muted);
    margin-top: 16px;
}
@media (min-width: 600px) {
    .brand-collections {
        gap: 40px;
    }
    .profile {
        grid-template-columns: 48px minmax(0, 1fr) auto;
        padding: 22px 0 20px;
    }
    .profile .avatar {
        width: 48px;
        height: 48px;
    }
    .profile-link {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
    }
    .shell {
        width: min(1320px, calc(100% - 64px));
    }
    .hero {
        padding: 25px 0 32px;
    }
    .hero-main {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 30px;
    }
    .hero-side {
        max-width: 245px;
        margin: 0;
        font-size: 13px;
    }
    .hero-meta {
        display: flex;
        font-size: 10px;
        letter-spacing: 0.09em;
        margin-top: 20px;
        gap: 16px;
        color: var(--gold);
    }
    .feed-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 23px 9px;
    }
    .piece-caption h3 {
        font-size: 11px;
    }
    .piece-caption p {
        font-size: 9px;
    }
    .cta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        padding: 38px;
    }
    .cta h2 {
        margin: 0;
        font-size: 36px;
    }
}
@media (min-width: 1000px) {
    .nav-inner {
        height: 80px;
    }
    .logo {
        width: 103px;
    }
    .nav {
        display: flex;
        gap: 20px;
    }
    .nav a {
        display: inline-flex;
    }
    .contact-nav.pill {
        display: inline-flex;
    }
    .menu-toggle,
    .mobile-nav {
        display: none !important;
    }
    .hero {
        padding: 28px 0 36px;
    }
    .topline {
        margin-bottom: 26px;
        font-size: 11px;
    }
    .proposal {
        font-size: 10px;
    }
    h1 {
        font-size: 72px;
    }
    .hero-side {
        max-width: 325px;
        font-size: 14px;
    }
    .feed-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 25px 10px;
    }
    .piece-caption {
        padding-top: 9px;
    }
    .piece-caption h3 {
        font-size: 11px;
    }
    .format-tag {
        top: 9px;
        right: 9px;
        font-size: 10px;
        padding: 4px 7px;
    }
    .profile h2 {
        font-size: 22px;
    }
    .profile-link {
        font-size: 12px;
    }
    .dialog-main {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 28px;
        padding: 24px;
    }
    .dialog-details {
        padding: 12px 0;
    }
    .cta {
        padding: 42px 45px;
    }
    .cta h2 {
        font-size: 42px;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *:before,
    *:after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

.media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #001426;
}
.dialog-visual .media:has(video) {
    aspect-ratio: auto;
}
.dialog-visual video {
    max-height: 60dvh;
    min-height: 200px;
}
.detail-caption {
    overflow-wrap: anywhere;
}
.video-error {
    font-size: 12px;
    padding: 12px;
    color: var(--ink);
}
