/* Public gift discovery uses the fixed Crimory identity. */
body.cr-public-site[data-page="gift-discovery"] .gift-display h2 {
    color: var(--gift-ink);
}
body.cr-public-site[data-page="gift-discovery"] .gift-option ul {
    list-style: disc;
}
.gift-discovery {
    --gift-red: var(--cr-palette-crimory-accent, #9c4f46);
    --gift-gold: var(--cr-palette-crimory-metal, #d8ac59);
    --gift-paper: var(--cr-palette-crimory-paper, #f0dfc2);
    --gift-ink: var(--cr-palette-crimory-paper-ink, #34251a);
}
.gift-discovery .architecture-hero-grid {
    align-items: center;
    gap: clamp(32px, 6vw, 88px);
}
.gift-display {
    position: relative;
    max-width: 440px;
    margin: 0 auto;
    padding: 34px;
    color: var(--gift-ink);
    background: var(--gift-paper);
    border: 1px solid var(--gift-gold);
    border-radius: 5px;
    box-shadow: 0 24px 70px #0005;
}
.gift-display::before {
    content: '';
    position: absolute;
    inset: 11px;
    border: 1px solid #9c4f4666;
    pointer-events: none;
}
.gift-display-brand {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    font:
        700 10px/1.5 Manrope,
        sans-serif;
    letter-spacing: 0.14em;
    color: #824038;
}
.gift-display img {
    display: block;
    width: 144px;
    height: 108px;
    margin: 22px auto;
}
.gift-display h2 {
    font:
        400 clamp(32px, 3.4vw, 44px) / 1.1 'Playfair Display',
        Georgia,
        serif;
    letter-spacing: -0.035em;
    margin: 0 0 25px;
    color: var(--gift-ink);
}
.gift-display-note {
    padding: 20px 0;
    border-top: 1px solid #9c4f4655;
    font:
        italic 19px/1.55 'Playfair Display',
        Georgia,
        serif;
}
.gift-display-foot {
    margin-top: 12px;
    padding-top: 15px;
    border-top: 1px dashed #9c4f4666;
    font-size: 11px;
    color: #665448;
}
.gift-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.gift-option {
    display: flex;
    flex-direction: column;
    border: 1px solid #d8ac5938;
    padding: 32px;
    border-radius: 16px;
    background: #211611;
}
.gift-option--featured {
    border-top: 3px solid var(--gift-red);
}
.gift-option h3 {
    font:
        400 30px/1.2 'Playfair Display',
        Georgia,
        serif;
    margin: 12px 0 15px;
}
.gift-option p,
.gift-option li {
    color: #c6b6a6;
    line-height: 1.7;
}
.gift-option ul {
    padding-left: 18px;
    margin: 20px 0 28px;
}
.gift-option .architecture-actions {
    margin-top: auto;
}
.gift-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    counter-reset: gift-step;
}
.gift-step {
    border-top: 1px solid #9c4f4655;
    padding-top: 24px;
}
.gift-step::before {
    counter-increment: gift-step;
    content: '0' counter(gift-step);
    display: block;
    color: #824038;
    font:
        400 36px/1 Georgia,
        serif;
    margin-bottom: 15px;
}
.gift-step h3 {
    font-size: 19px;
    margin-bottom: 10px;
}
.gift-step p {
    line-height: 1.7;
}
.gift-help {
    max-width: 820px;
    margin: auto;
}
.gift-help details {
    border-bottom: 1px solid #d8ac5933;
    padding: 22px 0;
}
.gift-help summary {
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
}
.gift-help details p {
    color: #c6b6a6;
    margin: 16px 0 0;
    line-height: 1.8;
}
.gift-help a {
    color: var(--gift-gold);
    text-decoration: underline;
    text-underline-offset: 4px;
}
.gift-home {
    padding: clamp(45px, 6vw, 80px) 24px;
    background: #211611;
    border-block: 1px solid #d8ac5933;
}
.gift-home-inner {
    max-width: 1080px;
    margin: auto;
    display: grid;
    grid-template-columns: 160px 1fr auto;
    align-items: center;
    gap: 36px;
}
.gift-home img {
    width: 160px;
    height: 120px;
}
.gift-home h2 {
    font:
        400 clamp(27px, 3.5vw, 40px) / 1.15 'Playfair Display',
        Georgia,
        serif;
    color: #f0dfc2;
    margin: 8px 0 12px;
}
.gift-home p {
    color: #c6b6a6;
    max-width: 570px;
    line-height: 1.7;
}
.gift-home a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    padding: 12px 22px;
    border-radius: 9px;
    background: #d8ac59;
    color: #34251a;
    font-weight: 700;
}
@media (max-width: 800px) {
    .gift-options,
    .gift-steps {
        grid-template-columns: 1fr;
    }
    .gift-home-inner {
        grid-template-columns: 90px 1fr;
        gap: 20px;
    }
    .gift-home img {
        width: 90px;
        height: auto;
    }
    .gift-home a {
        grid-column: 1/-1;
        justify-self: start;
    }
}
@media (max-width: 430px) {
    .gift-display,
    .gift-option {
        padding: 26px;
    }
    .gift-display-brand {
        letter-spacing: 0.08em;
    }
    .gift-home-inner {
        grid-template-columns: 1fr;
    }
}
