/* ==========================================================================
   KALP About Page Styles
   Alternating dark/light sections with gold accents.
   Uses design tokens from variables.css.
   ========================================================================== */

/* ── Shared Section Styles ── */
.about-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.about-container {
    max-width: var(--container-md);
    margin: 0 auto;
    padding: 0 var(--space-xl, 2rem);
}

.about-section__heading {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 300;
    text-align: center;
    letter-spacing: var(--tracking-wide);
    margin-bottom: var(--space-sm);
}

.about-section__ornament {
    width: 60px;
    height: var(--border-medium);
    background: var(--gold);
    margin: 0 auto var(--space-2xl, 2.5rem);
}

/* ── Shared Text Styles ── */
.about-section p {
    font-family: var(--font-body);
    font-size: var(--text-md);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-lg, 1.5rem);
}

.about-section p:last-child {
    margin-bottom: 0;
}


/* ==========================================================================
   SECTION 1: HERO BANNER
   ========================================================================== */
.about-hero {
    background: var(--deep-brown);
    padding: clamp(6rem, 12vw, 10rem) var(--space-xl, 2rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero__tagline {
    font-family: var(--font-cursive);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--gold-light);
    margin-bottom: var(--space-md);
}

.about-hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 300;
    color: var(--cream);
    letter-spacing: var(--tracking-wide);
    margin-bottom: var(--space-sm);
}

.about-hero__subtitle {
    font-family: var(--font-button);
    font-size: var(--text-sm);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: var(--space-lg);
}

/* Ornament (line — diamond — line) */
.about-hero__ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin: var(--space-lg) auto;
}

.about-hero__line {
    width: 60px;
    height: var(--border-thin);
    background: var(--gold);
    opacity: var(--opacity-subtle);
}

.about-hero__diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    opacity: 0.6;
}


/* ==========================================================================
   SECTION 2: BRAND PHILOSOPHY (Light)
   ========================================================================== */
.about-philosophy {
    background: var(--cream);
}

.about-philosophy .about-section__heading {
    color: var(--deep-brown);
}

.about-philosophy__content p {
    color: var(--deep-brown);
    opacity: var(--opacity-strong);
}

.about-philosophy__lead {
    font-size: var(--text-lg) !important;
    font-weight: var(--weight-medium);
    color: var(--deep-brown) !important;
    opacity: 1 !important;
}

.about-philosophy__quote {
    font-family: var(--font-cursive);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--gold-dark);
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    margin: var(--space-xl) 0;
    border-left: var(--border-thick) solid var(--gold);
    background: rgba(201, 168, 76, 0.04);
}

.about-philosophy__closing {
    font-size: var(--text-lg) !important;
    font-weight: var(--weight-medium);
    text-align: center;
    margin-top: var(--space-xl) !important;
    color: var(--deep-brown) !important;
    opacity: 1 !important;
}


/* ==========================================================================
   SECTION 3: WHY WE EXIST (Dark)
   ========================================================================== */
.about-why {
    background: var(--deep-brown);
}

.about-why .about-section__heading {
    color: var(--cream);
}

.about-why__content p {
    color: var(--cream);
    opacity: 0.8;
}

.about-why__highlight {
    font-size: var(--text-xl) !important;
    text-align: center;
    padding: var(--space-xl) 0;
    opacity: 1 !important;
}

.about-why__highlight strong {
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 400;
    display: block;
    margin-top: var(--space-xs);
}


/* ==========================================================================
   SECTION 4: FOUR EXPRESSIONS / FLAVOURS (Light)
   ========================================================================== */
.about-flavours {
    background: var(--cream);
}

.about-flavours .about-section__heading {
    color: var(--deep-brown);
}

.about-flavours__intro {
    text-align: center;
    font-size: var(--text-lg) !important;
    color: var(--deep-brown);
    opacity: 0.8;
    margin-bottom: var(--space-3xl, 3rem) !important;
}

.about-flavours__grid {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 5vw, 4rem);
}

/* Flavour Card */
.about-flavour-card {
    display: flex;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: stretch;
    background: var(--white);
    border-radius: var(--radius-lg, 12px);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--duration-normal, 0.3s) var(--ease-out);
}

.about-flavour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 36px rgba(26, 10, 3, 0.1);
}

.about-flavour-card--reverse {
    flex-direction: row-reverse;
}

.about-flavour-card__image {
    flex: 0 0 40%;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.about-flavour-card__city {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    font-family: var(--font-button);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--cream);
    background: rgba(26, 10, 3, 0.6);
    padding: 4px 14px;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(4px);
}

