/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   AURIRA — Our Story & Process Page
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ─── Story Hero ─── */
.story-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.story-hero__bg {
    position: absolute;
    inset: 0;
}

.story-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.story-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,15,15,0.4) 0%, rgba(15,15,15,0.9) 100%);
}

.story-hero__content {
    position: relative;
    z-index: 2;
    padding: var(--space-4xl) var(--gutter) var(--space-2xl);
}

.story-hero__title {
    font-size: var(--fs-display);
    margin-bottom: var(--space-md);
}

.story-hero__subtitle {
    font-family: var(--font-subheading);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--color-ivory-soft);
    max-width: 600px;
    margin: 0 auto;
}

/* ─── Brand Story Section ─── */
.brand-story {
    padding: var(--space-3xl) 0;
}

.brand-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.brand-story__image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.brand-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-story__image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--color-gold);
    z-index: -1;
    opacity: 0.3;
}

.brand-story__content {
    padding: var(--space-lg) 0;
}

.brand-story__title {
    font-size: var(--fs-h2);
    margin-bottom: var(--space-md);
}

.brand-story__text {
    color: var(--color-ivory-soft);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-sm);
}

.brand-story__text:last-of-type {
    margin-bottom: 0;
}

/* ─── The Process — Timeline ─── */
.process-section {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-secondary);
}

.process-timeline {
    position: relative;
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--color-gold), var(--color-gold), transparent);
    transform: translateX(-50%);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

/* Dot on timeline */
.process-step::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    background: var(--color-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 0 20px var(--color-gold-glow-strong);
}

.process-step__image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.process-step__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-step__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-md);
}

.process-step__number {
    font-family: var(--font-heading);
    font-size: var(--fs-display);
    color: var(--color-gold-glow-strong);
    line-height: 1;
    margin-bottom: var(--space-xs);
    font-weight: 700;
    opacity: 0.3;
}

.process-step__title {
    font-family: var(--font-heading);
    font-size: var(--fs-h3);
    margin-bottom: var(--space-xs);
}

.process-step__text {
    color: var(--color-muted);
    font-size: var(--fs-small);
    line-height: var(--lh-relaxed);
}

/* Alternate layout */
.process-step:nth-child(even) .process-step__image {
    order: 2;
}

.process-step:nth-child(even) .process-step__content {
    order: 1;
    text-align: right;
}

/* ─── Values Section ─── */
.values-section {
    padding: var(--space-3xl) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

.value-item {
    padding: var(--space-xl) var(--space-lg);
    border: var(--border-thin);
    transition: all var(--transition-base);
}

.value-item:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.value-item__icon {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--space-md);
    color: var(--color-gold);
}

.value-item__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.value-item__title {
    font-family: var(--font-heading);
    font-size: var(--fs-h4);
    margin-bottom: var(--space-xs);
}

.value-item__text {
    color: var(--color-muted);
    font-size: var(--fs-small);
}
