:root {
    --bg: #0d1110;
    --panel: #151a18;
    --panel-soft: #1b211f;
    --line: rgba(224, 213, 185, 0.18);
    --text: #f4efe4;
    --muted: #aaa295;
    --gold: #c9a86a;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--bg);
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(201, 168, 106, 0.15), transparent 34rem),
        linear-gradient(135deg, #0b0f0e 0%, #121715 52%, #070908 100%);
}

body.age-locked {
    overflow: hidden;
}

body.lightbox-open {
    overflow: hidden;
}

img,
video {
    max-width: 100%;
}

.eyebrow {
    margin: 0 0 0.65rem;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin-top: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -0.045em;
}

.age-gate[hidden] {
    display: none;
}

.age-gate.is-hidden {
    display: none;
}

.age-gate {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background:
        radial-gradient(circle at center, rgba(201, 168, 106, 0.14), transparent 26rem),
        rgba(7, 9, 8, 0.94);
    backdrop-filter: blur(1rem);
}

.age-gate-card {
    width: min(34rem, 100%);
    padding: clamp(1.5rem, 5vw, 2.6rem);
    border: 1px solid var(--line);
    border-radius: 1.4rem;
    background: rgba(21, 26, 24, 0.95);
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.45);
}

.age-logo {
    display: block;
    width: 5.2rem;
    height: auto;
    margin-bottom: 1.2rem;
    border-radius: 0.9rem;
}

.age-gate-card h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.25rem, 8vw, 4rem);
}

.age-gate-card p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.age-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    margin-top: 1.4rem;
}

.age-actions button,
.age-actions a {
    min-height: 3rem;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    font-weight: 850;
    text-decoration: none;
}

.age-actions button {
    border: 0;
    color: #111;
    background: var(--gold);
    cursor: pointer;
}

.age-actions a {
    color: var(--muted);
    border: 1px solid var(--line);
}

.site-header {
    position: sticky;
    z-index: 20;
    top: 0;
    display: flex;
    justify-content: center;
    padding: 0.65rem 1rem;
    border-bottom: 1px solid rgba(224, 213, 185, 0.1);
    background: rgba(13, 17, 16, 0.78);
    backdrop-filter: blur(1rem);
}

.brand-mark {
    display: inline-flex;
    gap: 0.75rem;
    align-items: center;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-decoration: none;
    text-transform: uppercase;
}

.brand-mark img {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.65rem;
    object-fit: contain;
}

.membership-filter {
    position: sticky;
    z-index: 18;
    top: 4.05rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.7rem 1rem;
    border-bottom: 1px solid rgba(224, 213, 185, 0.09);
    background: rgba(13, 17, 16, 0.7);
    backdrop-filter: blur(1rem);
}

.membership-filter a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.15rem;
    padding: 0.44rem 0.78rem;
    border: 1px solid rgba(201, 168, 106, 0.28);
    border-radius: 999px;
    color: rgba(244, 239, 228, 0.78);
    background: rgba(244, 239, 228, 0.025);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.membership-filter a:hover,
.membership-filter a.is-active {
    color: #111;
    border-color: rgba(201, 168, 106, 0.76);
    background: var(--gold);
}

.membership-filter a:hover {
    transform: translateY(-1px);
}

main {
    width: min(92rem, calc(100% - 2rem));
    margin: 0 auto;
    padding: 1.2rem 0 4rem;
}

.stories-strip,
.profiles-section {
    margin-top: 1.8rem;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.stories-row {
    display: flex;
    gap: 0.85rem;
    padding: 0.2rem 0.05rem 0.75rem;
    overflow-x: auto;
}

.story-card {
    position: relative;
    flex: 0 0 7.1rem;
    height: 10.2rem;
    border: 1px solid rgba(201, 168, 106, 0.35);
    border-radius: 1.15rem;
    background: rgba(244, 239, 228, 0.04);
    overflow: hidden;
}

.story-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-card span {
    position: absolute;
    inset: auto 0 0;
    padding: 1.7rem 0.65rem 0.65rem;
    color: var(--text);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent);
    font-size: 0.78rem;
    font-weight: 800;
}

.empty-note {
    margin: 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    color: var(--muted);
    background: rgba(244, 239, 228, 0.035);
}

