/* ===================================================
   ABOUT PAGE — Chill Astoria
   =================================================== */

/* ===================================================
   About Hero Section (Split-screen)
   =================================================== */

.about_hero_section {
    display: grid;
    grid-template-columns: 55fr 45fr;
    min-height: 100svh;
    position: relative;
    overflow: hidden;
}

/* Left: full-bleed image panel */
.about_hero_img {
    position: relative;
    overflow: hidden;
}

.about_hero_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 8s ease;
}

.about_hero_img:hover img {
    transform: scale(1.04);
}

/* Gradient bleeds image into the right text panel */
.about_hero_img_overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 10, 12, 0.15) 0%, rgba(10, 10, 12, 0.0) 60%, var(--cream) 100%),
        linear-gradient(180deg, rgba(10, 10, 12, 0.35) 0%, transparent 30%);
}

/* Right: text content panel */
.about_hero_content {
    background: var(--cream);
    display: flex;
    align-items: center;
    padding: 0 clamp(2.5rem, 5vw, 6rem);
    padding-top: 82px;
}

.about_hero_content_inner {
    max-width: 520px;
}

.about_hero_content_inner .section_label {
    margin-bottom: 1.25rem;
}

.about_hero_content_inner h1 {
    color: var(--white);
    font-weight: 900;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

.about_hero_divider {
    width: 56px;
    height: 3px;
    background: var(--amber);
    border-radius: 2px;
    margin-bottom: 1.75rem;
}

.about_hero_content_inner h2 {
    font-size: clamp(1.25rem, 2vw, 2rem);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about_hero_content_inner p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
}

/* Bottom stats row */
.about_hero_meta {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.about_hero_meta_item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    padding: 0 1.25rem;
}

.about_hero_meta_item:first-child {
    padding-left: 0;
}

.about_hero_meta_num {
    font-family: "Raleway", sans-serif;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 900;
    color: var(--amber);
    line-height: 1;
    letter-spacing: -0.02em;
}

.about_hero_meta_num small {
    font-size: 0.55em;
    font-weight: 700;
    letter-spacing: 0.05em;
    vertical-align: super;
}

.about_hero_meta_label {
    font-family: "Raleway", sans-serif;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.about_hero_meta_divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

@media (max-width: 996px) {
    .about_hero_section {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .about_hero_img_overlay {
        background:
            linear-gradient(180deg, rgba(10, 10, 12, 0.2) 0%, var(--cream) 100%);
    }
    .about_hero_content {
        padding: 3rem var(--container-pad) 4rem;
        padding-top: 2.5rem;
    }
    .about_hero_content_inner {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .about_hero_img img {
        height: fit-content;
    }
    .about_hero_meta {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    .about_hero_meta_item {
        padding: 0 0.75rem;
    }
    .about_hero_content_inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ===================================================
   Concept Section (Manifesto / Typography)
   =================================================== */

.concept_section {
    background: var(--surface);
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

/* Giant decorative background word */
.concept_bg_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Raleway", sans-serif;
    font-size: clamp(12rem, 28vw, 28rem);
    font-weight: 900;
    color: var(--amber);
    opacity: 0.03;
    letter-spacing: -0.04em;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    line-height: 1;
}

.concept_inner {
    position: relative;
    z-index: 2;
}

.concept_label_row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.concept_label_row .section_label {
    margin-bottom: 0;
    flex-shrink: 0;
}

.concept_line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border-amber), transparent);
    max-width: 300px;
}

.concept_quote {
    font-family: "Raleway", sans-serif;
    font-size: clamp(2.2rem, 5.5vw, 5.5rem);
    font-weight: 900;
    font-style: normal;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: clamp(3rem, 5vw, 5rem);
    max-width: 900px;
    text-wrap: balance;
}

/* Amber period at end of quote */
.concept_quote::after {
    content: '';
    /* period is part of the text */
}

.concept_body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 5rem);
    max-width: 1000px;
}

.concept_body p {
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.15vw, 1.1rem);
    line-height: 1.8;
}

@media (max-width: 996px) {
    .concept_body {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 600px) {
    .concept_quote {
        font-size: clamp(2rem, 9vw, 3.5rem);
    }
    .concept_bg_text {
        font-size: 8rem;
    }
    .concept_inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    } 
}

/* ===================================================
   Experience Section (Overlapping image composition)
   =================================================== */

.about_experience_section {
    background: var(--charcoal);
    padding: var(--section-pad) 0;
    overflow: hidden;
}

.about_experience_inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(4rem, 7vw, 9rem);
    align-items: center;
}

/* Overlapping images on the left */
.about_exp_visual {
    position: relative;
    /* Extra bottom space for the secondary image overflow */
    padding-bottom: 3rem;
}

.about_exp_img_primary {
    position: relative;
    width: 82%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.65),
        0 0 0 1px var(--border);
    aspect-ratio: 3 / 4;
}

.about_exp_img_primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about_exp_img_primary:hover img {
    transform: scale(1.04);
}

/* Secondary image overlaps primary at bottom-right */
.about_exp_img_secondary {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 55%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 5px solid var(--charcoal);
    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.6),
        0 0 0 1px var(--border);
    aspect-ratio: 4 / 3;
}