.about-flavour-card__content {
    flex: 1;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-flavour-card__name {
    font-family: var(--font-flavour);
    font-size: var(--text-2xl);
    font-weight: normal;
    color: var(--deep-brown);
    margin-bottom: var(--space-xs);
}

.about-flavour-card__tagline {
    font-family: var(--font-display);
    font-size: var(--text-md);
    font-style: italic;
    color: var(--gold-dark);
    margin-bottom: var(--space-md) !important;
}

.about-flavour-card__content p:last-child {
    color: var(--deep-brown);
    opacity: var(--opacity-semi);
    font-size: var(--text-base) !important;
    line-height: var(--leading-relaxed);
}

.about-flavours__closing {
    text-align: center;
    font-style: italic;
    font-size: var(--text-lg) !important;
    color: var(--deep-brown);
    opacity: 0.7;
    margin-top: clamp(2rem, 5vw, 4rem) !important;
}


/* ==========================================================================
   SECTION 5: THE CRAFT / PROCESS (Dark)
   ========================================================================== */
.about-craft {
    background: var(--deep-brown);
}

.about-craft .about-section__heading {
    color: var(--cream);
}

.about-craft__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.about-craft__card {
    /* User direction: keep the same subtle whiteness (0.04) as before;
       add a backdrop-filter BLUR so the cards read as frosted-glass panels
       — the temple background behind each card is softly blurred while
       everywhere else stays sharp. That's what creates card definition
       on the lighter 0.5 overlay, NOT bumping the cream alpha. */
    background: rgba(255, 248, 238, 0.04);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: var(--border-thin) solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-lg, 12px);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    text-align: center;
    transition: all var(--duration-normal, 0.3s) var(--ease-out);
}

.about-craft__card:hover {
    background: rgba(255, 248, 238, 0.07);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
}

.about-craft__icon {
    color: var(--gold);
    margin-bottom: var(--space-lg);
}

.about-craft__card h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 400;
    color: var(--cream);
    margin-bottom: var(--space-sm);
}

.about-craft__card p {
    color: var(--cream);
    opacity: 0.7;
    font-size: var(--text-base) !important;
    line-height: var(--leading-relaxed);
}

/* Section intro paragraph (added during Chat 02 Google-Doc content migration).
   The intro `<p>` sits between the section heading and the cards/grid below.
   Three sections have one — colour matches each section's background context:
     about-craft   -> 78% dark overlay on Varanasi bg -> CREAM text
     about-vision  -> 78% dark overlay on Kolkata bg  -> CREAM text
     about-flavours -> cream bg                       -> DEEP-BROWN (default) */
.about-craft__intro,
.about-vision__intro {
    color: var(--cream);
    opacity: 0.85;
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-2xl, 3rem);
    font-family: var(--font-body);
    font-size: var(--text-md, 1.05rem);
    line-height: var(--leading-relaxed, 1.65);
}

.about-flavours__intro {
    color: var(--deep-brown);
    opacity: 0.82;
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-2xl, 3rem);
    font-family: var(--font-body);
    font-size: var(--text-md, 1.05rem);
    line-height: var(--leading-relaxed, 1.65);
}

/* ── Glass-morphism on the CRAFT section's heading + intro paragraph ──
   Per user (2026-06-26): the "The Craft" heading and the intro paragraph each get
   their OWN glass box, matching the .about-craft__card glass exactly
   (bg rgba(255,248,238,0.04) · blur(4px) · gold 0.15 border · 8px radius).
   Craft section FIRST for sign-off; the other About sections follow after approval
   (multi-paragraph sections will combine their paras into ONE box). */
.about-craft .about-section__heading {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-md, 1rem);
    padding: 0.55rem 1.6rem;
    background: rgba(255, 248, 238, 0.04);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 8px;
    transition: all var(--duration-normal, 0.3s) var(--ease-out);
}
.about-craft__intro {
    padding: 1.4rem 1.9rem;
    background: rgba(255, 248, 238, 0.04);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 8px;
    transition: all var(--duration-normal, 0.3s) var(--ease-out);
}

/* Hover lift on the Craft heading + intro glass boxes — mirrors
   .about-craft__card:hover exactly (bg 0.04->0.07 · blur 4->6 ·
   border 0.15->0.3 · translateY(-4px)) so the two boxes react like the cards. */
.about-craft .about-section__heading:hover,
.about-craft__intro:hover {
    background: rgba(255, 248, 238, 0.07);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
}

/* ── Glass-morphism roll-out (Chat 07) — same spec + hover as the Craft cards,
   scoped per section so nothing leaks. Combined groups use invisible wrapper
   divs added to the About page content (page 45). ── */