.membership-empty-note {
    margin-top: 1rem;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.profile-card {
    color: inherit;
    min-width: 0;
    text-decoration: none;
}

.profile-image {
    position: relative;
    aspect-ratio: 4 / 5;
    border: 1px solid var(--line);
    border-radius: 1.1rem;
    background: rgba(244, 239, 228, 0.04);
    overflow: hidden;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.profile-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.profile-card:hover .profile-image img {
    transform: scale(1.035);
}

.profile-card:hover .profile-image {
    border-color: rgba(209, 176, 108, 0.92);
    box-shadow:
        0 0 0 1px rgba(209, 176, 108, 0.28),
        0 1.2rem 2.8rem rgba(0, 0, 0, 0.28);
}

.profile-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 2.4rem 0.85rem 0.85rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.55) 48%, transparent);
}

.profile-overlay h3 {
    display: -webkit-box;
    margin: 0 0 0.18rem;
    color: var(--text);
    font-size: clamp(0.68rem, 1.05vw, 0.95rem);
    line-height: 1.12;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.profile-overlay p {
    display: -webkit-box;
    margin: 0;
    color: rgba(244, 239, 228, 0.78);
    font-size: clamp(0.56rem, 0.72vw, 0.72rem);
    line-height: 1.2;
    font-weight: 700;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-indicator {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.05rem;
    height: 2.05rem;
    border: 1px solid rgba(201, 168, 106, 0.72);
    border-radius: 999px;
    color: var(--gold);
    background: rgba(4, 7, 5, 0.72);
    box-shadow: 0 0.9rem 2.2rem rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.video-indicator svg {
    display: block;
    width: 1.08rem;
    height: 1.08rem;
    fill: currentColor;
}

.membership-pill {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    padding: 0.36rem 0.65rem;
    border: 1px solid rgba(201, 168, 106, 0.5);
    border-radius: 999px;
    color: #111;
    background: var(--gold);
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 2;
}

.profile-card footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.65rem 0.15rem 0;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 400;
}

.profile-price {
    color: var(--gold);
    white-space: nowrap;
}

.availability-dot {
    position: absolute;
    right: 0.9rem;
    bottom: 0.9rem;
    z-index: 3;
    width: 0.82rem;
    height: 0.82rem;
    border: 1px solid rgba(221, 255, 223, 0.72);
    border-radius: 999px;
    background: #46d36f;
    box-shadow:
        0 0 0 0.28rem rgba(7, 9, 8, 0.62),
        0 0 0 0.42rem rgba(70, 211, 111, 0.16),
        0 0 1.25rem rgba(70, 211, 111, 0.52);
}

.empty-panel {
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: 1.4rem;
    color: var(--muted);
    background: rgba(244, 239, 228, 0.035);
}

.empty-panel h3 {
    margin-bottom: 0.5rem;
    color: var(--text);
    font-size: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 1.2rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-decoration: none;
    text-transform: uppercase;
}

.back-link:hover {
    color: var(--text);
}

.public-profile-detail {
    position: relative;
    isolation: isolate;
    padding-top: 1.4rem;
}

.public-profile-detail::before {
    content: "";
    position: absolute;
    z-index: -2;
    top: -2rem;
    right: max(-2rem, -4vw);
    left: max(-2rem, -4vw);
    height: 34rem;
    background:
        linear-gradient(180deg, rgba(13, 17, 16, 0.16), var(--bg) 92%),
        linear-gradient(90deg, rgba(13, 17, 16, 0.72), rgba(13, 17, 16, 0.28), rgba(13, 17, 16, 0.88)),
        var(--profile-backdrop-image, none) center 24% / cover no-repeat;
    filter: blur(10px);
    opacity: 0.42;
    transform: scale(1.02);
    pointer-events: none;
}

.public-profile-detail::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -2rem max(-2rem, -4vw) auto;
    height: 36rem;
    background: radial-gradient(circle at 36% 18%, rgba(201, 168, 106, 0.13), transparent 28rem);
    pointer-events: none;
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(15rem, 21rem) minmax(0, 1fr);
    max-width: 76rem;
    gap: clamp(1.25rem, 3.2vw, 2.5rem);
    align-items: start;
    margin-right: auto;
    margin-left: auto;
    padding-right: clamp(1rem, 3vw, 2.4rem);
    padding-left: clamp(1rem, 3vw, 2.4rem);
}

.detail-cover {
    position: relative;
    aspect-ratio: 4 / 5;
    min-height: 0;
    margin: 0 0 0 auto;
    border: 1px solid rgba(201, 168, 106, 0.45);
    border-radius: 1.35rem;
    background: rgba(244, 239, 228, 0.035);
    overflow: hidden;
    box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.22);
}

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