.about_exp_img_secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about_exp_img_secondary:hover img {
    transform: scale(1.05);
}

/* Decorative amber corner accent on primary image */
.about_exp_accent {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 64px;
    height: 64px;
    border-top: 2px solid var(--amber);
    border-left: 2px solid var(--amber);
    border-radius: var(--radius) 0 0 0;
    pointer-events: none;
}

/* Right text content */
.about_exp_content h2 {
    margin-bottom: 1.5rem;
}

.about_exp_content p {
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.15vw, 1.1rem);
    margin-bottom: 1.25rem;
}

.about_exp_pullquote {
    font-family: "Raleway", sans-serif;
    font-style: italic;
    font-size: clamp(1.05rem, 1.3vw, 1.3rem);
    font-weight: 500;
    color: var(--amber);
    border-left: 3px solid var(--amber);
    padding-left: 1.25rem;
    margin-top: 2rem;
    line-height: 1.55;
    /* Override global p color */
    color: var(--amber);
}

@media (max-width: 996px) {
    .about_experience_inner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .about_exp_visual {
        padding-bottom: 4rem;
    }
    .about_exp_img_primary {
        width: 75%;
    }
}

@media (max-width: 600px) {
    .about_exp_img_primary { width: 85%; }
    .about_exp_img_secondary { width: 58%; }
    .about_exp_accent { display: none; }
}

/* ===================================================
   Food & Drinks Philosophy Section
   =================================================== */

.food_philosophy_section {
    background: var(--cream);
    padding: var(--section-pad) 0;
}

.food_philosophy_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 8rem);
    align-items: center;
}

.food_philosophy_content h2 {
    margin-bottom: 1.5rem;
}

.food_philosophy_content p {
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.15vw, 1.1rem);
    margin-bottom: 1.25rem;
}

.food_philosophy_ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-top: 2.25rem;
}

/* Staircase image layout */
.food_philosophy_visuals {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.food_philosophy_img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.5),
        0 0 0 1px var(--border);
}

.food_philosophy_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 80%;
    display: block;
    transition: transform var(--transition-slow);
}

.food_philosophy_img:hover img {
    transform: scale(1.05);
}

.food_philosophy_img--top {
    width: 90%;
    aspect-ratio: 16 / 10;
    align-self: flex-start;
    position: relative;
    z-index: 2;
}

/* Offset + slight overlap creates staircase depth */
.food_philosophy_img--bottom {
    width: 80%;
    aspect-ratio: 16 / 10;
    align-self: flex-end;
    margin-top: -2.5rem;
    border: 4px solid var(--cream);
    position: relative;
    z-index: 1;
}

@media (max-width: 996px) {
    .food_philosophy_inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .food_philosophy_img--top  { width: 100%; }
    .food_philosophy_img--bottom { width: 80%; margin-top: -2rem; }
}

@media (max-width: 600px) {
    .food_philosophy_content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .food_philosophy_img--bottom { width: 90%; margin-top: -1.5rem; }
    .food_philosophy_ctas { flex-direction: column; align-items: center; }
}

/* ===================================================
   Astoria Connection Section (Full-width cinematic)
   =================================================== */

.astoria_section {
    position: relative;
    padding: var(--section-pad) 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    text-align: center;
}

.astoria_overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(10, 10, 12, 0.88) 0%,
            rgba(10, 10, 12, 0.72) 50%,
            rgba(10, 10, 12, 0.88) 100%
        );
    z-index: 1;
}

/* Centered amber glow pulse */
.astoria_glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(400px, 60vw, 800px);
    height: clamp(300px, 45vw, 600px);
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255, 155, 0, 0.10) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.astoria_inner {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.astoria_inner .section_label {
    text-align: center;
}

.astoria_inner h2 {
    color: var(--white);
    font-weight: 900;
    margin-bottom: 2rem;
}

.astoria_content {
    margin-bottom: 3rem;
}

.astoria_content p {
    color: rgba(240, 235, 226, 0.78);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    margin-bottom: 1rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.astoria_content strong {
    color: var(--amber);
    font-weight: 600;
}

/* Stats strip */
.astoria_stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: clamp(2.5rem, 4vw, 4rem);
    padding-top: clamp(2rem, 3.5vw, 3.5rem);
    border-top: 1px solid rgba(255, 155, 0, 0.2);
}

.astoria_stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0 clamp(2rem, 4vw, 5rem);
}

.astoria_stat_num {
    font-family: "Raleway", sans-serif;
    font-size: clamp(2rem, 4.5vw, 4.5rem);
    font-weight: 900;
    color: var(--amber);
    line-height: 1;
    letter-spacing: -0.03em;
}

