/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    max-width: 900px;
    width: 100%;
}

.hero-card {
    color: white;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-card h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    white-space: nowrap;
}

.hero-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-card p strong {
    font-weight: 600;
    color: var(--color-gold);
}

.gold-line {
    width: 80px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 0 auto 32px;
    box-shadow: 0 0 10px rgba(193, 154, 70, 0.5);
}

.hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.meta-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.meta-value {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: bold;
    color: var(--color-gold);
}

.meta-divider {
    width: 1px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.3);
}

.hero-scroll-indicator-black {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator-black span {
    color: rgb(0, 0, 0);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
    display: block;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
    color: white;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ===== OUR BRANDS SECTION ===== */
.brands {
    padding: 100px 0 120px;
    position: relative;
    background-image: var(--section-bg, none);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.brands::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(248, 246, 242, 0.75);
    z-index: 0;
    pointer-events: none;
}

.brands .container {
    position: relative;
    z-index: 1;
}

.brands-header {
    text-align: center;
    margin-bottom: 80px;
}

.brands-header h2 {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.brands-header .gold-underline {
    margin: 0 auto 24px;
}

.brands-intro {
    font-size: 1rem;
    color: var(--color-text-dark);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Timeline Grid Layout - 3 Columns */
.brands-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.brand-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    background-color: #fafafa;
    transition: box-shadow 0.3s ease, opacity 0.3s ease;
    border: 1px solid transparent;
    border-top: none;
    will-change: box-shadow;
}

/* Subtle color differentiation for each segment */
.brand-column-professional {
    background-color: #f5f5f5;
    border-color: #e8e8e8;
}

.brand-column-professional:hover {
    background-color: #f9f7f3;
    box-shadow: 0 8px 32px rgba(193, 154, 70, 0.08);
    border-color: rgba(193, 154, 70, 0.2);
}

.brand-column-premium {
    background-color: #fef9f5;
    border-color: #f0e8e0;
}

.brand-column-premium:hover {
    background-color: #fffaf6;
    box-shadow: 0 8px 32px rgba(193, 154, 70, 0.1);
    border-color: rgba(193, 154, 70, 0.3);
}

.brand-column-consumer {
    background-color: #faf8f5;
    border-color: #f0e8e0;
}

.brand-column-consumer:hover {
    background-color: #fcfaf7;
    box-shadow: 0 8px 32px rgba(193, 154, 70, 0.08);
    border-color: rgba(193, 154, 70, 0.2);
}

/* Brand Logo */
.brand-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

/* Segment Label */
.segment-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-gold);
    margin-bottom: 12px;
    padding: 4px 12px;
    background-color: rgba(193, 154, 70, 0.08);
    border-radius: 20px;
}

/* Brand Column Heading */
.brand-column h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    font-weight: bold;
}

/* Brand Description */
.brand-description {
    font-size: 0.95rem;
    color: var(--color-text-dark);
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 28px;
}

.brand-description strong {
    font-weight: 600;
    color: var(--color-text-dark);
}

/* Brand Specs */
.brand-specs {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.spec-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-gold);
    opacity: 0.9;
}

.spec-value {
    font-size: 0.9rem;
    color: var(--color-text-dark);
    font-weight: 500;
}

.brand-column .btn-see-all {
    margin-top: 28px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .brands-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .brand-column {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .brands {
        padding: 80px 0 100px;
    }
    
    .brands-header h2 {
        font-size: 2.4rem;
    }
    
    .brands-timeline {
        gap: 30px;
    }
    
    .brand-column {
        padding: 30px 20px;
    }
}


/* ===== OLIVES SECTION ===== */
.olives {
    position: relative;
    background-image: var(--section-bg, none);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.olives::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(248, 246, 242, 0.75);
    z-index: 0;
    pointer-events: none;
}

.olives > * {
    position: relative;
    z-index: 1;
}

.olives-top {
    background-color: var(--color-dark-green);
    padding: 70px 40px 20px;
    text-align: center;
}

.olives-top h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
}

