/* ============================================================
   OILS PAGE  —  Editorial Mediterranean Style
   Sections: hero · qualities · evoo · pomace · crosslinks
   ============================================================ */

/* ── Shared container ─────────────────────────────────────── */
.oils-hero__inner,
.oils-qualities__inner,
.oils-evoo__inner,
.oils-pomace__inner,
.oils-crosslinks__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── Shared typographic helpers ───────────────────────────── */
.oils-section__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7a5a16;
    margin-bottom: 14px;
}

.oils-section__eyebrow--gold { color: var(--color-gold); }

.oils-section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--color-dark-green);
    margin: 0 0 18px;
    line-height: 1.15;
}

.oils-section__title--light { color: #fff; }

.oils-section__line {
    width: 50px;
    height: 2px;
    background: var(--color-gold);
    margin-bottom: 28px;
}

.oils-section__line--gold { background: var(--color-gold); }

/* ── Shared CTA buttons ───────────────────────────────────── */
.oils-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background var(--transition-base), transform var(--transition-fast);
    margin-top: 32px;
}

.oils-btn--dark {
    background: var(--color-dark-green);
    color: #fff;
}

.oils-btn--dark:hover {
    background: var(--color-olive-green);
    transform: translateX(4px);
}

.oils-btn--gold {
    background: var(--color-gold);
    color: #fff;
}

.oils-btn--gold:hover {
    background: #a8842e;
    transform: translateX(4px);
}

/* ── Shared characteristics list ─────────────────────────── */
.oils-char-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.oils-char-list--light { border-top-color: rgba(255, 255, 255, 0.15); }

.oils-char-list__item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.oils-char-list--light .oils-char-list__item {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.oils-char-list__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-olive-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.oils-char-list--light .oils-char-list__label { color: var(--color-gold); }

.oils-char-list__value {
    font-size: 0.95rem;
    color: var(--color-text-dark);
    text-align: right;
}

.oils-char-list--light .oils-char-list__value { color: rgba(255, 255, 255, 0.85); }

/* ============================================================
   1. HERO
   ============================================================ */
.oils-hero {
    position: relative;
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-dark-green);
}

.oils-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.28;
}

.oils-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(44, 59, 44, 0.75) 0%,
        rgba(44, 59, 44, 0.30) 60%,
        transparent 100%
    );
}

.oils-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Text side */
.oils-hero__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.oils-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 5rem);
    color: #fff;
    font-weight: 700;
    margin: 0 0 24px;
    line-height: 1.05;
}

.oils-hero__line {
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin-bottom: 28px;
}

.oils-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 420px;
    margin: 0;
}

/* Visual side – SVG drop mask */
.oils-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.oils-hero__mask-wrap {
    position: relative;
    width: 100%;
    max-width: 380px;
}

.oils-hero__mask-img {
    /* hidden – used via SVG href */
    display: none;
}

.oils-hero__svg-mask {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.35));
}

/* ============================================================
   2. QUALITIES STRIP
   ============================================================ */
.oils-qualities {
    background: var(--color-paper);
    border-top: 1px solid rgba(193, 154, 70, 0.2);
    border-bottom: 1px solid rgba(193, 154, 70, 0.2);
    padding: 20px 0;
}

.oils-qualities__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.oils-qualities__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    border-right: 1px solid rgba(193, 154, 70, 0.2);
}

.oils-qualities__item:last-child { border-right: none; }

.oils-qualities__value {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-dark-green);
    display: block;
    margin-bottom: 6px;
}

.oils-qualities__label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-olive-green);
    display: block;
    margin-bottom: 4px;
}

.oils-qualities__note {
    font-size: 0.88rem;
    color: #5f6859;
    font-weight: 500;
    display: block;
}

/* ============================================================
   3. EVOO SECTION
   ============================================================ */
.oils-evoo {
    background: #fff;
    padding: 100px 0;
}

.oils-evoo__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.oils-evoo__desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin: 0 0 32px;
}

/* Bottle lineup */
.oils-bottles {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px 20px;
    background: var(--color-paper);
    border-radius: 16px;
    position: relative;
}

.oils-bottles::after {
    content: '';
    position: absolute;
    bottom: 16px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: rgba(193, 154, 70, 0.3);
}

