/* ==========================================================================
   Grackle — Home page styles
   Page-scoped on top of css/styles.css (loaded only by index.html), same
   pattern used for the About page: editorial serif for headings and
   accent labels, Inter for body copy, no pill badges, no decorative blob
   shapes. Header/footer are reset back to the shared site-wide look.
   ========================================================================== */

/* Headings everywhere on this page get the warmer, editorial serif.
   Plain type selector so specificity stays low; !important is needed only
   to beat the handful of explicit Poppins declarations already in
   styles.css (.mobile-app h2, .featured-property-info h3, .search-btn). */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fraunces', Georgia, serif !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em;
}

/* Reset the shared footer heading back to the site-wide look (declared
   later in this file, same specificity as the rule above, so it wins for
   the footer only). */
.footer h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* Eyebrow labels: a quiet italic serif accent instead of an uppercase
   tracked badge with dash decorations. */
.experience .section-eyebrow,
.inspired-header .section-eyebrow {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0;
    text-transform: none;
    color: #CC5200;
}
.experience .section-eyebrow::before,
.experience .section-eyebrow::after,
.inspired-header .section-eyebrow::before,
.inspired-header .section-eyebrow::after {
    display: none;
}

/* Lead / intro copy directly under a heading. To stay consistent with the
   About page (where body copy stays in Inter and only short accent labels
   go italic-serif), these are refined Inter -- larger, more generous
   line-height, softer ink colors -- rather than switched to serif italic.
   A full paragraph set in italic serif reads worse at this length and
   would put Home out of step with About's typographic system. */
.hero p {
    font-size: 1.22rem;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.005em;
    color: rgba(255, 255, 255, 0.92);
}

.experience-subtitle {
    font-size: 1.08rem;
    font-weight: 400;
    line-height: 1.65;
    color: #585c84;
}

.spaces-header p {
    font-size: 1.08rem;
    font-weight: 400;
    line-height: 1.65;
    color: #c7cbe6;
}

.inspired-header p {
    font-size: 1.04rem;
    font-weight: 400;
    line-height: 1.6;
    color: #585c84;
}

.mobile-app p {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.65;
}

/* Testimonials stay in Inter for readability, with a single serif
   quotation mark as the "premium" accent -- the same restrained-accent
   pattern as the italic numerals on the About page (e.g. .why-grackle-num),
   rather than italicizing the whole paragraph. */
.testimonial-card p {
    font-size: 1.04rem;
    font-weight: 400;
    line-height: 1.65;
    color: #2c2f4d;
    position: relative;
}
.testimonial-card p::before {
    content: '\201C';
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.5em;
    line-height: 0;
    color: #FF6600;
    margin-right: 0.12em;
    vertical-align: -0.32em;
    display: inline-block;
}

/* ==========================================================================
   Remove decorative blob shapes -- same "unnecessary semi-circle" pattern
   flagged on the About page.
   ========================================================================== */
.experience::before,
.experience::after,
.experience-container::before {
    display: none;
}

/* ==========================================================================
   Featured property: caption-style label over a soft gradient instead of
   a dark pill badge.
   ========================================================================== */
.featured-property-image::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 55%;
    background: linear-gradient(180deg, rgba(20, 24, 55, 0) 0%, rgba(20, 24, 55, 0.6) 100%);
    pointer-events: none;
}
.featured-badge {
    top: auto;
    bottom: 1.25rem;
    left: 1.25rem;
    background: none;
    color: #fff;
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.08rem;
    letter-spacing: 0;
    text-transform: none;
    padding: 0;
    border-radius: 0;
    z-index: 1;
}
