/* =============================================
   HOME page
   ============================================= */

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--c-on-dark);
    isolation: isolate;
}
.hero__media {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}
.hero__media picture { display: contents; }
.hero__scrim {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(20,12,8,0.45) 0%, rgba(20,12,8,0.15) 30%, rgba(20,12,8,0.55) 100%);
}
.hero__scrim::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0) 30%, rgba(20,12,8,0.45) 100%);
    pointer-events: none;
}

.hero__content {
    text-align: center;
    padding: clamp(1.5rem, 1rem + 3vw, 2.5rem);
    max-width: 90rem;
    margin: 0 auto;
}
.hero__eyebrow {
    color: var(--c-ochre);
    margin-bottom: clamp(1rem, 0.5rem + 1.5vw, 2rem);
    justify-content: center;
}
.hero__title {
    color: var(--c-on-dark);
    text-shadow: 0 2px 30px rgba(0,0,0,0.35);
    margin-bottom: clamp(1rem, 0.5rem + 1.5vw, 1.75rem);
    line-height: 1.02;
}
@media (min-width: 1500px) {
    .hero__title { white-space: nowrap; }
}
.hero__rule {
    display: block;
    width: 80px;
    height: 1px;
    background: var(--c-ochre);
    margin: 0 auto clamp(1rem, 0.5rem + 1.5vw, 1.75rem);
    transform-origin: left;
}
.hero__subtitle {
    font-family: var(--f-display);
    font-style: italic;
    font-size: clamp(1.15rem, 0.95rem + 1vw, 1.6rem);
    color: var(--c-on-dark);
    opacity: 0.92;
    max-width: 38rem;
    margin: 0 auto;
    line-height: 1.4;
    text-shadow: 0 1px 20px rgba(0,0,0,0.4);
}

.hero__scroll {
    position: absolute;
    bottom: clamp(1.5rem, 1rem + 2vw, 2.5rem);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: var(--c-on-dark);
    font-family: var(--f-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.85;
    z-index: 2;
}
.hero__scroll:hover { opacity: 1; }
.scroll-cue {
    display: block;
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, transparent, var(--c-on-dark));
}

/* ---------- Manifesto ---------- */
.manifesto {
    padding-block: clamp(4rem, 2.5rem + 6vw, 7rem);
}

/* ---------- Place ---------- */
.place__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 1rem + 4vw, 5rem);
    align-items: center;
}
@media (min-width: 880px) {
    .place__grid { grid-template-columns: 1fr 1.1fr; }
}
.place__media {
    position: relative;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
}
.place__media::before {
    content: '';
    position: absolute;
    inset: 10%;
    border: 1px solid var(--c-rule-strong);
    border-radius: 50%;
    opacity: 0.4;
    pointer-events: none;
}
/* Place section uses --c-bg-warm; lift the medallion onto the lighter cream so it reads as a disc. */
.place .medallion__face { background: var(--c-bg); }

.place__copy h2 { margin-bottom: 1.25rem; }

/* ---------- Wines teaser ---------- */
.wines-teaser__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 1rem + 3vw, 3.5rem);
    margin-top: 3rem;
}
@media (min-width: 720px) {
    .wines-teaser__grid { grid-template-columns: 1fr 1fr; }
}
.wine-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(2rem, 1rem + 3vw, 3rem) clamp(1.5rem, 1rem + 2vw, 2.5rem) clamp(2rem, 1rem + 2vw, 2.5rem);
    background: linear-gradient(180deg, var(--c-bg-warm) 0%, var(--c-bg) 100%);
    border: 1px solid var(--c-rule);
    transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med);
    color: var(--c-text);
    position: relative;
    overflow: hidden;
}
.wine-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--c-burgundy), var(--c-terracotta), var(--c-ochre));
    opacity: 0;
    z-index: -1;
    transition: opacity var(--t-med);
}
.wine-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 60px -40px rgba(43,31,24,0.35);
}
.wine-card__bottle {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 1.5rem;
}
.wine-card__bottle img {
    display: block;
    width: auto;
    height: clamp(380px, 48vw, 560px);
    max-width: 100%;
    transition: transform var(--t-med) var(--ease-out);
}
.wine-card:hover .wine-card__bottle img {
    transform: translateY(-6px) rotate(-1deg);
}
.wine-card h3 {
    font-size: clamp(1.6rem, 1.3rem + 1vw, 2.2rem);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.wine-card__variant {
    font-style: italic;
    color: var(--c-burgundy);
}

/* ---------- Olive Oil ---------- */
.home-oil {
    padding-block: clamp(4rem, 2.5rem + 6vw, 7rem);
    text-align: center;
    background: var(--c-olive-dk);
    color: var(--c-on-dark);
    position: relative;
    overflow: hidden;
}
.home-oil::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    background-size: 220px 220px;
    opacity: 0.45;
    mix-blend-mode: overlay;
    pointer-events: none;
}
.home-oil > * { position: relative; }
.home-oil .eyebrow {
    color: var(--c-gold);
}
.home-oil h2 {
    margin-bottom: 0.75rem;
    color: var(--c-ochre);
    font-style: italic;
}
.home-oil p {
    max-width: 42rem;
    margin-inline: auto;
    color: var(--c-on-dark);
    opacity: 0.82;
}
.home-oil .lead {
    color: var(--c-on-dark);
    opacity: 0.95;
    font-style: italic;
}
.home-oil .ornament-rule { margin: 2.25rem auto 0; color: var(--c-gold); }
.home-oil .ornament-rule::before,
.home-oil .ornament-rule::after { background: var(--c-gold); opacity: 0.45; }
.home-oil .ornament-diamond { background: var(--c-ochre); opacity: 0.85; }
.home-oil__badges {
    list-style: none;
    padding: 0;
    margin: 1.5rem auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem 0.7rem;
    max-width: 48rem;
}
.home-oil__badges li {
    font-family: var(--f-body);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-on-dark);
    background: rgba(232, 184, 74, 0.06);
    border: 1px solid rgba(184, 147, 90, 0.45);
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    line-height: 1;
    transition: background var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}
.home-oil__badges li:hover {
    background: rgba(232, 184, 74, 0.16);
    border-color: rgba(184, 147, 90, 0.75);
    color: var(--c-ochre);
}

/* ---------- CTA band ---------- */
.cta-band {
    text-align: center;
    position: relative;
    overflow: hidden;
}