.oils-bottles__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Each bottle scales by size — 250ml smallest, 5L tallest */
.oils-bottles__item:nth-child(1) .oils-bottles__img { height: 100px; }
.oils-bottles__item:nth-child(2) .oils-bottles__img { height: 140px; }
.oils-bottles__item:nth-child(3) .oils-bottles__img { height: 185px; }
.oils-bottles__item:nth-child(4) .oils-bottles__img { height: 230px; }

.oils-bottles__img {
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-base);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.12));
}

.oils-bottles:hover .oils-bottles__img { transform: translateY(-4px); }

.oils-bottles__size {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-dark-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

/* ============================================================
   4. POMACE SECTION
   ============================================================ */
.oils-pomace {
    background: var(--color-dark-green);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle texture overlay */
.oils-pomace::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/oil/oil drops grid.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.oils-pomace__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Pomace bottles: bigger, fewer, more dramatic */
.oils-bottles--pomace {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}

.oils-bottles--pomace .oils-bottles__item:nth-child(1) .oils-bottles__img { height: 200px; }
.oils-bottles--pomace .oils-bottles__item:nth-child(2) .oils-bottles__img { height: 270px; }
.oils-bottles--pomace .oils-bottles__size { color: rgba(255, 255, 255, 0.75); }
.oils-bottles--pomace::after { background: rgba(193, 154, 70, 0.2); }

.oils-pomace__desc {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 32px;
}

/* ============================================================
   5. CROSS-LINKS
   ============================================================ */
.oils-crosslinks {
    background: var(--color-cream);
    padding: 100px 0;
}

.oils-crosslinks__header {
    text-align: center;
    margin-bottom: 64px;
}

.oils-crosslinks__header .oils-section__line {
    margin: 0 auto 24px;
}

.oils-crosslinks__subtitle {
    font-size: 1rem;
    color: #4f5a49;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}

.oils-crosslinks__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.oils-crosslink-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 20px;
    transition: transform var(--transition-base);
}

.oils-crosslink-card:hover { transform: translateY(-8px); }

.oils-crosslink-card__circle {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: box-shadow var(--transition-base);
}

.oils-crosslink-card:hover .oils-crosslink-card__circle {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.oils-crosslink-card__circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.oils-crosslink-card:hover .oils-crosslink-card__circle img {
    transform: scale(1.07);
}

.oils-crosslink-card__name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark-green);
}

.oils-crosslink-card__arrow {
    color: var(--color-gold);
    display: flex;
    align-items: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .oils-hero__inner,
    .oils-evoo__inner,
    .oils-pomace__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .oils-hero__visual { display: none; }

    .oils-hero {
        min-height: 0;
        flex: 1;
        padding: 0 0 16px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
    }

    .oils-hero .oils-hero__inner {
        padding-top: 80px;
    }

    .oils-hero__title {
        font-size: 2.4rem;
    }

    .oils-hero__subtitle {
        font-size: 0.95rem;
    }

    .oils-hero .hero-scroll-indicator {
        margin-top: auto;
        padding-bottom: 10px;
    }

    .olives-above-fold {
        height: 100svh;
        display: flex;
        flex-direction: column;
    }

    .oils-qualities__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .oils-qualities__item {
        border-bottom: 1px solid rgba(193, 154, 70, 0.2);
    }

    .oils-qualities__item:nth-child(2) { border-right: none; }
    .oils-qualities__item:nth-child(3),
    .oils-qualities__item:nth-child(4) { border-bottom: none; }

    .oils-pomace__visual { order: 2; }
    .oils-pomace__content { order: 1; }
}

@media (max-width: 768px) {
    .oils-hero {
        height: 100svh;
        min-height: unset;
        overflow: hidden;
        flex: none;
    }

    .oils-hero__inner,
    .oils-qualities__inner,
    .oils-evoo__inner,
    .oils-pomace__inner,
    .oils-crosslinks__inner {
        padding: 0 20px;
    }

    .oils-evoo,
    .oils-pomace,
    .oils-crosslinks { padding: 48px 0; }

    .oils-crosslinks__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .oils-crosslink-card__circle {
        width: 180px;
        height: 180px;
    }

    .oils-bottles { gap: 12px; }

    .oils-qualities__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .oils-qualities__inner { grid-template-columns: 1fr 1fr; }

    .oils-bottles__item:nth-child(1) .oils-bottles__img { height: 70px; }
    .oils-bottles__item:nth-child(2) .oils-bottles__img { height: 100px; }
    .oils-bottles__item:nth-child(3) .oils-bottles__img { height: 130px; }
    .oils-bottles__item:nth-child(4) .oils-bottles__img { height: 165px; }

    .oils-bottles--pomace .oils-bottles__item:nth-child(1) .oils-bottles__img { height: 140px; }
    .oils-bottles--pomace .oils-bottles__item:nth-child(2) .oils-bottles__img { height: 190px; }
}

/* ============================================================
   OIL PRODUCT PAGES  (.op-*)
   Sections: hero · specs · story · uses · crosslinks
   ============================================================ */

/* ── Shared container ─────────────────────────────────────── */
.op-hero__inner,
.op-specs__inner,
.op-story__inner,
.op-uses__inner,
.op-crosslinks__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================================
   OP HERO
   ============================================================ */
.op-hero {
    padding: 100px 0;
}

.op-hero--light {
    background: var(--color-paper);
}

.op-hero--dark {
    background: var(--color-dark-green);
}

.op-hero--dairy {
    position: relative;
    background-image: url('/assets/images/homepage/bg-brand.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.op-hero--dairy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.72);
    z-index: 0;
    pointer-events: none;
}

.op-hero--dairy .op-hero__inner {
    position: relative;
    z-index: 1;
}

.op-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Text side */
.op-hero__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7a5a16;
    margin-bottom: 16px;
}

.op-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.6rem);
    line-height: 1.08;
    margin: 0 0 20px;
}