.olives-title-wrap {
    display: inline-block;
    cursor: default;
}

.olives-title-wrap .gold-underline {
    margin: 0 0 0 0;
    transition: width 0.4s ease;
}

.olives-title-wrap:hover .gold-underline {
    width: 100%;
}

.olives-content {
    position: relative;
    background: linear-gradient(to bottom, var(--color-dark-green) 50%, transparent 50%);
}

.olives-grid {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 40px 0;
}

.olive-item {
    flex: 1;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: inherit;
    position: relative;
    z-index: 3;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.olive-item:hover {
    transform: translateY(-15px) scale(1.05);
}

.olive-image-container {
    position: relative;
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}

.olive-item:hover .olive-image-container {
    z-index: 1;
}

.olive-mask-svg {
    width: 220px;
    height: 380px;
    transition: transform 0.15s ease-out;
}

.olive-outline {
    fill: none;
    stroke: var(--color-gold);
    stroke-width: 0;
    transition: stroke-width 0.3s ease-out;
}

.olive-item:hover .olive-outline {
    stroke-width: 6;
}

/* Base rotations for each olive */
.olive-item:nth-child(1) .olive-image-container {
    --base-rotation: -15deg;
}
.olive-item:nth-child(2) .olive-image-container {
    --base-rotation: 0deg;
}
.olive-item:nth-child(3) .olive-image-container {
    --base-rotation: 15deg;
}

.olive-label {
    text-align: center;
    padding: 30px 20px 50px;
    position: relative;
    z-index: 2;
}

.olive-label h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-dark-green);
    margin-bottom: 8px;
}

.olive-label p {
    font-size: 0.85rem;
    color: var(--color-text-dark);
    opacity: 0.7;
}

/* Horizontal divider line */
.section-divider-line {
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 4px;
    background-color: var(--color-olive-green);
    z-index: 1;
    transform: translateY(-50%);
}

.olives-bottom {
    height: 80px;
}

/* ===== OIL SECTION ===== */
.oil {
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    background-image: var(--section-bg, none);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.oil::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(248, 246, 242, 0.75);
    z-index: 0;
    pointer-events: none;
}

.oil .container {
    position: relative;
    z-index: 1;
}

.oil h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-text-dark);
    margin-bottom: 15px;
}

.oil-title-wrap {
    display: inline-block;
    cursor: default;
}

.oil-title-wrap .gold-underline {
    margin-bottom: 60px;
    transition: width 0.4s ease;
    margin-left: 0;
}

.oil-title-wrap:hover .gold-underline {
    width: 100%;
}

.oil-products {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 24px;
    max-width: 860px;
    margin: 0 auto 50px;
}

