/* ═══════════════════════════════════════════════════════════════
   HIDDEN DIAMONDS — Page Stylesheet
   Brand: MONÈRA Design System
   Typography: Cormorant Garamond (headings) + Inter (body)
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
    --hd-navy: #022F38;
    --hd-dark-navy: #011C22;
    --hd-deep-teal: #063844;
    --hd-gold: #CDA77B;
    --hd-gold-dark: #b08c5d;
    --hd-warm-white: #F8F7F4;
    --hd-text-dark: #112228;
    --hd-muted: #68757A;
    --hd-border: rgba(205, 167, 123, 0.25);
    --hd-card-bg: #ffffff;
    --hd-shadow: 0 4px 24px rgba(2, 47, 56, 0.07);
    --hd-shadow-lg: 0 8px 40px rgba(2, 47, 56, 0.11);
    --hd-radius: 16px;
    --hd-radius-sm: 10px;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', sans-serif;
}

/* ════════════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════════════ */

.hd-hero {
    position: relative;
    height: 820px;
    overflow: hidden;
    background-image: url('/images/hidden-diamond/hero-women.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--hd-warm-white);
}

    /* HERO OVERLAY */
    .hd-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( to right, rgba(248,247,244,0.96) 0%, rgba(248,247,244,0.92) 22%, rgba(248,247,244,0.0) 45%, rgba(248,247,244,0.0) 65%, rgba(248,247,244,0.94) 82%, rgba(248,247,244,0.98) 100% );
        z-index: 1;
    }

/* CONTENT LAYER */
.hd-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 57% 26%;
    justify-content: space-between;
    align-items: start;
    min-height: 100vh;
}

/* LEFT PANEL */
.hd-hero__text {
    padding: 72px 48px 60px 6%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* RIGHT QUOTE PANEL */
.hd-hero__quote-col {
    padding: 72px 5% 60px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* TITLE */
.hd-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 6vw, 6.5rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: var(--hd-navy);
    margin-bottom: 22px;
}

/* SUBTITLE */
.hd-hero__subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--hd-gold);
    margin-bottom: 12px;
}

.hd-hero__divider {
    margin-bottom: 28px;
}

/* DESCRIPTION */
.hd-hero__desc {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--hd-muted);
    margin-bottom: 40px;
}

/* BUTTONS */
.hd-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* QUOTE */
.hd-hero__quote {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2vw, 2.6rem);
    font-weight: 600;
    line-height: 1.35;
    color: var(--hd-navy);
    margin: 0 0 34px;
}

/* QUOTE MARK */
.hd-hero__quote-mark {
    display: block;
    font-size: 4rem;
    line-height: 0.7;
    color: var(--hd-gold);
    margin-bottom: 20px;
}

/* DIVIDER */
.hd-hero__quote-diamond {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .hd-hero__quote-diamond::before,
    .hd-hero__quote-diamond::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--hd-gold);
        opacity: 0.45;
    }

/* MOBILE */
@media (max-width: 991px) {

    .hd-hero {
        background-position: center center;
    }

        .hd-hero::before {
            background: linear-gradient( to bottom, rgba(248,247,244,0.96), rgba(248,247,244,0.75), rgba(248,247,244,0.92) );
        }

    .hd-hero__inner {
        grid-template-columns: 1fr;
    }

    .hd-hero__text,
    .hd-hero__quote-col {
        min-height: auto;
        padding: 60px 30px;
    }

    .hd-hero__title {
        font-size: 4rem;
    }

    .hd-hero__quote {
        font-size: 2rem;
    }
}

/* ════════════════════════════════════════════════════
   UTILITY: GOLD DIVIDER
════════════════════════════════════════════════════ */

.gold-divider {
    width: 40px;
    height: 2px;
    background-color: var(--hd-gold);
    margin: 8px 0 16px 0;
    display: block;
}

.gold-divider--center {
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 24px;
}

/* ════════════════════════════════════════════════════
   UTILITY: BUTTONS
════════════════════════════════════════════════════ */