.detail-availability {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0.55rem 0.8rem;
    border: 1px solid rgba(221, 255, 223, 0.42);
    border-radius: 999px;
    color: #dfffe4;
    background: rgba(5, 9, 7, 0.72);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.detail-availability span {
    width: 0.72rem;
    height: 0.72rem;
    border: 1px solid rgba(221, 255, 223, 0.72);
    border-radius: 999px;
    background: #46d36f;
    box-shadow:
        0 0 0 0.2rem rgba(70, 211, 111, 0.14),
        0 0 1rem rgba(70, 211, 111, 0.52);
}

.detail-summary {
    padding: clamp(1.1rem, 2.4vw, 1.65rem);
    border: 1px solid var(--line);
    border-radius: 1.35rem;
    background: rgba(244, 239, 228, 0.028);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.detail-summary h1 {
    max-width: 44rem;
    margin-bottom: 0.85rem;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(2.15rem, 4.6vw, 4rem);
    font-weight: 300;
    letter-spacing: -0.035em;
    line-height: 0.94;
}

.detail-info-row,
.detail-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0;
    margin-top: 1rem;
}

.detail-info-row span,
.detail-info-row a,
.detail-metrics span {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: rgba(244, 239, 228, 0.86);
    background: transparent;
    font-size: 0.88rem;
    font-weight: 750;
    text-decoration: none;
}

.detail-info-row span:not(:last-child)::after,
.detail-info-row a:not(:last-child)::after,
.detail-metrics span:not(:last-child)::after {
    content: "·";
    margin: 0 0.65rem;
    color: rgba(201, 168, 106, 0.58);
}

.detail-info-row span:first-child {
    color: var(--gold);
}

.detail-info-row a:hover {
    color: var(--gold);
}

.detail-metrics {
    padding-top: 1rem;
    border-top: 1px solid rgba(224, 213, 185, 0.12);
}

.detail-metrics span {
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.detail-description {
    margin-top: 1.4rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(224, 213, 185, 0.12);
}

.detail-description p {
    max-width: 58rem;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    font-weight: 400;
    line-height: 1.8;
}

.detail-tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.65rem;
    margin-top: 1rem;
    color: rgba(244, 239, 228, 0.82);
    font-size: 0.82rem;
    font-weight: 400;
}

.detail-language-group {
    margin-top: 0.55rem;
    color: rgba(201, 168, 106, 0.9);
}

.detail-public-tags {
    margin-top: 0.55rem;
    color: rgba(244, 239, 228, 0.66);
}

.detail-tag-group span:not(:last-child)::after {
    content: ",";
}

.detail-tag-lines {
    display: grid;
    gap: 0.35rem;
    margin-top: 0.75rem;
    color: rgba(244, 239, 228, 0.72);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.detail-tag-lines p {
    margin: 0;
}

.detail-tag-lines span {
    color: rgba(201, 168, 106, 0.92);
}

.detail-contact-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
    gap: clamp(0.8rem, 3vw, 2rem);
    align-items: center;
    margin-top: 1.4rem;
    padding: clamp(1.1rem, 2.8vw, 1.7rem) 0;
    border-top: 1px solid rgba(224, 213, 185, 0.08);
    border-bottom: 1px solid rgba(224, 213, 185, 0.08);
    background: rgba(7, 9, 8, 0.26);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.detail-contact-item {
    display: inline-flex;
    gap: 0.85rem;
    align-items: center;
    justify-content: center;
    min-width: 0;
    color: rgba(244, 239, 228, 0.74);
    font-size: clamp(0.85rem, 1.35vw, 1.05rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    text-decoration: none;
    text-transform: uppercase;
}

.detail-contact-item:hover {
    color: var(--text);
}

.detail-contact-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    color: rgba(201, 168, 106, 0.82);
}

.detail-contact-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.detail-share-icon {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    color: #111;
    background: var(--gold);
}

.detail-share-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.detail-gallery {
    max-width: 68rem;
    margin-top: 2rem;
    margin-right: auto;
    margin-left: auto;
    padding-right: clamp(1rem, 4vw, 3.2rem);
    padding-left: clamp(1rem, 4vw, 3.2rem);
}

.detail-gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(224, 213, 185, 0.12);
}

.detail-gallery-tabs button {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 2.55rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid rgba(224, 213, 185, 0.16);
    border-radius: 999px;
    color: rgba(244, 239, 228, 0.66);
    background: rgba(244, 239, 228, 0.035);
    cursor: pointer;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.detail-gallery-tabs button:hover,
.detail-gallery-tabs button.is-active {
    border-color: rgba(201, 168, 106, 0.72);
    color: var(--gold);
    background: rgba(201, 168, 106, 0.08);
}

.detail-gallery-tabs button span {
    display: inline-grid;
    place-items: center;
    min-width: 1.4rem;
    height: 1.4rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    color: #111;
    background: rgba(201, 168, 106, 0.86);
    font-size: 0.68rem;
    letter-spacing: 0;
}

.detail-gallery-panel {
    margin-top: 1rem;
}

.detail-gallery-panel[hidden] {
    display: none;
}

.detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 0;
}

.detail-video-grid {
    margin-top: 0;
}

.detail-gallery-item {
    position: relative;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 1.05rem;
    background: rgba(244, 239, 228, 0.035);
    overflow: hidden;
}

.detail-gallery-button {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: zoom-in;
}

.detail-gallery-item img,
.detail-gallery-item video {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.detail-gallery-item video {
    background: #050706;
}

.authenticity-seal {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 2.1rem;
    padding: 0.32rem 0.62rem 0.32rem 0.42rem;
    border: 1px solid rgba(201, 168, 106, 0.78);
    border-radius: 999px;
    color: var(--gold);
    background: rgba(7, 9, 8, 0.68);
    box-shadow: 0 0.7rem 1.5rem rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(10px);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.authenticity-seal svg {
    flex: 0 0 auto;
    width: 1.15rem;
    height: 1.15rem;
    fill: currentColor;
}

.detail-cover-seal {
    min-height: 2.35rem;
    padding-inline: 0.5rem 0.72rem;
}

.public-lightbox[hidden] {
    display: none;
}

.public-lightbox {
    position: fixed;
    z-index: 1200;
    inset: 0;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 3vw, 2rem);
    background: rgba(5, 7, 6, 0.92);
    backdrop-filter: blur(14px);
}

.public-lightbox-frame {
    display: grid;
    gap: 0.8rem;
    width: min(72rem, 100%);
    margin: 0;
    justify-items: center;
}

.public-lightbox-frame img {
    display: block;
    max-width: min(100%, 72rem);
    max-height: 82vh;
    border: 1px solid rgba(201, 168, 106, 0.55);
    border-radius: 1rem;
    object-fit: contain;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.52);
}

.public-lightbox-frame figcaption {
    color: var(--muted);
    font-size: 0.85rem;
}

.public-lightbox-close,
.public-lightbox-nav {
    position: fixed;
    border: 1px solid rgba(201, 168, 106, 0.36);
    border-radius: 999px;
    color: var(--gold);
    background: rgba(13, 17, 16, 0.78);
    font-weight: 800;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.public-lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.8rem;
    line-height: 1;
}

.public-lightbox-nav {
    top: 50%;
    width: 3rem;
    height: 3rem;
    font-size: 2.2rem;
    transform: translateY(-50%);
}

.public-lightbox-prev {
    left: 1rem;
}

.public-lightbox-next {
    right: 1rem;
}

.public-lightbox-close:hover,
.public-lightbox-nav:hover {
    border-color: rgba(201, 168, 106, 0.75);
    color: #111;
    background: var(--gold);
}

@media (max-width: 1100px) {
    .profiles-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    main {
        width: min(100% - 1rem, 92rem);
        padding-top: 1rem;
    }

    .profiles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .profile-overlay {
        padding: 2.2rem 0.72rem 0.72rem;
    }

    .brand-mark span {
        display: none;
    }

    .detail-hero {
        grid-template-columns: 1fr;
    }

    .detail-cover {
        aspect-ratio: 4 / 5;
    }

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

    .authenticity-seal {
        top: 0.55rem;
        right: 0.55rem;
        min-height: 1.85rem;
        padding: 0.28rem 0.48rem 0.28rem 0.36rem;
        font-size: 0.58rem;
        letter-spacing: 0.08em;
    }

    .authenticity-seal svg {
        width: 1rem;
        height: 1rem;
    }

    .detail-contact-bar {
        grid-template-columns: 1fr;
        justify-items: start;
        padding-inline: 1rem;
    }

    .detail-contact-item {
        justify-content: flex-start;
    }
}

@media (max-width: 460px) {
    .profiles-grid {
        grid-template-columns: 1fr;
    }

    .detail-gallery-grid {
        grid-template-columns: 1fr;
    }

    .story-card {
        flex-basis: 6.4rem;
        height: 9.25rem;
    }
}
