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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Montserrat", system-ui, sans-serif;
    font-weight: 300;
    color: #e8e4dc;
    background: #080808;
    background-image:
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(201, 162, 39, 0.08), transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(201, 162, 39, 0.05), transparent 45%);
}

.gm-landing {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
}

.gm-wrap {
    width: 100%;
    max-width: 1180px;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.1fr);
    gap: 3rem 4rem;
    align-items: center;
}

.gm-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gm-main-frame {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.35);
    box-shadow:
        0 0 0 1px rgba(201, 162, 39, 0.1),
        0 24px 48px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.gm-main-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 60%, rgba(8, 8, 8, 0.4) 100%);
    z-index: 1;
}

.gm-main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.35s ease;
}

.gm-main-photo.is-fading {
    opacity: 0.4;
}

.gm-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.gm-thumb {
    aspect-ratio: 1;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 3px;
    background: #141414;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.gm-thumb:hover:not(:disabled) {
    border-color: rgba(201, 162, 39, 0.5);
    transform: translateY(-2px);
}

.gm-thumb.is-active {
    border-color: #c9a227;
    box-shadow: 0 0 16px rgba(201, 162, 39, 0.25);
}

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

.gm-thumb--empty,
.gm-thumb:disabled {
    cursor: default;
    opacity: 0.5;
}

.gm-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 0.75rem;
    color: rgba(201, 162, 39, 0.4);
}

.gm-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #121212;
    color: rgba(232, 228, 220, 0.5);
    text-align: center;
    padding: 1.5rem;
}

.gm-placeholder small {
    font-size: 0.7rem;
    color: rgba(201, 162, 39, 0.45);
}

.gm-content {
    padding: 0.5rem 0;
}

.gm-eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #c9a227;
    font-weight: 500;
}

.gm-headline {
    margin: 0 0 1.75rem;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    line-height: 1.2;
    color: #f5f0e6;
    letter-spacing: 0.02em;
}

.gm-line {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(232, 228, 220, 0.82);
}

.gm-line--gold {
    color: #d4af37;
    font-weight: 400;
}

.gm-cta {
    margin: 1.5rem 0 2rem;
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(232, 228, 220, 0.7);
    max-width: 36ch;
}

.gm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: #0a0a0a;
    background: linear-gradient(135deg, #e8c547 0%, #c9a227 45%, #a8841f 100%);
    border: none;
    border-radius: 2px;
    box-shadow: 0 4px 24px rgba(201, 162, 39, 0.35);
    transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease;
}

.gm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 162, 39, 0.45);
    filter: brightness(1.05);
}

.gm-btn:active {
    transform: translateY(0);
}

.gm-landing--fallback .gm-wrap--narrow {
    max-width: 720px;
    grid-template-columns: 1fr;
}

.gm-post h1 {
    font-family: "Cormorant Garamond", Georgia, serif;
    color: #f5f0e6;
}

.gm-post-body {
    line-height: 1.7;
    color: rgba(232, 228, 220, 0.85);
}

@media (max-width: 900px) {
    .gm-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 480px;
    }

    .gm-content {
        text-align: center;
    }

    .gm-cta {
        margin-left: auto;
        margin-right: auto;
    }
}