.oil-bottle {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    animation: oilBottleIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.oil-bottle:nth-child(1) { animation-delay: 0.05s; }
.oil-bottle:nth-child(2) { animation-delay: 0.18s; }
.oil-bottle:nth-child(3) { animation-delay: 0.31s; }
.oil-bottle:nth-child(4) { animation-delay: 0.44s; }

@keyframes oilBottleIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.oil-bottle img { width: auto; object-fit: contain; object-position: bottom; }
.oil-bottle:nth-child(1) img { height: 240px; }
.oil-bottle:nth-child(2) img { height: 330px; }
.oil-bottle:nth-child(3) img { height: 430px; }
.oil-bottle:nth-child(4) img { height: 520px; }

.oil-bottle span {
    display: block;
    margin-top: 18px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.7;
    color: var(--color-text-dark);
}

.oil-cta {
    text-align: center;
}

/* ===== DAIRY SECTION ===== */
.dairy {
    position: relative;
    background-color: #ffffff;
}

.dairy-header {
    background-color: #1a3f6f;
    padding: 80px 40px 90px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.dairy-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.dairy-header .gold-underline {
    margin: 0 auto;
}

.dairy-body {
    background: #ffffff;
    border-radius: 50% 50% 0 0 / 70px 70px 0 0;
    position: relative;
    z-index: 2;
    margin-top: -50px;
    padding: 60px 0 100px;
}

.dairy-gold-dots {
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    margin: 0 auto 50px;
    box-shadow:
        -40px 0 0 var(--color-gold),
        -20px 0 0 var(--color-gold),
        20px 0 0 var(--color-gold),
        40px 0 0 var(--color-gold);
}

.dairy-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.dairy-item {
    flex: 1;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: inherit;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dairy-item:hover {
    transform: translateY(-15px) scale(1.05);
}

.dairy-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dairy-mask-svg {
    width: 375px;
    height: 500px;
}

.dairy-outline {
    fill: none;
    stroke: var(--color-gold);
    stroke-width: 0;
    transition: stroke-width 0.3s ease-out;
}

.dairy-item:hover .dairy-outline {
    stroke-width: 6;
}

.dairy-label {
    text-align: center;
    padding: 20px 20px 10px;
}

.dairy-label h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #1a3f6f;
}

.dairy-label p {
    color: #666;
    font-size: 0.9rem;
    margin-top: 6px;
}

/* ===== SPECIALTIES SECTION ===== */
.specialties {
    background-color: var(--color-cream);
    background-image: var(--section-bg, none);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    border-top: 4px solid var(--color-gold);
    padding: 90px 0 100px;
    text-align: center;
    position: relative;
}

.specialties::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(245, 243, 239, 0.91);
    z-index: 0;
    pointer-events: none;
}

.specialties .container {
    position: relative;
    z-index: 1;
}

.specialties-header {
    margin-bottom: 60px;
}

.specialties-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #1a3f6f;
    margin-bottom: 15px;
}

.specialties-header .gold-underline {
    margin: 0 auto;
}

.specialties-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.slider-arrow {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid #1a3f6f;
    background-color: transparent;
    color: #1a3f6f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.slider-arrow:hover {
    background-color: #1a3f6f;
    color: #ffffff;
    border-color: #1a3f6f;
}

.specialties-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.specialties-track {
    position: relative;
    height: 440px;
}

.specialty-slide {
    position: absolute;
    width: 58%;
    left: 50%;
    top: 0;
    text-align: center;
    transform: translateX(-50%) scale(0.65);
    opacity: 0;
    pointer-events: none;
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.4s ease,
        left 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
}

.specialty-slide.active {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    left: 50%;
    z-index: 3;
    pointer-events: auto;
}

.specialty-slide.prev {
    opacity: 0.55;
    transform: translateX(-50%) scale(0.74);
    left: 13%;
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
}

.specialty-slide.next {
    opacity: 0.55;
    transform: translateX(-50%) scale(0.74);
    left: 87%;
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
}

.specialty-slide img {
    max-height: 340px;
    width: auto;
    max-width: 100%;
    margin: 0 auto 20px;
    display: block;
}

.specialty-slide h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #1a3f6f;
    font-weight: 700;
}

.specialties-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.specialties-dot {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.specialties-dot::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(26, 63, 111, 0.25);
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.specialties-dot.active::before {
    background-color: #1a3f6f;
    transform: scale(1.3);
}

.specialties-cta {
    text-align: center;
}

/* ===== PARTNERS SECTION ===== */
.partners {
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    background-image: var(--section-bg, none);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-top: 4px solid var(--color-gold);
}

.partners::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(248, 246, 242, 0.75);
    z-index: 0;
    pointer-events: none;
}

.partners .container {
    position: relative;
    z-index: 1;
}

.partners h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-text-dark);
    margin-bottom: 15px;
}

.partners-title-wrap {
    display: inline-block;
    cursor: default;
}

.partners-title-wrap .gold-underline {
    margin-bottom: 60px;
    transition: width 0.4s ease;
    margin-left: 0;
}