.op-hero--light .op-hero__title { color: var(--color-dark-green); }
.op-hero--dark  .op-hero__title { color: #fff; }
.op-hero--dairy .op-hero__title { color: var(--color-dark-green); }

.op-hero__line {
    width: 50px;
    height: 2px;
    background: var(--color-gold);
    margin-bottom: 24px;
}

.op-hero__badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1.5px solid #7a5a16;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7a5a16;
    margin-bottom: 24px;
}

.op-hero__desc {
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 420px;
    margin: 0;
}

.op-hero--light .op-hero__desc { color: #555; }
.op-hero--dark  .op-hero__desc { color: rgba(255, 255, 255, 0.75); }
.op-hero--dairy .op-hero__desc { color: #555; }

.op-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding: 14px 30px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition-base), transform var(--transition-fast);
}

.op-hero--light .op-hero__cta {
    background: var(--color-dark-green);
    color: #fff;
}

.op-hero--light .op-hero__cta:hover {
    background: var(--color-olive-green);
    transform: translateX(4px);
}

.op-hero--dark .op-hero__cta {
    background: var(--color-gold);
    color: #fff;
}

.op-hero--dark .op-hero__cta:hover {
    background: #a8842e;
    transform: translateX(4px);
}

.op-hero--dairy .op-hero__cta {
    background: var(--color-dark-green);
    color: #fff;
}

.op-hero--dairy .op-hero__cta:hover {
    background: var(--color-olive-green);
    transform: translateX(4px);
}

/* Bottle visual */
.op-hero__visual {
    display: flex;
    justify-content: center;
}

.op-hero__bottles {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
    padding: 40px 24px 24px;
    border-radius: 16px;
    position: relative;
    width: 100%;
}

