/* Inner-page banner — full-bleed photo + left glass panel */

.page-banner {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 46vh;
    min-height: 380px;
    max-height: 520px;
    overflow: hidden;
    background: #0c0507;
}
.page-banner__media,
.page-banner__shade {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.page-banner__media { z-index: 1; }
.page-banner__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.72) contrast(1.04);
    transform: scale(1.06);
}
.page-banner__shade {
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(12, 5, 7, 0.72) 0%, rgba(12, 5, 7, 0.38) 42%, rgba(12, 5, 7, 0.22) 100%),
        linear-gradient(180deg, rgba(75, 14, 24, 0.18) 0%, rgba(12, 5, 7, 0.35) 100%);
}
.page-banner__glow {
    position: absolute;
    z-index: 3;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(130px);
    opacity: 0.48;
    mix-blend-mode: screen;
}
.page-banner__glow--1 {
    width: 380px;
    height: 380px;
    left: -60px;
    bottom: -110px;
    background: rgba(105, 21, 36, 0.55);
}
.page-banner__glow--2 {
    width: 280px;
    height: 280px;
    right: 12%;
    top: -70px;
    background: rgba(235, 94, 85, 0.22);
}
.page-banner__orb {
    position: absolute;
    z-index: 3;
    top: 18%;
    right: 16%;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}
.page-banner__inner {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 36px clamp(20px, 4vw, 56px);
}
.page-banner__panel {
    max-width: 640px;
    padding: 48px 50px 40px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.38), inset 0 1px rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}
.page-banner__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    padding: 8px 18px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #f1f3f5;
    font-family: var(--font-serif);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.page-banner__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #eb5e55;
    box-shadow: 0 0 12px #eb5e55;
    animation: bannerDotPulse 2s ease-in-out infinite;
}
@keyframes bannerDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.55); }
}
.page-banner__title {
    color: #fff;
    font-size: clamp(2rem, 4.4vw, 3.35rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.12;
    margin: 0 0 1.35rem;
}
.page-banner__title span {
    position: relative;
    display: inline-block;
    color: #fff;
}
.page-banner__title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.85) 0%, transparent 100%);
}
.page-banner__crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(241, 243, 245, 0.55);
    font-size: 0.95rem;
    font-weight: 500;
}
.page-banner__crumb a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.page-banner__crumb a:hover { color: #fff; }
.page-banner__crumb svg {
    width: 15px;
    height: 15px;
    opacity: 0.85;
}
.page-banner__sep {
    width: 6px;
    height: 6px;
    border-right: 1.5px solid rgba(255, 255, 255, 0.45);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.45);
    transform: rotate(-45deg);
    margin: 0 2px;
}
.page-banner__crumb [aria-current="page"] {
    color: #fff;
    font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
    .page-banner__dot { animation: none; }
}

.about-section {
    padding: 80px 0;
}
.about-section--soft {
    background-color: #f3f1ef;
    background-image:
        radial-gradient(ellipse at center, rgba(255,255,255,0.55) 0%, transparent 70%),
        repeating-linear-gradient(0deg, transparent, transparent 11px, rgba(75, 14, 24, 0.03) 11px, rgba(75, 14, 24, 0.03) 12px),
        repeating-linear-gradient(90deg, transparent, transparent 11px, rgba(75, 14, 24, 0.03) 11px, rgba(75, 14, 24, 0.03) 12px);
}
.about-section__intro {
    max-width: 820px;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: var(--color-secondary);
    font-size: 1.05rem;
    line-height: 1.85;
}
.about-section__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 1.25rem 0 1.75rem;
}
.about-section__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary-blue);
    opacity: 0.85;
}

.about-story {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}
.about-story__kicker {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-primary-blue);
    margin-bottom: 0.85rem;
}
.about-story h2 {
    font-size: clamp(2rem, 3.4vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 1.4rem;
}
.about-story p {
    color: #4f4f4f;
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 1.1rem;
}
.about-story p:last-child { margin-bottom: 0; }
.about-story__media {
    position: relative;
}
.about-story__media img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 24px 60px rgba(75, 14, 24, 0.16);
}
.about-story__badge {
    position: absolute;
    left: -18px;
    bottom: 28px;
    background: var(--color-primary-dark);
    color: #fff;
    border-radius: 16px;
    padding: 18px 22px;
    min-width: 148px;
    box-shadow: 0 16px 40px rgba(75, 14, 24, 0.28);
}
.about-story__badge strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.85rem;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.about-story__badge span {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    opacity: 0.85;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.about-why-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #fff;
    border-radius: 18px;
    padding: 28px 26px 26px;
    box-shadow: 0 14px 40px rgba(75, 14, 24, 0.07);
    border: 1px solid rgba(75, 14, 24, 0.05);
    height: 100%;
    transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease;
}
.about-why-card::before {
    content: "";
    position: absolute;
    top: -70px;
    left: -70px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(75, 14, 24, 0.16) 0%, rgba(75, 14, 24, 0.06) 48%, transparent 72%);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.4s ease;
}
.about-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(75, 14, 24, 0.12);
}
.about-why-card:hover::before { opacity: 1; }
.about-why-card > * { position: relative; z-index: 1; }
.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    border-radius: 14px;
    background: var(--color-soft-tint);
    color: var(--color-primary-accent);
    flex-shrink: 0;
}
.card-icon svg {
    width: 24px;
    height: 24px;
    display: block;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.about-why-card h3 {
    font-family: var(--font-serif);
    font-size: 1.28rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.7rem;
    line-height: 1.3;
}
.about-why-card p {
    color: var(--color-secondary);
    font-size: 0.96rem;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 991px) {
    .page-banner { height: auto; min-height: 340px; max-height: none; padding: 28px 0; }
    .page-banner__panel { padding: 36px 28px 28px; border-radius: 24px; }
    .about-section { padding: 56px 0; }
    .about-story { grid-template-columns: 1fr; gap: 32px; }
    .about-story__media img { height: 380px; }
    .about-story__badge { left: 16px; }
    .about-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .page-banner__inner { padding: 20px 16px; }
    .page-banner__panel { padding: 28px 20px 22px; border-radius: 20px; background: rgba(12, 5, 7, 0.55); }
    .page-banner__title { font-size: 1.85rem; }
    .page-banner__orb { display: none; }
    .about-why-grid { grid-template-columns: 1fr; }
    .about-story__media img { height: 280px; }
}