.astoria_stat_label {
    font-family: "Raleway", sans-serif;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.astoria_stat_sep {
    width: 1px;
    height: 60px;
    background: rgba(255, 155, 0, 0.2);
    flex-shrink: 0;
}

@media (max-width: 996px) {
    .astoria_stats {
        gap: 0;
    }
    .astoria_stat {
        padding: 0 clamp(1.5rem, 3vw, 3rem);
    }
}

@media (max-width: 600px) {
    .astoria_stats {
        flex-direction: column;
        gap: 2rem;
        border-top: none;
    }
    .astoria_stat_sep { display: none; }
    .astoria_section { text-align: left; }
    .astoria_inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
    .astoria_inner .section_label { text-align: left; }
    .astoria_content { margin-bottom: 0; }
    .astoria_content p {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
    .astoria_stats { align-items: center; margin-top: 0;}
    .astoria_stat { align-items: center; text-align: center;}
}

/* ===================================================
   Events & Atmosphere Section (Bento grid)
   =================================================== */

.about_events_section {
    background: var(--surface);
    padding: var(--section-pad) 0;
    overflow: hidden;
}

.about_events_header {
    max-width: 740px;
    margin-bottom: clamp(3rem, 5vw, 5rem);
}

.about_events_header h2 {
    margin-bottom: 1.25rem;
}

.about_events_intro {
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.15vw, 1.1rem);
}

/* Bento grid: tall item on left, 2x2 on right */
.about_events_bento {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 290px 290px;
    gap: 10px;
    padding: 0 var(--container-pad);
    max-width: var(--container-max);
    margin: 0 auto;
}

/* Item 1 (.bento_item--tall): col 1, spans both rows */
.bento_item--tall { grid-row: span 2; }

/* Items 2–5 fill the 2x2 grid in cols 2–3 naturally */

.bento_item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--charcoal);
}

.bento_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    display: block;
}

.bento_item:hover img {
    transform: scale(1.06);
}

.bento_item_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 12, 0.65) 0%, transparent 55%);
    transition: opacity var(--transition);
}

.bento_item:hover .bento_item_overlay {
    opacity: 0.85;
}

.bento_item_label {
    position: absolute;
    bottom: 1.1rem;
    left: 1.25rem;
    font-family: "Raleway", sans-serif;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity var(--transition), transform var(--transition);
    pointer-events: none;
}

.bento_item:hover .bento_item_label {
    opacity: 1;
    transform: translateY(0);
}

.about_events_ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: clamp(2.5rem, 4vw, 4rem);
}

@media (max-width: 996px) {
    .about_events_bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 230px 230px 230px;
    }
    .bento_item--tall { grid-row: span 2; }
}

@media (max-width: 600px) {
    .about_events_header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .about_events_bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 7px;
    }
    .bento_item       { height: 300px; }
    .bento_item--tall { grid-row: span 1; }
    .bento_item_label { opacity: 1; transform: none; }
    .about_events_ctas {
        justify-content: center;
    }
}

/* ===================================================
   CTA / Conversion Block Section
   =================================================== */

.about_cta_section {
    background: var(--charcoal);
    padding: var(--section-pad) 0;
    border-top: 1px solid var(--border);
}

.about_cta_header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto clamp(3rem, 5vw, 5rem);
}

.about_cta_header h2 { margin-bottom: 1.25rem; }

.about_cta_sub {
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.15vw, 1.1rem);
}

/* Three-column CTA cards */
.about_cta_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.about_cta_card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 2.5vw, 2.5rem);
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

/* Amber top line accent */
.about_cta_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-amber);
    transition: background var(--transition);
}

.about_cta_card--featured::before {
    background: var(--amber);
}

.about_cta_card:hover {
    border-color: var(--border-amber);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
}

.about_cta_card:hover::before {
    background: var(--amber);
}

.about_cta_card_icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--glow-amber);
    border: 1px solid var(--border-amber);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.about_cta_card_icon i {
    font-size: 1.1rem;
    color: var(--amber);
}

.about_cta_card:hover .about_cta_card_icon,
.about_cta_card--featured .about_cta_card_icon {
    background: var(--amber);
    border-color: var(--amber);
}

.about_cta_card:hover .about_cta_card_icon i,
.about_cta_card--featured .about_cta_card_icon i {
    color: var(--black);
}

.about_cta_card h3 {
    color: var(--white);
    font-size: clamp(1.05rem, 1.4vw, 1.35rem);
    font-weight: 700;
    margin-bottom: 0.875rem;
}

.about_cta_card p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex: 1;
}

/* Attribute badges */
.about_cta_attrs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 3vw, 4rem);
    margin-top: clamp(3rem, 5vw, 5rem);
    padding-top: clamp(2rem, 3.5vw, 3.5rem);
    border-top: 1px solid var(--border);
}

.about_cta_attr {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.about_cta_attr i {
    color: var(--amber);
    font-size: 0.9rem;
}

.about_cta_attr span {
    font-family: "Raleway", sans-serif;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

@media (max-width: 996px) {
    .about_cta_grid {
        grid-template-columns: 1fr;
        max-width: 540px;
        margin: 0 auto;
    }
    .about_cta_attrs {
        gap: clamp(1.25rem, 3vw, 2.5rem);
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .about_cta_card { align-items: center; text-align: center}
    .about_cta_grid { max-width: 100%; }
    .about_cta_attrs {
        gap: 1.25rem 2rem;
        justify-content: flex-start;
    }
    .about_cta_attrs {
        justify-content: center;
    }
}