.btn-gold {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 11px 22px;
    border-radius: 6px;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-gold--solid {
    background-color: var(--hd-gold);
    color: #fff;
    border: 1.5px solid var(--hd-gold);
}

    .btn-gold--solid:hover {
        background-color: var(--hd-gold-dark);
        border-color: var(--hd-gold-dark);
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 4px 14px rgba(205, 167, 123, 0.35);
    }

.btn-gold--outline {
    background-color: transparent;
    color: var(--hd-navy);
    border: 1.5px solid var(--hd-navy);
}

    .btn-gold--outline:hover {
        background-color: var(--hd-navy);
        color: #fff;
        transform: translateY(-1px);
    }

.btn-gold--lg {
    padding: 14px 36px;
    font-size: 0.75rem;
}

.diamond-ornament {
    color: var(--hd-gold);
    font-size: 0.65rem;
}

/* ════════════════════════════════════════════════════
   SECTION BASE
════════════════════════════════════════════════════ */

.hd-section {
    padding: 72px 0;
}

.hd-section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--hd-navy);
    margin-bottom: 0;
    letter-spacing: 0.01em;
}

/* ════════════════════════════════════════════════════
   THE STORY SECTION
════════════════════════════════════════════════════ */

.hd-story {
    background-color: #ffffff;
    border-top: 1px solid var(--hd-border);
    border-bottom: 1px solid var(--hd-border);
}

.hd-story__icon {
    color: var(--hd-gold);
    font-size: 2.8rem;
    margin-top: 6px;
    opacity: 0.85;
}

.hd-story__body p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--hd-text-dark);
    margin-bottom: 14px;
}

.hd-story__tagline {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-style: italic;
    color: var(--hd-gold);
    font-weight: 600;
}

.hd-story__img {
    width: 100%;
    height: auto;
    border-radius: var(--hd-radius);
    box-shadow: var(--hd-shadow-lg);
    display: block;
}

/* ════════════════════════════════════════════════════
   CRISIS SECTION
════════════════════════════════════════════════════ */

.hd-crisis {
    background-color: var(--hd-warm-white);
}

.section-card {
    background-color: #ffffff;
    border-radius: var(--hd-radius);
    padding: 36px 24px 32px;
    box-shadow: var(--hd-shadow);
    border: 1px solid var(--hd-border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .section-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--hd-shadow-lg);
    }

.section-card__icon {
    font-size: 2.2rem;
    color: var(--hd-gold);
    margin-bottom: 18px;
    opacity: 0.9;
}

.section-card__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--hd-navy);
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

.section-card__desc {
    font-size: 0.83rem;
    color: var(--hd-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ════════════════════════════════════════════════════
   THREE COLUMN SECTION
════════════════════════════════════════════════════ */

.hd-three-col {
    background-color: #ffffff;
    border-top: 1px solid var(--hd-border);
    border-bottom: 1px solid var(--hd-border);
}

.story-card {
    background-color: var(--hd-warm-white);
    border-radius: var(--hd-radius);
    padding: 36px 30px;
    box-shadow: var(--hd-shadow);
    border: 1px solid var(--hd-border);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .story-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--hd-shadow-lg);
    }

.story-card__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--hd-navy);
    text-align: center;
    margin-bottom: 4px;
}

.story-card__body {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--hd-text-dark);
    margin-bottom: 14px;
}

.story-card--bg {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.story-card__overlay {
    position: relative;
    z-index: 2;
    border-radius: 16px;
    padding: 36px 30px;
    height: 100%;
}

/* Experience list */
.hd-exp-list {
    margin: 0;
    padding: 0;
}

.hd-exp-list__item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}

    .hd-exp-list__item:last-child {
        margin-bottom: 0;
    }

.hd-exp-list__icon {
    font-size: 1.25rem;
    color: var(--hd-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.hd-exp-list__item strong {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--hd-navy);
    display: block;
    margin-bottom: 2px;
}

.hd-exp-list__item p {
    font-size: 0.82rem;
    color: var(--hd-muted);
    line-height: 1.6;
    margin: 0;
}

/* Checklist */
.hd-checklist {
    margin: 0;
    padding: 0;
}

    .hd-checklist li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.87rem;
        color: var(--hd-text-dark);
        padding: 10px 0;
        border-bottom: 1px solid var(--hd-border);
    }

        .hd-checklist li:last-child {
            border-bottom: none;
        }