.partners-title-wrap:hover .gold-underline {
    width: 100%;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 80px;
    max-width: 850px;
    margin: 0 auto;
    align-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.partner-logo img {
    width: 100%;
    height: auto;
    max-height: 55px;
    max-width: 140px;
    object-fit: contain;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.partner-logo {
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-8px);
}

.partner-logo:hover img {
    transform: scale(1.1);
    filter: saturate(1.3) brightness(1.1);
}

/* Last row centered */
.partners-grid .partner-logo:nth-child(7) {
    grid-column: 1 / 2;
    justify-self: center;
}

.partners-grid .partner-logo:nth-child(8) {
    grid-column: 2 / 3;
    justify-self: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    /* Brands */
    .brands-intro {
        margin: 20px auto 0;
        max-width: 450px;
    }

    /* Olives */
    .olives-grid,
    .dairy-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .olive-item,
    .dairy-item {
        max-width: 280px;
    }

    .section-divider-line {
        display: none;
    }

    .olives-content {
        background: var(--color-dark-green);
    }

    .olives-content::after {
        display: none;
    }

    .olive-label {
        background: none;
        width: 100%;
        margin-top: -20px;
        padding-top: 40px;
    }

    .olive-label h3 {
        color: white;
    }

    .olive-label p {
        color: rgba(255, 255, 255, 0.75);
        opacity: 1;
    }

    .dairy-body {
        border-radius: 30px 30px 0 0;
        margin-top: -30px;
    }

    /* Partners */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .partners-grid .partner-logo:nth-child(7),
    .partners-grid .partner-logo:nth-child(8) {
        grid-column: auto;
        justify-self: center;
        padding: 15px;
    }

    /* Oil */
    .oil-bottle:nth-child(1) img { height: 190px; }
    .oil-bottle:nth-child(2) img { height: 265px; }
    .oil-bottle:nth-child(3) img { height: 345px; }
    .oil-bottle:nth-child(4) img { height: 420px; }
}

@media (max-width: 768px) {
    /* Hero */
    .hero-card h1 {
        font-size: 2.5rem;
        white-space: normal;
    }

    .hero-card p {
        font-size: 0.85rem;
    }

    /* Brands */
    .brands,
    .oil,
    .specialties,
    .partners {
        padding: 60px 0;
    }

    .olives-top {
        padding: 50px 25px 0;
    }

    .dairy-header {
        padding: 60px 25px 80px;
    }

    .brand-logo {
        height: 50px;
    }

    /* Olive/dairy labels */
    .olive-label h3,
    .dairy-label h3 {
        font-size: 2rem;
    }

    /* Specialties slider — single-view on mobile */
    .specialties-slider-wrapper {
        gap: 10px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .specialties-track {
        height: 360px;
    }

    .specialty-slide.prev,
    .specialty-slide.next {
        opacity: 0;
        pointer-events: none;
    }

    .specialty-slide.active {
        width: 100%;
    }

    .specialty-slide img {
        max-height: 260px;
    }

    .specialty-slide h3 {
        font-size: 1.6rem;
    }

    /* Oil */
    .oil-bottle:nth-child(1) img { height: 145px; }
    .oil-bottle:nth-child(2) img { height: 200px; }
    .oil-bottle:nth-child(3) img { height: 260px; }
    .oil-bottle:nth-child(4) img { height: 320px; }

    /* Partners */
    .partners-grid {
        gap: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-card h1 {
        font-size: 2rem;
        margin-bottom: 6px;
        white-space: normal;
    }

    .hero-card p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .gold-line {
        margin-top: 8px;
        width: 70px;
    }

    .partner-logo img {
        max-height: 40px;
        max-width: 90px;
    }

    .oil-bottle:nth-child(1) img { height: 110px; }
    .oil-bottle:nth-child(2) img { height: 155px; }
    .oil-bottle:nth-child(3) img { height: 200px; }
    .oil-bottle:nth-child(4) img { height: 250px; }

    /* Specialties slider \u2014 compact on small phones */
    .specialties-track {
        height: 310px;
    }

    .specialty-slide img {
        max-height: 210px;
    }
}