/* HERO — "Our Story" + "About KALP" + subtitle combine into ONE box. */
.about-hero .about-hero__lockup {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 1.6rem 2.4rem;
    background: rgba(255, 248, 238, 0.04);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 8px;
    transition: all var(--duration-normal, 0.3s) var(--ease-out);
}
.about-hero .about-hero__lockup:hover {
    background: rgba(255, 248, 238, 0.07);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
}

/* WHY WE EXIST — heading = own box · "It started with a memory." + the 3
   paragraphs = ONE box (.about-why__story wrapper) · "Because some flavors
   deserve a better home." = own box (2nd highlight, direct child). Scoped to .about-why. */
.about-why .about-section__heading,
.about-why__story,
.about-why__content > .about-why__highlight {
    background: rgba(255, 248, 238, 0.04);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 8px;
    transition: all var(--duration-normal, 0.3s) var(--ease-out);
}
.about-why .about-section__heading:hover,
.about-why__story:hover,
.about-why__content > .about-why__highlight:hover {
    background: rgba(255, 248, 238, 0.07);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
}
.about-why .about-section__heading {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0.55rem 1.6rem;
}
.about-why__story {
    max-width: 760px;
    margin: 0 auto 1.5rem;
    padding: 0.4rem 1.9rem 1.4rem;
}
.about-why__content > .about-why__highlight {
    max-width: 760px;
    margin: 0 auto;
    padding: 1rem 1.9rem;
}
.about-why__story > :last-child { margin-bottom: 0; }

/* THE ROAD AHEAD — heading = own box · intro 2 paragraphs = ONE box
   (.about-vision__lede) · "What's Next" + bullets = ONE box (.about-vision__next)
   · "Our Ambition" + 2 paragraphs = ONE box (.about-vision__ambition).
   Scoped to .about-vision. */
.about-vision .about-section__heading,
.about-vision__lede,
.about-vision__next,
.about-vision__ambition {
    background: rgba(255, 248, 238, 0.04);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 8px;
    transition: all var(--duration-normal, 0.3s) var(--ease-out);
}
.about-vision .about-section__heading:hover,
.about-vision__lede:hover,
.about-vision__next:hover,
.about-vision__ambition:hover {
    background: rgba(255, 248, 238, 0.07);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
}
.about-vision .about-section__heading {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0.55rem 1.6rem;
}
.about-vision__lede,
.about-vision__next,
.about-vision__ambition {
    max-width: 820px;
    margin: 0 auto 1.5rem;
    padding: 1.6rem 2rem;
}
/* even glass padding — drop the inner elements' own outer margins at the box edges */
.about-vision__lede > :first-child,
.about-vision__next > :first-child,
.about-vision__ambition > :first-child { margin-top: 0; }
.about-vision__lede > :last-child,
.about-vision__next > :last-child,
.about-vision__ambition > :last-child { margin-bottom: 0; }

/* About / Vision (Kolkata bridge bg with 78% dark overlay).
   Beyond the __intro, the section has plain <p> paragraphs, two
   __subheading headings ("What's Next" / "Our Ambition"), a __list
   of items, and a __closing italic line. Every text element needs
   cream — they default to deep-brown which is invisible on the dark bg. */
.about-vision .about-container p,
.about-vision__subheading,
.about-vision__list,
.about-vision__list li,
.about-vision__closing {
    color: var(--cream);
}

.about-vision .about-container p {
    opacity: 0.9;
    font-family: var(--font-body);
    font-size: var(--text-md, 1.05rem);
    line-height: var(--leading-relaxed, 1.7);
    max-width: 760px;
    margin: 0 auto 1.5rem;
}

.about-vision__subheading {
    font-family: var(--font-display);
    font-size: var(--text-xl, 1.5rem);
    font-weight: 600;
    color: var(--gold-light, #E8C97A);
    margin: 2.5rem auto 1rem;
    max-width: 760px;
    letter-spacing: 0.01em;
}

.about-vision__list {
    max-width: 760px;
    margin: 0 auto 2rem;
    padding-left: 1.25rem;
    list-style: none;
}

.about-vision__list li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1.5rem;
    font-family: var(--font-body);
    line-height: var(--leading-relaxed, 1.7);
    border-bottom: 1px solid rgba(255, 248, 238, 0.08);
}

.about-vision__list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 0.55rem;
    color: var(--gold);
    font-size: 0.7rem;
    line-height: 1;
}

.about-vision__list li:last-child {
    border-bottom: none;
}