.hd-checklist__icon {
    color: var(--hd-gold);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ════════════════════════════════════════════════════
   AUDIENCE SECTION
════════════════════════════════════════════════════ */

.hd-audience {
    background-color: var(--hd-warm-white);
}

.audience-card {
    background-color: #ffffff;
    border-radius: var(--hd-radius-sm);
    padding: 24px 16px;
    box-shadow: var(--hd-shadow);
    border: 1px solid var(--hd-border);
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .audience-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--hd-shadow-lg);
    }

.audience-card__icon {
    display: block;
    font-size: 2rem;
    color: var(--hd-gold);
    margin-bottom: 12px;
    opacity: 0.85;
}

.audience-card p {
    font-size: 0.78rem;
    color: var(--hd-muted);
    line-height: 1.5;
    margin: 0;
}

/* ════════════════════════════════════════════════════
   BOTTOM SECTION
════════════════════════════════════════════════════ */

.hd-bottom {
    background-color: #ffffff;
    border-top: 1px solid var(--hd-border);
}

.hd-bottom__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--hd-navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hd-bottom__desc {
    font-size: 0.87rem;
    color: var(--hd-muted);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 400px;
}

.hd-bottom__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ════════════════════════════════════════════════════
   FORM CARD
════════════════════════════════════════════════════ */

.hd-form-card {
    background-color: var(--hd-warm-white);
    border-radius: var(--hd-radius);
    padding: 40px 36px;
    box-shadow: var(--hd-shadow);
    border: 1px solid var(--hd-border);
}

.hd-form-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hd-navy);
    margin-bottom: 24px;
    text-align: center;
}

.input-premium {
    display: block;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid var(--hd-border);
    border-radius: 8px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--hd-text-dark);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

    .input-premium::placeholder {
        color: #9eadb4;
        font-size: 0.83rem;
    }

    .input-premium:focus {
        border-color: var(--hd-gold);
        box-shadow: 0 0 0 3px rgba(205, 167, 123, 0.15);
    }

.input-premium--textarea {
    resize: vertical;
    min-height: 110px;
}

.hd-upload-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--hd-muted);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.hd-file-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hd-file-input {
    display: none;
}

.hd-file-btn {
    background-color: #ffffff;
    border: 1px solid var(--hd-border);
    border-radius: 6px;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-family: var(--font-body);
    color: var(--hd-text-dark);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

    .hd-file-btn:hover {
        background-color: var(--hd-warm-white);
        border-color: var(--hd-gold);
    }

.hd-file-name {
    font-size: 0.8rem;
    color: var(--hd-muted);
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 991px)
════════════════════════════════════════════════════ */

/* 1199px breakpoint removed — 2-column desktop layout holds until 991.98px */

@media (max-width: 991.98px) {
    .hd-hero {
        height: auto;
        min-height: auto;
    }

    .hd-hero__inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        min-height: auto;
    }

    .hd-hero__text {
        padding: 60px 28px 40px;
        text-align: center;
        align-items: center;
        justify-content: flex-start;
    }

    .hd-hero__desc {
        max-width: 100%;
    }

    .hd-hero__buttons {
        justify-content: center;
    }

    .hd-hero__photo-col {
        min-height: 480px;
        position: relative;
    }

    .hd-hero__quote-col {
        padding: 48px 28px;
        text-align: center;
        align-items: center;
    }

    .hd-hero__quote {
        font-size: 1.8rem;
        text-align: center;
    }

    .hd-hero__quote-mark {
        text-align: center;
        display: block;
    }

    .hd-section {
        padding: 52px 0;
    }

    .hd-form-card {
        padding: 28px 20px;
    }
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 575px)
════════════════════════════════════════════════════ */

@media (max-width: 575.98px) {
    .hd-hero__text {
        padding: 44px 20px 32px;
    }

    .hd-hero__title {
        font-size: 3.4rem;
    }

    .hd-hero__subtitle {
        font-size: 1.2rem;
    }

    .hd-hero__photo-col {
        min-height: 340px;
    }

    .hd-hero__quote {
        font-size: 1.4rem;
    }

    .hd-hero__quote-col {
        padding: 36px 20px;
    }

    .hd-hero__buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-gold {
        width: 100%;
        justify-content: center;
    }

    .hd-bottom__buttons {
        flex-direction: column;
    }
}
