/* =====================================================
   ÜBER UNS – AWA Investment Group
   ByKine Style · Premium Light
   ===================================================== */

/* ===== PAGE HERO OVERRIDE – hero.png wie Index ===== */
.page-hero {
    padding: 8rem 0 6rem;
    background: #0f0f0f;
    position: relative;
    overflow: hidden;
    min-height: 42vh;
    display: flex;
    align-items: center;
}

/* hero.png Hintergrundbild mit Blur */
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center 30%;
    filter: blur(4px) brightness(0.35);
    transform: scale(1.06);
    z-index: 0;
}

/* Goldener Gradient-Overlay */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.55) 100%),
        radial-gradient(ellipse at 25% 60%, rgba(201,168,76,0.18) 0%, transparent 55%);
    z-index: 1;
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-label {
    color: var(--gold-light) !important;
    background: rgba(201,168,76,0.12) !important;
    border-color: rgba(201,168,76,0.35) !important;
}

.page-hero h1 {
    color: white !important;
    font-size: 3.8rem !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.page-hero h1 .gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 300 !important;
}

.page-hero p {
    color: rgba(255,255,255,0.72) !important;
    font-size: 1.05rem !important;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .page-hero { min-height: 35vh; padding: 6rem 0 4rem; }
    .page-hero h1 { font-size: 2.4rem !important; }
}



/* ===== Story Section ===== */
.about-story {
    padding: 6rem 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.about-story::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 65%);
    pointer-events: none;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-story-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.12;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}
.about-story-text h2 .gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
}

.about-story-text p {
    font-size: 0.97rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 1rem;
}

/* Timeline Milestones */
.about-milestones {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 2px solid rgba(201,168,76,0.25);
    padding-left: 1.5rem;
}

.milestone {
    padding: 0.9rem 0;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 1rem;
    align-items: center;
    transition: background 0.2s;
}
.milestone:last-child { border-bottom: none; }
.milestone::before {
    content: '';
    position: absolute;
    left: -1.65rem;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border: 2px solid var(--off-white);
}

.milestone-year {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--gold-dark);
    letter-spacing: -0.01em;
}
.milestone-text {
    font-size: 0.87rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.5;
}

/* Stats Grid */
.about-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(0,0,0,0.07);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,0,0,0.07);
}

.about-stat {
    background: white;
    padding: 1.8rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    transition: background 0.3s;
}
.about-stat:hover { background: var(--cream); }

.about-stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.about-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* Quote card */
.about-quote-card {
    background: var(--dark);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
}
.about-quote-card svg {
    color: var(--gold-light);
    margin-bottom: 1rem;
    display: block;
}
.about-quote-card blockquote {
    font-size: 0.95rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin-bottom: 1rem;
    border-left: 2px solid var(--gold);
    padding-left: 1rem;
}
.about-quote-card cite {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-light);
    font-style: normal;
}

/* Founders Photo – rechte Seite der Story */
.founders-photo-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 40px 100px rgba(0,0,0,0.13),
        0 8px 28px rgba(0,0,0,0.07);
    transition: transform 0.4s var(--easing), box-shadow 0.4s var(--easing);
    background: var(--cream);
}
.founders-photo-wrapper:hover {
    transform: translateY(-6px);
    box-shadow:
        0 56px 120px rgba(0,0,0,0.16),
        0 12px 36px rgba(0,0,0,0.1);
}

.founders-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: var(--radius-xl);
    transition: transform 0.5s var(--easing);
}
.founders-photo-wrapper:hover .founders-photo {
    transform: scale(1.03);
}

.founders-photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.8rem 1.4rem;
    background: linear-gradient(0deg, rgba(10,10,10,0.82) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.founders-caption-names {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.01em;
}
.founders-caption-sub {
    font-size: 0.78rem;
    color: var(--gold-light);
    font-weight: 400;
    letter-spacing: 0.04em;
}

.founders-photo-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(201,168,76,0.92);
    color: #1a1600;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 900px) {
    .about-story-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-story-text h2 { font-size: 1.8rem; }
    .founders-photo-wrapper { max-width: 540px; margin: 0 auto; }
}


/* ===== Philosophie – Numbered Rows ===== */
.about-philosophy {
    padding: 6rem 0 7rem;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.about-philosophy::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(201,168,76,0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 20%, rgba(201,168,76,0.05) 0%, transparent 45%);
    pointer-events: none;
}

/* Big Quote Header */
.phil-headline {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.phil-big-quote {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.88);
    line-height: 1.45;
    letter-spacing: -0.02em;
    margin: 1.5rem 0 1rem;
    position: relative;
    padding: 0 1rem;
}
.phil-big-quote::before {
    content: '\201C';
    font-size: 8rem;
    color: rgba(201,168,76,0.12);
    font-family: var(--font-heading);
    position: absolute;
    top: -3rem;
    left: -1.5rem;
    line-height: 1;
    pointer-events: none;
}