.about-vision__closing {
    font-style: italic;
    text-align: center;
    max-width: 720px;
    margin: 2.5rem auto 0;
    font-family: var(--font-body);
    font-size: var(--text-lg, 1.2rem);
    line-height: var(--leading-relaxed, 1.65);
    color: var(--gold-light, #E8C97A);
    opacity: 0.92;
}


/* ==========================================================================
   SECTION 6: PRANADA — PARENT COMPANY (Light)
   ========================================================================== */
.about-pranada {
    background: var(--cream);
}

.about-pranada .about-section__heading {
    color: var(--deep-brown);
}

.about-pranada__content {
    max-width: var(--container-sm);
    margin: 0 auto;
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    border: var(--border-thin) solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-lg, 12px);
    background: rgba(201, 168, 76, 0.03);
}

.about-pranada__company {
    font-family: var(--font-display);
    font-size: var(--text-xl) !important;
    font-weight: 400;
    color: var(--gold-dark) !important;
    margin-bottom: var(--space-lg) !important;
    letter-spacing: var(--tracking-wide);
}

.about-pranada__content p {
    color: var(--deep-brown);
    opacity: 0.8;
}

.about-pranada__address {
    font-size: var(--text-sm) !important;
    opacity: 1 !important; /* now holds the Pranada website link, not faded address text */
    margin-top: var(--space-lg) !important;
    line-height: var(--leading-relaxed);
}
.about-pranada__address a {
    font-size: var(--text-base); /* a little larger than the old address text */
    font-weight: 500;
    color: var(--gold-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(166, 138, 58, 0.45);
    transition: color 0.25s ease, border-color 0.25s ease;
}
.about-pranada__address a:hover {
    color: var(--chocolate, #5A2010);
    border-color: var(--chocolate, #5A2010);
}


/* ==========================================================================
   SECTION 7: FUTURE VISION (Dark)
   ========================================================================== */
.about-vision {
    background: var(--deep-brown);
}

.about-vision .about-section__heading {
    color: var(--cream);
}

.about-vision__intro {
    text-align: center;
    color: var(--cream) !important;
    font-size: var(--text-lg) !important;
    opacity: 0.8;
}

.about-vision__list {
    list-style: none;
    max-width: 600px;
    margin: var(--space-2xl) auto;
    padding: 0;
}

.about-vision__list li {
    font-family: var(--font-body);
    font-size: var(--text-md);
    color: var(--cream);
    opacity: 0.8;
    padding: var(--space-sm) 0 var(--space-sm) var(--space-xl);
    position: relative;
    border-bottom: var(--border-thin) solid rgba(201, 168, 76, 0.1);
}

.about-vision__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    background: var(--gold);
}

.about-vision__closing {
    text-align: center;
    color: var(--gold-light) !important;
    font-style: italic;
    font-size: var(--text-lg) !important;
    margin-top: var(--space-2xl) !important;
}


/* ==========================================================================
   SECTION 8: PRESS / MEDIA (Light)
   ========================================================================== */
.about-press {
    background: var(--cream);
}

.about-press .about-section__heading {
    color: var(--deep-brown);
}

.about-press__grid {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.about-press__placeholder {
    width: 150px;
    height: 60px;
    border: var(--border-thin) dashed rgba(26, 10, 3, 0.15);
    border-radius: var(--radius-sm, 6px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--deep-brown);
    opacity: 0.3;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-press__note {
    text-align: center;
    font-size: var(--text-sm) !important;
    opacity: var(--opacity-subtle);
    font-style: italic;
}


/* ==========================================================================
   SECTION 9: CTA (Gold Gradient)
   ========================================================================== */
.about-cta {
    background: linear-gradient(135deg, var(--deep-brown) 0%, #2A1508 50%, var(--deep-brown) 100%);
    text-align: center;
    padding: clamp(5rem, 10vw, 8rem) var(--space-xl);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.about-cta__tagline {
    font-family: var(--font-cursive);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--gold-light);
    margin-bottom: var(--space-sm) !important;
}

.about-cta__heading {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 300;
    color: var(--cream);
    letter-spacing: var(--tracking-wide);
    margin-bottom: var(--space-sm);
}

.about-cta__sub {
    font-family: var(--font-body);
    font-size: var(--text-md) !important;
    color: var(--cream);
    opacity: 0.6;
    margin-bottom: var(--space-2xl) !important;
}

.about-cta__btn {
    display: inline-block;
    font-family: var(--font-button);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--deep-brown);
    background: var(--gold);
    padding: 16px 48px;
    border: var(--border-medium) solid var(--gold);
    border-radius: var(--radius-sm, 6px);
    text-decoration: none;
    transition: all var(--duration-normal, 0.3s) var(--ease-out);
}

.about-cta__btn:hover {
    background: transparent;
    color: var(--gold);
}


/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.kalp-breadcrumbs {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-sm) var(--space-xl);
    margin-top: calc(var(--header-height) + 40px); /* below header + announcement bar */
}

.breadcrumbs__list {
    display: flex;
    gap: var(--space-xs);
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--brown-text);
}

.breadcrumbs__item + .breadcrumbs__item::before {
    content: '>';
    margin-right: var(--space-xs);
    color: rgba(122, 74, 46, 0.4);
}

.breadcrumbs__item a {
    color: var(--gold-dark);
    text-decoration: none;
    transition: color var(--duration-fast);
}

.breadcrumbs__item a:hover {
    color: var(--gold);
}

.breadcrumbs__item--current {
    color: var(--deep-brown);
    opacity: 0.6;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.kalp-footer {
    background: var(--deep-brown);
    padding: clamp(3rem, 6vw, 5rem) 0 var(--space-xl);
    border-top: var(--border-thin) solid rgba(201, 168, 76, 0.15);
}

.footer__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    margin-bottom: var(--space-3xl, 3rem);
}

.footer__logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: var(--space-sm);
}

.footer__tagline {
    font-family: var(--font-cursive);
    font-size: var(--text-lg);
    color: var(--gold-light);
    margin-bottom: var(--space-xs) !important;
}

.footer__legal-note {
    font-size: var(--text-xs) !important;
    color: var(--cream);
    opacity: 0.7;
}

.footer__heading {
    font-family: var(--font-button);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.footer__links {
    list-style: none;
    padding: 0;
}

.footer__links li {
    margin-bottom: 2px;
}

.footer__links a {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--cream);
    opacity: var(--opacity-semi);
    text-decoration: none;
    transition: opacity var(--duration-fast, 0.2s);
    display: inline-block;
    padding: 10px 0;
    min-height: 44px;
    line-height: 1.5;
}

.footer__links a:hover {
    opacity: 1;
    color: var(--gold-light);
}

.footer__bottom {
    border-top: var(--border-thin) solid rgba(201, 168, 76, 0.1);
    padding-top: var(--space-lg);
    text-align: center;
}

.footer__bottom p {
    font-size: var(--text-xs) !important;
    color: var(--cream);
    opacity: 0.7;
}


/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */

/* Elements with data-reveal attribute start invisible and animate in */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal="left"] {
    transform: translateX(-40px);
}