.op-hero--light .op-hero__bottles { background: #fff; box-shadow: 0 4px 32px rgba(0,0,0,0.06); }
.op-hero--dark  .op-hero__bottles { background: rgba(255,255,255,0.07); }
.op-hero--dairy .op-hero__bottles { background: #fff; box-shadow: 0 4px 32px rgba(0,0,0,0.06); }

.op-hero__bottles::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: rgba(193, 154, 70, 0.3);
}

.op-hero__bottle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

/* Bottle heights: 4 bottles EVOO (ascending), 2 bottles Pomace (tall) */
.op-hero__bottle:nth-child(1) .op-hero__bottle-img { height: 90px; }
.op-hero__bottle:nth-child(2) .op-hero__bottle-img { height: 130px; }
.op-hero__bottle:nth-child(3) .op-hero__bottle-img { height: 175px; }
.op-hero__bottle:nth-child(4) .op-hero__bottle-img { height: 220px; }

/* For dark (pomace) with only 2 bottles — make them taller */
.op-hero--dark .op-hero__bottle:nth-child(1) .op-hero__bottle-img { height: 190px; }
.op-hero--dark .op-hero__bottle:nth-child(2) .op-hero__bottle-img { height: 260px; }

.op-hero__bottle-img {
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
    transition: transform var(--transition-base);
}

.op-hero__bottles:hover .op-hero__bottle-img { transform: translateY(-5px); }

.op-hero__bottle-size {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.op-hero--light .op-hero__bottle-size { color: var(--color-dark-green); }
.op-hero--dark  .op-hero__bottle-size { color: rgba(255, 255, 255, 0.7); }
.op-hero--dairy .op-hero__bottle-size { color: var(--color-dark-green); }

/* ============================================================
   OP SPECS
   ============================================================ */
.op-specs {
    padding: 90px 0;
}

.op-specs--dark {
    background: var(--color-dark-green);
}

.op-specs--dairy {
    background: #1a3f6f;
}

.op-specs--light {
    background: #fff;
}

.op-specs__header {
    text-align: center;
    margin-bottom: 56px;
}

.op-specs__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 14px;
}

.op-specs--dairy .op-specs__eyebrow {
    color: #f0d58a;
}

.op-specs__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    margin: 0 0 16px;
}

.op-specs--dark  .op-specs__title { color: #fff; }
.op-specs--dairy .op-specs__title { color: #fff; }
.op-specs--light .op-specs__title { color: var(--color-dark-green); }

.op-specs__line {
    width: 50px;
    height: 2px;
    background: var(--color-gold);
    margin: 0 auto;
}

/* Table rows */
.op-specs__table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(193, 154, 70, 0.2);
}

.op-specs__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(193, 154, 70, 0.15);
}

.op-specs--dark  .op-specs__row { border-color: rgba(255, 255, 255, 0.1); }
.op-specs--dairy .op-specs__row { border-color: rgba(255, 255, 255, 0.1); }
.op-specs__row:nth-child(odd)  { border-right: 1px solid rgba(193, 154, 70, 0.15); }
.op-specs--dark  .op-specs__row:nth-child(odd) { border-right-color: rgba(255, 255, 255, 0.1); }
.op-specs--dairy .op-specs__row:nth-child(odd) { border-right-color: rgba(255, 255, 255, 0.1); }

.op-specs__label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    flex-shrink: 0;
}

.op-specs--dark  .op-specs__label { color: var(--color-gold); }
.op-specs--dairy .op-specs__label { color: #f0d58a; }
.op-specs--light .op-specs__label { color: var(--color-olive-green); }

.op-specs__value {
    font-size: 0.95rem;
    text-align: right;
}

.op-specs--dark  .op-specs__value { color: rgba(255, 255, 255, 0.8); }
.op-specs--dairy .op-specs__value { color: rgba(255, 255, 255, 0.8); }
.op-specs--light .op-specs__value { color: var(--color-text-dark); }

/* ============================================================
   OP STORY
   ============================================================ */
.op-story {
    padding: 100px 0;
}

.op-story--light { background: var(--color-paper); }
.op-story--dark  { background: var(--color-dark-green); }
.op-story--dairy {
    position: relative;
    background-image: url('/assets/images/homepage/bg-brand.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.op-story--dairy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.72);
    z-index: 0;
    pointer-events: none;
}

.op-story--dairy .op-story__inner {
    position: relative;
    z-index: 1;
}

.op-story__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.op-story__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7a5a16;
    margin-bottom: 14px;
}

.op-story__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    margin: 0 0 18px;
    line-height: 1.2;
}

