/**
 * La Cuccaia - stili specifici della homepage.
 */

body.home #page {
    max-width: none;
}

body.home #content {
    display: block;
    padding: 0;
}

body.home .lc-home {
    width: 100%;
    overflow: hidden;
    color: var(--lc-ink);
    background: var(--lc-paper);
    font-family: var(--lc-sans);
}

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

.lc-home h1,
.lc-home h2,
.lc-home h3,
.lc-home p,
.lc-home blockquote,
.lc-home figure {
    margin-top: 0;
}

.lc-home h1,
.lc-home h2,
.lc-home h3 {
    color: inherit;
    font-family: var(--lc-serif);
    font-weight: 400;
}

.lc-home h2 {
    max-width: 760px;
    margin-bottom: 26px;
    font-size: clamp(2.35rem, 5vw, 4.75rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
}

/* Hero */
.lc-hero {
    --lc-hero-image: linear-gradient(135deg, #788676, #24382e 68%, #17251f);
    position: relative;
    display: grid;
    min-height: min(830px, calc(100vh - 72px));
    align-items: end;
    isolation: isolate;
    color: #fff;
    background-color: var(--lc-forest);
    background-image: linear-gradient(90deg, rgba(15, 29, 23, 0.82) 0%, rgba(15, 29, 23, 0.48) 48%, rgba(15, 29, 23, 0.18) 100%), var(--lc-hero-image);
    background-position: center;
    background-size: cover;
}

.lc-hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(0deg, rgba(8, 20, 14, 0.56), transparent 55%);
    content: "";
}

.lc-hero__inner {
    padding-top: 120px;
    padding-bottom: clamp(105px, 14vh, 150px);
}

.lc-hero__eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.lc-hero h1 {
    max-width: 900px;
    margin-bottom: 24px;
    color: #fff;
    font-size: clamp(4rem, 10vw, 8.9rem);
    line-height: 0.84;
    letter-spacing: -0.055em;
}

.lc-hero__lead {
    max-width: 590px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--lc-serif);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.5;
}

.lc-hero__actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.lc-scroll-cue {
    position: absolute;
    right: max(24px, calc((100% - 1180px) / 2));
    bottom: 46px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
}

.lc-scroll-cue span {
    width: 8px;
    height: 8px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: translateY(-2px) rotate(45deg);
}

/* Presentazione */
.lc-intro {
    background: var(--lc-paper);
}

.lc-intro__grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.72fr);
    gap: clamp(60px, 10vw, 140px);
}

.lc-intro__copy {
    padding-left: clamp(0px, 4vw, 58px);
}

.lc-intro__lead,
.lc-rich-text {
    max-width: 620px;
    color: var(--lc-muted);
    font-size: clamp(1.05rem, 1.5vw, 1.22rem);
    line-height: 1.85;
}

.lc-rich-text > :last-child {
    margin-bottom: 0;
}

.lc-intro__visual {
    position: relative;
}

.lc-intro__visual::before {
    position: absolute;
    top: -28px;
    right: -28px;
    width: 54%;
    height: 48%;
    border: 1px solid var(--lc-border);
    content: "";
}

.lc-photo-card,
.lc-placeholder-card {
    position: relative;
    z-index: 1;
    min-height: 520px;
    margin-bottom: 0;
}

.lc-photo-card img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.lc-placeholder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--lc-paper);
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.12), transparent 28%),
        linear-gradient(145deg, var(--lc-sage), var(--lc-forest));
}

.lc-placeholder-card__mark {
    font-family: var(--lc-serif);
    font-size: clamp(4.6rem, 9vw, 7.2rem);
    letter-spacing: -0.08em;
    line-height: 1;
}

.lc-placeholder-card__line {
    width: 52px;
    height: 1px;
    margin-block: 27px 20px;
    background: rgba(255, 255, 255, 0.55);
}

.lc-placeholder-card__label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* Caratteristiche */
.lc-stay {
    background: var(--lc-cream);
}

.lc-section-heading {
    margin-bottom: clamp(52px, 7vw, 82px);
}

.lc-section-heading h2 {
    margin-bottom: 0;
}

.lc-feature-grid {
    display: grid;
    border-top: 1px solid var(--lc-border);
    grid-template-columns: repeat(3, 1fr);
}

.lc-feature {
    padding: 38px clamp(24px, 4vw, 52px) 10px;
    border-right: 1px solid var(--lc-border);
}

.lc-feature:first-child {
    padding-left: 0;
}

.lc-feature:last-child {
    border-right: 0;
}

.lc-feature__number {
    display: block;
    margin-bottom: 54px;
    color: var(--lc-clay);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.lc-feature h3 {
    margin-bottom: 19px;
    font-size: clamp(1.65rem, 2.7vw, 2.25rem);
    line-height: 1.12;
}

.lc-feature p {
    margin-bottom: 0;
    color: var(--lc-muted);
    font-size: 0.98rem;
    line-height: 1.75;
}

/* Citazione */
.lc-quote-section {
    position: relative;
    display: grid;
    min-height: 540px;
    place-items: center;
    overflow: hidden;
    color: #fff;
    background: var(--lc-forest);
}

.lc-quote-section::before,
.lc-quote-section::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    content: "";
}

.lc-quote-section::before {
    top: -250px;
    left: -110px;
    width: 590px;
    height: 590px;
}

.lc-quote-section::after {
    right: -170px;
    bottom: -340px;
    width: 680px;
    height: 680px;
}

.lc-quote-section__inner {
    position: relative;
    z-index: 1;
    max-width: 950px;
    padding-block: 100px;
    text-align: center;
}

.lc-quote-section__symbol {
    height: 55px;
    margin-bottom: 22px;
    color: var(--lc-clay);
    font-family: var(--lc-serif);
    font-size: 6rem;
    line-height: 1;
}

.lc-quote-section blockquote {
    padding: 0;
    border: 0;
    font-style: normal;
}

.lc-quote-section blockquote p {
    margin-bottom: 0;
    color: #fff;
    font-family: var(--lc-serif);
    font-size: clamp(2.15rem, 5vw, 4.6rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

/* Contatti */
.lc-contact {
    background: var(--lc-paper);
}

.lc-contact__inner {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.65fr);
    gap: clamp(50px, 9vw, 130px);
}

.lc-contact h2 {
    margin-bottom: 0;
}

.lc-contact__action {
    padding-bottom: 12px;
}

.lc-contact__action p {
    margin-bottom: 28px;
    color: var(--lc-muted);
    font-size: 1.04rem;
    line-height: 1.7;
}
