/* ── Variables ── */
:root {
    --forest:   #1e3a28;
    --sage:     #4a7c59;
    --leaf:     #5fa870;
    --sand:     #f5f1eb;
    --clay:     #c4a882;
    --mist:     #f0f5f2;
    --white:    #ffffff;
    --text:     #1c2b22;
    --text-2:   #5c7162;
    --rule:     #dce8e1;
    --amber:    #a86c20;
}

/* ─────────────────────────────────────────────────
   Hero
───────────────────────────────────────────────── */
.buca-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.buca-hero__img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(.46) saturate(.9);
}
.buca-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(12,26,17,.92) 0%,
        rgba(12,26,17,.32) 55%,
        transparent 100%);
}
.buca-hero__content {
    position: relative;
    z-index: 2;
    padding: 3.5rem 0 4.75rem;
    padding-left: 2rem;
    /*border-left: 3px solid var(--leaf);*/
    max-width: 640px;
    animation: fadeUp .75s ease both;
}
.buca-hero__overline {
    display: block;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--leaf);
    margin-bottom: 1.25rem;
}
.buca-hero__title {
    /*font-family: Georgia, 'Times New Roman', serif;*/
    font-size: clamp(1rem, 5vw, 2.85rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 1.25rem;
    letter-spacing: -.025em;
}
.buca-hero__sub {
    font-size: .975rem;
    color: rgba(255,255,255,.65);
    font-weight: 400;
    max-width: 490px;
    line-height: 1.75;
    margin: 0;
}

/* ─────────────────────────────────────────────────
   Intro strip
───────────────────────────────────────────────── */
.buca-intro {
    background: var(--white);
    border-top: 3px solid var(--forest);
    border-bottom: 1px solid var(--rule);
    padding: 1.75rem 0 0;
}
.buca-intro__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--rule);
}
.buca-intro__brand {
    display: flex;
    align-items: center;
    gap: .875rem;
}
.buca-intro__logo {
    width: 44px; height: 44px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--rule);
    flex-shrink: 0;
}
.buca-intro__brand strong {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.01em;
}
.buca-intro__brand span {
    font-size: .78rem;
    color: var(--text-2);
    line-height: 1.4;
}
.buca-intro__actions {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
}
.buca-intro__desc {
    font-size: .9rem;
    color: var(--text-2);
    line-height: 1.8;
    padding: 1.25rem 0 1.75rem;
    margin: 0;
    max-width: 740px;
}

/* ─────────────────────────────────────────────────
   Buttons
───────────────────────────────────────────────── */
.btn-primary-buca {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .84rem;
    font-weight: 600;
    background: var(--forest);
    color: var(--white);
    border: 1.5px solid var(--forest);
    border-radius: 4px;
    padding: .6rem 1.3rem;
    text-decoration: none;
    transition: background .2s, transform .15s;
    letter-spacing: .01em;
    cursor: pointer;
}
.btn-primary-buca:hover {
    background: var(--sage);
    border-color: var(--sage);
    color: var(--white);
    transform: translateY(-1px);
}
.btn-ghost-buca {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .84rem;
    font-weight: 600;
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--rule);
    border-radius: 4px;
    padding: .6rem 1.3rem;
    text-decoration: none;
    transition: border-color .2s, background .2s, color .2s;
    letter-spacing: .01em;
}
.btn-ghost-buca:hover {
    border-color: var(--sage);
    color: var(--forest);
    background: var(--mist);
}
.btn-outline-buca {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .84rem;
    font-weight: 600;
    background: transparent;
    color: rgba(255,255,255,.85);
    border: 1.5px solid rgba(255,255,255,.35);
    border-radius: 4px;
    padding: .6rem 1.3rem;
    text-decoration: none;
    transition: border-color .2s, background .2s;
}
.btn-outline-buca:hover {
    border-color: rgba(255,255,255,.75);
    background: rgba(255,255,255,.08);
    color: var(--white);
}
.btn-light-buca {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .875rem;
    font-weight: 600;
    background: var(--white);
    color: var(--forest);
    border: 1.5px solid var(--white);
    border-radius: 4px;
    padding: .75rem 1.5rem;
    text-decoration: none;
    transition: background .2s, transform .15s;
    letter-spacing: .01em;
}
.btn-light-buca:hover {
    background: var(--sand);
    border-color: var(--sand);
    color: var(--forest);
    transform: translateY(-1px);
}
.btn-text-buca {
    font-size: .875rem;
    font-weight: 600;
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: color .2s;
    letter-spacing: .01em;
}
.btn-text-buca:hover { color: var(--white); }

/* ─────────────────────────────────────────────────
   Main content area
───────────────────────────────────────────────── */
.buca-main { padding-top: 4rem; padding-bottom: 4rem; }

/* ─────────────────────────────────────────────────
   Section typography
───────────────────────────────────────────────── */
.buca-section-label {
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: .55rem;
}
.buca-section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: .75rem;
    letter-spacing: -.02em;
}
.buca-section-body {
    font-size: .9rem;
    color: var(--text-2);
    line-height: 1.78;
}

/* ─────────────────────────────────────────────────
   Sidebar
───────────────────────────────────────────────── */
.buca-sidebar {
    position: sticky;
    top: 100px;
}
.sidebar-nav__label {
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text-2);
    margin-bottom: .75rem;
}
.sidebar-nav a {
    display: block;
    font-size: .855rem;
    color: var(--text-2);
    text-decoration: none;
    padding: .45rem 0 .45rem 1rem;
    border-left: 2px solid var(--rule);
    transition: border-color .2s, color .2s;
    font-weight: 500;
    line-height: 1.4;
}
.sidebar-nav a + a { margin-top: .2rem; }
.sidebar-nav a:hover {
    border-left-color: var(--forest);
    color: var(--forest);
}
.sidebar-help {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--rule);
}
.sidebar-help strong {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .45rem;
}
.sidebar-help p {
    font-size: .8rem;
    color: var(--text-2);
    line-height: 1.65;
    margin-bottom: .75rem;
}
.sidebar-help a {
    font-size: .8rem;
    font-weight: 600;
    color: var(--forest);
    text-decoration: none;
}
.sidebar-help a:hover { text-decoration: underline; }