[data-reveal="right"] {
    transform: translateX(40px);
}

[data-reveal="scale"] {
    transform: scale(0.92);
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger children within a grid */
[data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal-stagger].is-revealed > *:nth-child(1) { transition-delay: 0s; }
[data-reveal-stagger].is-revealed > *:nth-child(2) { transition-delay: 0.1s; }
[data-reveal-stagger].is-revealed > *:nth-child(3) { transition-delay: 0.2s; }
[data-reveal-stagger].is-revealed > *:nth-child(4) { transition-delay: 0.3s; }

[data-reveal-stagger].is-revealed > * {
    opacity: 1;
    transform: translateY(0);
}

/* Flavour card hover enhancement */
.about-flavour-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.about-flavour-card {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 900;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: var(--border-thin) solid rgba(201, 168, 76, 0.3);
    background: var(--deep-brown);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--deep-brown);
}

/* ==========================================================================
   SOCIAL LINK ICONS
   ========================================================================== */
.footer__links a svg {
    vertical-align: middle;
    margin-right: 6px;
}

/* ==========================================================================
   RESPONSIVE — Tablet & Mobile
   ========================================================================== */
@media (max-width: 768px) {

    .about-flavour-card,
    .about-flavour-card--reverse {
        flex-direction: column;
    }

    .about-flavour-card__image {
        flex: none;
        min-height: 200px;
    }

    .about-craft__grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 480px) {

    .about-hero__title {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }

    .about-hero__subtitle {
        font-size: 0.9rem;
        padding: 0 8px;
    }

    .about-press__grid {
        flex-direction: column;
        align-items: center;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .about-flavour-card__content {
        padding: 24px 16px;
    }
}

/* Ultra-small screens (320px) */
@media (max-width: 360px) {
    .about-hero__title {
        font-size: 2rem;
    }

    .about-section__title {
        font-size: 1.4rem;
    }

    .about-flavour-card__name {
        font-size: 1.3rem;
    }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 900;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: var(--border-thin) solid rgba(201, 168, 76, 0.3);
    background: var(--deep-brown);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--deep-brown);
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 80px;
        right: 16px;
    }
}

/* Social link icons in footer */
.footer__links a svg {
    vertical-align: middle;
    margin-right: 6px;
}