.op-story--light .op-story__title { color: var(--color-dark-green); }
.op-story--dark  .op-story__title { color: #fff; }
.op-story--dairy .op-story__title { color: var(--color-dark-green); }

.op-story__line {
    width: 50px;
    height: 2px;
    background: var(--color-gold);
    margin-bottom: 24px;
}

.op-story__body {
    font-size: 1rem;
    line-height: 1.8;
}

.op-story--light .op-story__body { color: #666; }
.op-story--dark  .op-story__body { color: rgba(255, 255, 255, 0.75); }
.op-story--dairy .op-story__body { color: #555; }

/* Round image */
.op-story__image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.op-story__image {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.op-story__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   OP USES
   ============================================================ */
.op-uses {
    padding: 90px 0;
}

.op-uses--cream { background: var(--color-cream, #f5f1ea); }
.op-uses--light { background: #fff; }
.op-uses--dark  { background: var(--color-dark-green); }
.op-uses--dairy {
    position: relative;
    background-image: url('/assets/images/homepage/bg-brand.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.op-uses--dairy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.72);
    z-index: 0;
    pointer-events: none;
}

.op-uses--dairy .op-uses__inner {
    position: relative;
    z-index: 1;
}

.op-uses__header {
    text-align: center;
    margin-bottom: 60px;
}

.op-uses__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 14px;
}

.op-uses__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    margin: 0 0 14px;
}

.op-uses--cream .op-uses__title,
.op-uses--light .op-uses__title { color: var(--color-dark-green); }
.op-uses--dark  .op-uses__title { color: #000000; }
.op-uses--dairy .op-uses__title { color: var(--color-dark-green); }

.op-uses__line {
    width: 50px;
    height: 2px;
    background: var(--color-gold);
    margin: 0 auto;
}

.op-uses__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.op-uses__card {
    padding: 32px 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.op-uses--cream .op-uses__card { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.op-uses--light .op-uses__card { background: var(--color-paper); }
.op-uses--dark  .op-uses__card { background: rgba(255,255,255,0.08); }
.op-uses--dairy .op-uses__card { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.op-uses__icon {
    font-size: 2rem;
    line-height: 1;
}

.op-uses__card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}

.op-uses--cream .op-uses__card-title,
.op-uses--light .op-uses__card-title { color: var(--color-dark-green); }
.op-uses--dark  .op-uses__card-title { color: #fff; }
.op-uses--dairy .op-uses__card-title { color: var(--color-dark-green); }

.op-uses__card-desc {
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

.op-uses--cream .op-uses__card-desc,
.op-uses--light .op-uses__card-desc { color: #777; }
.op-uses--dark  .op-uses__card-desc { color: rgba(255,255,255,0.65); }
.op-uses--dairy .op-uses__card-desc { color: #777; }

/* ============================================================
   OP CROSSLINKS
   ============================================================ */
.op-crosslinks {
    background: var(--color-paper);
    padding: 90px 0;
}

.op-crosslinks--dairy {
    position: relative;
    background: none;
    background-image: url('/assets/images/homepage/bg-brand.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 90px 0;
}

.op-crosslinks--dairy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.72);
    z-index: 0;
    pointer-events: none;
}

.op-crosslinks--dairy .op-crosslinks__inner {
    position: relative;
    z-index: 1;
}

.op-crosslinks__header {
    text-align: center;
    margin-bottom: 60px;
}

.op-crosslinks__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    color: var(--color-dark-green);
    margin: 0 0 16px;
}

.op-crosslinks--dairy .op-crosslinks__title {
    color: var(--color-dark-green);
}

.op-crosslinks__line {
    width: 50px;
    height: 2px;
    background: var(--color-gold);
    margin: 0 auto;
}

.op-crosslinks__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.op-crosslink-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 18px;
    transition: transform var(--transition-base);
}

.op-crosslink-card:hover { transform: translateY(-8px); }

.op-crosslink-card__circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: box-shadow var(--transition-base);
}

.op-crosslink-card:hover .op-crosslink-card__circle {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.op-crosslink-card__circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.op-crosslink-card:hover .op-crosslink-card__circle img {
    transform: scale(1.07);
}

.op-crosslink-card__name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark-green);
}

.op-crosslinks--dairy .op-crosslink-card__name {
    color: var(--color-dark-green);
}

.op-crosslink-card__arrow {
    color: var(--color-gold);
    display: flex;
    align-items: center;
}

/* ============================================================
   OP RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .op-hero__inner,
    .op-story__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .op-specs__table {
        grid-template-columns: 1fr;
    }

    .op-specs__row:nth-child(odd) { border-right: none; }

    .op-uses__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .op-hero__inner,
    .op-specs__inner,
    .op-story__inner,
    .op-uses__inner,
    .op-crosslinks__inner {
        padding: 0 20px;
    }

    .op-hero,
    .op-specs,
    .op-story,
    .op-uses,
    .op-crosslinks { padding: 70px 0; }

    .op-story__image {
        width: 260px;
        height: 260px;
    }

    .op-crosslinks__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .op-crosslink-card__circle {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .op-uses__grid { grid-template-columns: 1fr; }

    .op-hero__bottle:nth-child(1) .op-hero__bottle-img { height: 65px; }
    .op-hero__bottle:nth-child(2) .op-hero__bottle-img { height: 95px; }
    .op-hero__bottle:nth-child(3) .op-hero__bottle-img { height: 130px; }
    .op-hero__bottle:nth-child(4) .op-hero__bottle-img { height: 165px; }

    .op-hero--dark .op-hero__bottle:nth-child(1) .op-hero__bottle-img { height: 140px; }
    .op-hero--dark .op-hero__bottle:nth-child(2) .op-hero__bottle-img { height: 195px; }
}

/* ============================================================
   OP HERO — MOBILE DAIRY
   Full-viewport first impression: text top, products bottom
   ============================================================ */
@media (max-width: 768px) {

    /* Fix title overflow on all oil/dairy product heroes */
    .op-hero__title {
        font-size: clamp(1.6rem, 6.5vw, 3.6rem);
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* ── Dairy hero: stretch to fill remaining viewport ── */
    .op-hero--dairy {
        background-attachment: scroll; /* fixed breaks on iOS WebKit */
        padding: 0;
        min-height: calc(100svh - 70px - 90px); /* 100vh minus ~header minus breadcrumb */
        display: flex;
        align-items: stretch;
    }

    .op-hero--dairy .op-hero__inner {
        display: flex;
        flex-direction: column;
        padding: 28px 20px 0;
        gap: 0;
        width: 100%;
        align-items: flex-start;
    }

    /* Text block: take only what it needs */
    .op-hero--dairy .op-hero__content {
        flex: 0 0 auto;
    }

    /* Compact text spacing */
    .op-hero--dairy .op-hero__eyebrow { margin-bottom: 8px; }
    .op-hero--dairy .op-hero__title   {
        font-size: clamp(1.5rem, 7vw, 2.6rem);
        margin-bottom: 10px;
        line-height: 1.1;
    }
    .op-hero--dairy .op-hero__line    { margin-bottom: 12px; }
    .op-hero--dairy .op-hero__badge   { margin-bottom: 12px; padding: 5px 14px; }
    .op-hero--dairy .op-hero__desc    {
        font-size: 0.9rem;
        line-height: 1.55;
        max-width: 100%;
    }
    .op-hero--dairy .op-hero__cta     { margin-top: 18px; padding: 12px 24px; }

    /* Visual block: flex-grow to fill remaining space, products sit at bottom */
    .op-hero--dairy .op-hero__visual {
        display: flex;
        flex: 1 1 auto;
        align-items: flex-end;
        justify-content: center;
        overflow: hidden;
        min-height: 100px;
    }

    .op-hero--dairy .op-hero__bottles {
        background: transparent;
        box-shadow: none;
        padding: 0 8px;
        gap: 8px;
        width: 100%;
        justify-content: center;
        align-items: flex-end;
        border-radius: 0;
    }

    .op-hero--dairy .op-hero__bottles::after {
        display: none;
    }

    /* All dairy bottle images: uniform height on mobile, proportional */
    .op-hero--dairy .op-hero__bottle:nth-child(1) .op-hero__bottle-img,
    .op-hero--dairy .op-hero__bottle:nth-child(2) .op-hero__bottle-img,
    .op-hero--dairy .op-hero__bottle:nth-child(3) .op-hero__bottle-img,
    .op-hero--dairy .op-hero__bottle:nth-child(4) .op-hero__bottle-img {
        height: clamp(90px, 18vh, 160px);
        width: auto;
        filter: drop-shadow(0 6px 16px rgba(0,0,0,0.18));
    }

    .op-hero__bottle-size {
        font-size: 0.72rem;
    }
}

@media (max-width: 480px) {
    .op-hero__title {
        font-size: clamp(1.4rem, 7.5vw, 2rem);
    }

    .op-hero--dairy {
        min-height: calc(100svh - 70px - 90px);
    }

    .op-hero--dairy .op-hero__bottle:nth-child(1) .op-hero__bottle-img,
    .op-hero--dairy .op-hero__bottle:nth-child(2) .op-hero__bottle-img,
    .op-hero--dairy .op-hero__bottle:nth-child(3) .op-hero__bottle-img,
    .op-hero--dairy .op-hero__bottle:nth-child(4) .op-hero__bottle-img {
        height: clamp(75px, 15vh, 120px);
    }
}