.phil-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    line-height: 1.7;
}

/* Numbered Rows */
.phil-rows {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.phil-row {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 2.5rem;
    padding: 2.2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    position: relative;
    cursor: default;
    transition: background 0.3s var(--ease);
}
.phil-row:hover {
    background: rgba(201,168,76,0.04);
    border-radius: var(--radius-lg);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}

/* Gold accent bar at bottom */
.phil-row-bar {
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 1px;
    width: 0;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: width 0.5s var(--ease);
}
.phil-row:hover .phil-row-bar { width: 100%; }

/* Large number */
.phil-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1;
    background: linear-gradient(135deg, rgba(201,168,76,0.35), rgba(201,168,76,0.08));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s var(--ease);
    user-select: none;
}
.phil-row:hover .phil-num {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
}

/* Content */
.phil-row-content h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 0.45rem;
    line-height: 1.2;
}
.phil-row-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    line-height: 1.7;
    max-width: 560px;
}

/* Tag */
.phil-row-tag {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-dark);
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 0.38rem 0.9rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
    transition: all 0.3s var(--ease);
}
.phil-row:hover .phil-row-tag {
    background: rgba(201,168,76,0.18);
    border-color: rgba(201,168,76,0.4);
    color: var(--gold-light);
}

@media (max-width: 768px) {
    .phil-big-quote { font-size: 1.5rem; }
    .phil-row { grid-template-columns: 60px 1fr; gap: 1.5rem; }
    .phil-row-tag { display: none; }
    .phil-num { font-size: 2.8rem; }
}
@media (max-width: 480px) {
    .phil-big-quote { font-size: 1.25rem; }
    .phil-row { grid-template-columns: 1fr; gap: 0.5rem; }
    .phil-num { font-size: 2rem; }
}

/* ===== Unternehmensstruktur / Org Chart ===== */
.about-structure {
    padding: 6rem 0 7rem;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

/* Root node */
.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.org-root {
    display: flex;
    justify-content: center;
}

.org-node {
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-xl);
    padding: 1.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    min-width: 280px;
    position: relative;
}

.root-node {
    border: 2px solid var(--gold-alpha-25);
    background: linear-gradient(135deg, #fff 60%, rgba(201,168,76,0.05));
    box-shadow: 0 12px 40px rgba(201,168,76,0.12);
}

.org-node-logo img {
    height: 36px;
    width: auto;
    margin-bottom: 0.5rem;
    opacity: 0.85;
}

.org-node strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}
.org-node span {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Vertical connector line */
.org-connector-line {
    width: 2px;
    height: 2.5rem;
    background: linear-gradient(to bottom, rgba(201,168,76,0.5), rgba(201,168,76,0.15));
    margin: 0 auto;
}

/* Pillars row */
.org-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    width: 100%;
    position: relative;
}

/* Horizontal connector bar above pillars */
.org-pillars::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(1fr / 2);
    right: calc(1fr / 2);
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), rgba(201,168,76,0.3), transparent);
    top: -1px;
}

.org-pillar {
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.org-pillar:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.org-pillar-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 1.4rem;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: white;
}
.org-pillar-header.immobilien { background: linear-gradient(135deg, #1a3a5c, #2a5a8c); }
.org-pillar-header.hotellerie { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }
.org-pillar-header.nutzfahrzeuge { background: linear-gradient(135deg, #2a1a0a, #5a3a1a); }

.org-children {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.org-child {
    padding: 0.85rem 1rem;
    background: var(--off-white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    transition: all 0.2s var(--ease);
}
.org-child:hover {
    background: white;
    border-color: var(--gold-alpha-25);
    box-shadow: 0 2px 12px rgba(201,168,76,0.08);
}

.org-child strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.87rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    margin-bottom: 0.15rem;
}
.org-child span {
    font-size: 0.76rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Org Chart Responsive */
@media (max-width: 900px) {
    .org-pillars { grid-template-columns: 1fr; gap: 1.5rem; }
    .org-pillars::before { display: none; }
    .org-node { min-width: unset; width: 100%; max-width: 420px; }
}
@media (max-width: 540px) {
    .org-node { padding: 1.2rem 1.5rem; }
}

/* ===== Gründer Detail ===== */
.founder-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin: 1.5rem 0 2rem;
}

.founder-detail {
    padding: 0.85rem 1.1rem;
    background: #f8f6f2;
    border: 1px solid rgba(201, 168, 76, 0.22);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.fd-label {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.fd-value {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-heading);
}
.fd-value a {
    color: var(--gold-dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
}
.fd-value a:hover { color: var(--gold); }

@media (max-width: 540px) {
    .founder-detail-grid { grid-template-columns: 1fr; }
}
