/* ─────────────────────────────────────────────
   about.css  –  LushCrafts About Us page
   ───────────────────────────────────────────── */

:root {
    --purple-deep:  #6B5B8E;
    --purple-mid:   #A88FBF;
    --purple-light: #C9B8D9;
    --purple-pale:  #E8DDF2;
    --green-soft:   #8FAA70;
    --green-pale:   #EFF5E8;
    --pink-soft:    #D4A5C4;
    --pink-pale:    #FDF0F5;
    --cream:        #FAF7F2;
    --white:        #ffffff;
    --text-dark:    #2E2640;
    --text-muted:   #6B6080;
}

/* ══════════════════════════════════════════════
   SHARED UTILITIES
══════════════════════════════════════════════ */

.about-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-label {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--purple-deep);
    margin-bottom: 0.75rem;
}

.about-badge {
    display: inline-block;
    background: rgba(168,143,191,0.18);
    border: 1px solid var(--purple-light);
    color: var(--purple-deep);
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.about-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.12;
    margin-bottom: 1.2rem;
}

.about-section-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 3.5rem;
}

.about-section-lead {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 0.5rem;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */

.about-hero {
    position: relative;
    background:
        radial-gradient(ellipse at 8%  55%, rgba(201,184,217,0.4)  0%, transparent 55%),
        radial-gradient(ellipse at 92% 45%, rgba(143,170,112,0.22) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%,rgba(212,165,196,0.15) 0%, transparent 50%),
        var(--cream);
    padding: 6rem 2rem 5rem;
    text-align: center;
    overflow: visible;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: visible;
}
.about-hero-bg svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.about-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.about-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}
.about-hero-title em {
    font-style: italic;
    color: var(--purple-deep);
}

.about-hero-sub {
    font-family: 'Jost', sans-serif;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 500px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════
   SPLIT SECTIONS (story + process)
══════════════════════════════════════════════ */

.about-section {
    padding: 5.5rem 0;
    background: var(--white);
}

.about-section--light {
    background: var(--cream);
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-split--reverse {
    direction: rtl;
}
.about-split--reverse > * {
    direction: ltr;
}

/* Text side */
.about-split-text p {
    font-family: 'Jost', sans-serif;
    font-size: 0.97rem;
    line-height: 1.82;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    max-width: 100%;
}

/* Stats row */
.about-highlights {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.2rem;
    flex-wrap: wrap;
}

.about-highlight {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.about-highlight-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--purple-deep);
    line-height: 1;
}

.about-highlight-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* Image side */
.about-split-img {
    position: relative;
}

.about-img-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, #f0ecf8 0%, #eaf2e4 100%);
    box-shadow:
        0 8px 40px rgba(107,91,142,0.18),
        0 2px 8px rgba(107,91,142,0.10);
}

.about-img-frame--tall {
    aspect-ratio: 3 / 4;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}
.about-img-frame:hover .about-img {
    transform: scale(1.03);
}

/* Placeholder shown when image is missing */
.about-img-placeholder-icon {
    display: none;
    position: absolute;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--purple-mid);
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    opacity: 0.7;
}

.about-img-missing .about-img { display: none; }
.about-img-missing .about-img-placeholder-icon { display: flex; }

/* Floating badge on image */
.about-img-badge {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    padding: 0.5rem 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    z-index: 2;
}

.about-img-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-soft);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.4); opacity: 0.6; }
}

/* Decorative offset box behind image */
.about-img-frame::before {
    content: '';
    position: absolute;
    inset: -12px -12px 12px 12px;
    border-radius: 28px;
    border: 2px solid var(--purple-light);
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

/* ══════════════════════════════════════════════
   CRAFT TRADITIONS
══════════════════════════════════════════════ */

.about-crafts {
    padding: 5.5rem 0;
    background: var(--cream);
}

.crafts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.craft-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow:
        0 2px 14px rgba(107,91,142,0.08),
        0 1px 3px rgba(107,91,142,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
}

.craft-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(107,91,142,0.16);
}

.craft-card--purple { border-top-color: var(--purple-deep); }
.craft-card--green  { border-top-color: var(--green-soft);  }
.craft-card--pink   { border-top-color: var(--pink-soft);   }

/* Card image */
.craft-card-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.craft-card--purple .craft-card-img-wrap { background: var(--purple-pale); }
.craft-card--green  .craft-card-img-wrap { background: var(--green-pale);  }
.craft-card--pink   .craft-card-img-wrap { background: var(--pink-pale);   }

.craft-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.craft-card:hover .craft-card-img { transform: scale(1.05); }

.craft-card-img-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

.craft-card-body {
    padding: 1.5rem;
}

.craft-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.65rem;
}

.craft-card-text {
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0;
    max-width: 100%;
}

/* ══════════════════════════════════════════════
   FULL-WIDTH BANNER
══════════════════════════════════════════════ */

.about-banner {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.about-banner-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.about-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(46,38,64,0.72) 0%,
        rgba(46,38,64,0.35) 60%,
        transparent 100%
    );
    display: flex;
    align-items: center;
    padding: 0 4rem;
}

.about-banner-text {
    max-width: 520px;
}

.about-banner-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--white);
    line-height: 1.45;
    margin-bottom: 1rem;
}

.about-banner-attr {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.1em;
}

/* ══════════════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════════════ */

.about-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.about-step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--purple-light);
    line-height: 1;
    min-width: 2.5rem;
    padding-top: 0.1rem;
}

.about-step-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.about-step-content p {
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
    max-width: 100%;
}

/* ══════════════════════════════════════════════
   VALUES
══════════════════════════════════════════════ */

.about-values {
    padding: 5.5rem 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(107,91,142,0.12);
}

.value-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: block;
}

.value-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.value-text {
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0;
    max-width: 100%;
}

/* ══════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════ */

.about-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #6B5B8E 0%, #A88FBF 60%, #9A6B8E 100%);
}

.about-cta-inner {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
}

.about-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.about-cta-text {
    font-family: 'Jost', sans-serif;
    font-size: 0.97rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 100%;
}

.about-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta .btn-primary {
    background: var(--white);
    color: var(--purple-deep);
    border-color: var(--white);
}
.about-cta .btn-primary:hover {
    background: var(--purple-pale);
    border-color: var(--purple-pale);
}

.about-cta .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.about-cta .btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */

@media (max-width: 960px) {
    .about-split,
    .about-split--reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
        direction: ltr;
    }

    .about-img-frame {
        aspect-ratio: 16 / 9;
        max-width: 560px;
        margin: 0 auto;
    }

    .crafts-grid  { grid-template-columns: 1fr 1fr; }
    .values-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .about-hero   { padding: 4rem 1.2rem 3.5rem; }
    .about-section,
    .about-crafts,
    .about-values { padding: 3.5rem 0; }

    .about-container { padding: 0 1.2rem; }

    .crafts-grid  { grid-template-columns: 1fr; }
    .values-grid  { grid-template-columns: 1fr; }

    .about-banner { height: 300px; }
    .about-banner-overlay { padding: 0 1.5rem; }

    .about-highlights { gap: 1.5rem; }
    .about-highlight-num { font-size: 1.8rem; }

    .about-cta { padding: 3.5rem 1.2rem; }
}