/* ─────────────────────────────────────────────────
   Who Can Apply
───────────────────────────────────────────────── */
.applicant-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--rule);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.75rem;
}
.applicant-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--rule);
    border-right: 1px solid var(--rule);
    background: var(--white);
    transition: background .2s;
}
.applicant-item:nth-child(even)       { border-right: none; }
.applicant-item:nth-last-child(-n+2)  { border-bottom: none; }
.applicant-item:hover                 { background: var(--mist); }
.applicant-item__icon {
    width: 36px; height: 36px;
    background: var(--mist);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage);
    flex-shrink: 0;
    transition: background .2s, color .2s;
}
.applicant-item:hover .applicant-item__icon {
    background: var(--forest);
    color: var(--white);
}
.applicant-item h5 {
    font-size: .855rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    line-height: 1.4;
}

/* ── Eligibility warning ── */
.eligibility-notice {
    background: #fdf8f0;
    border: 1px solid #f0dbb8;
    border-left: 3px solid var(--amber);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: .875rem;
    font-size: .845rem;
    color: #6b4c22;
    line-height: 1.68;
    border-radius: 0 4px 4px 0;
}
.eligibility-notice svg { flex-shrink: 0; margin-top: 2px; color: var(--amber); }

/* ─────────────────────────────────────────────────
   Application Process — editorial numbered steps
───────────────────────────────────────────────── */
.process-list { display: flex; flex-direction: column; }
.process-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--rule);
}
.process-item:first-child { border-top: 1px solid var(--rule); }
.process-item__num {
    /*font-family: Georgia, 'Times New Roman', serif;*/
    font-size: 2.1rem;
    font-weight: 400;
    color: var(--rule);
    line-height: 1.2;
    user-select: none;
    transition: color .3s;
    padding-top: .1rem;
    letter-spacing: -.03em;
}
.process-item:hover .process-item__num { color: var(--leaf); }
.process-item__content h5 {
    font-size: .975rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 .5rem;
    line-height: 1.3;
    letter-spacing: -.01em;
}
.process-item__content p {
    font-size: .875rem;
    color: var(--text-2);
    line-height: 1.75;
    margin: 0;
}

/* ─────────────────────────────────────────────────
   Important Notices
───────────────────────────────────────────────── */
.notice-list { display: flex; flex-direction: column; margin-top: 1.5rem; }
.notice-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--rule);
}
.notice-item:first-child { border-top: 1px solid var(--rule); }
.notice-item__icon {
    width: 38px; height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: .1rem;
}
.notice-item--warn  .notice-item__icon { background: #fef3c7; color: #92400e; }
.notice-item--info  .notice-item__icon { background: #dbeafe; color: #1d4ed8; }
.notice-item--success .notice-item__icon { background: var(--mist); color: var(--forest); }
.notice-item h5 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 .35rem;
    letter-spacing: -.01em;
}
.notice-item p {
    font-size: .855rem;
    color: var(--text-2);
    margin: 0;
    line-height: 1.72;
}

/* ─────────────────────────────────────────────────
   CTA — full-bleed asymmetric editorial
───────────────────────────────────────────────── */
.buca-cta {
    background: var(--forest);
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
}
/* Very subtle diagonal texture */
.buca-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 48px,
        rgba(255,255,255,.013) 48px,
        rgba(255,255,255,.013) 96px
    );
    pointer-events: none;
}
/* Faint right accent blob */
.buca-cta::after {
    content: '';
    position: absolute;
    right: -120px; bottom: -120px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(95,168,112,.12) 0%, transparent 70%);
    pointer-events: none;
}
.buca-cta__inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.buca-cta__overline {
    display: block;
    font-size: .67rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--leaf);
    margin-bottom: 1.25rem;
}
.buca-cta__title {
    /*font-family: Georgia, 'Times New Roman', serif;*/
    font-size: clamp(2.6rem, 5.5vw, 2.85rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.06;
    margin: 0;
    letter-spacing: -.03em;
}
.buca-cta__body p {
    font-size: .95rem;
    color: rgba(255,255,255,.62);
    line-height: 1.82;
    margin-bottom: 2.25rem;
}
.buca-cta__actions {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────
   Animations
───────────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────────
   Responsive
───────────────────────────────────────────────── */
@media (max-width: 991px) {
    .buca-cta__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .buca-cta { padding: 4rem 0; }
}

@media (max-width: 767px) {
    .buca-hero { min-height: 440px; }
    .buca-hero__content { padding-left: 1.25rem; }
    .buca-hero__title { font-size: 2.25rem; }

    .buca-intro__bar { flex-direction: column; align-items: flex-start; }

    .applicant-list { grid-template-columns: 1fr; }
    .applicant-item,
    .applicant-item:nth-child(even),
    .applicant-item:nth-last-child(-n+2) {
        border-right: none;
        border-bottom: 1px solid var(--rule);
    }
    .applicant-item:last-child { border-bottom: none; }

    .process-item { grid-template-columns: 40px 1fr; gap: 1rem; }
    .process-item__num { font-size: 1.5rem; }

    .buca-cta { padding: 3.25rem 0; }
    .buca-cta__title { font-size: 2.1rem; }

    .buca-main { padding-top: 2.5rem; padding-bottom: 2.5rem; }
}
