/* --- Global Theme & Variables --- */
:root {
    --bg-color: #F77807;
    --text-main: #FFF0E0;
    --text-muted: rgba(255, 240, 224, 0.75);
    --border-color: rgba(255, 240, 224, 0.25);
    --dark-accent: #111111;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Recreated Native Branding / Logo --- */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.logo-icon {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-style: italic;
    font-weight: bold;
    position: relative;
    padding-top: 10px;
}

/* The stylized crown/leaves decoration above the 'D' */
.logo-icon::before {
    content: '🔱'; 
    font-size: 0.8rem;
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.9;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    letter-spacing: 0.5px;
}

.logo-subtext {
    font-size: 0.75rem;
    letter-spacing: 1px;
    opacity: 0.85;
    margin-left: 1rem;
    border-left: 1px solid var(--border-color);
    padding-left: 1rem;
}

/* --- Navigation Header --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-left: 2rem;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    opacity: 1;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--text-main);
}

/* Mobile Menu Toggle button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s ease;
}

/* --- Hero Section --- */
.hero-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.meta-tag {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.date-tag {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    opacity: 0.75;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.read-time {
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.hero-image-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 2rem 0;
}

/* --- Editorial Grid Segment --- */
.editorial-grid {
    margin: 4rem 0;
}

.editorial-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 240, 224, 0.15);
}

.editorial-row:last-child {
    border-bottom: none;
}

.editorial-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    position: relative;
    padding-left: 1.5rem;
}

.editorial-label::before {
    content: '—';
    position: absolute;
    left: 0;
    opacity: 0.5;
}

.editorial-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
}

/* --- Blockquote --- */
.quote-container {
    text-align: center;
    max-width: 800px;
    margin: 5rem auto;
}

.quote-container blockquote {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.4;
}

/* --- Archive & Prev Entry Navigation Blocks --- */
.archive-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 4rem 0;
}

.nav-block {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
}

.nav-block h3 {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.nav-block p {
    font-size: 1rem;
    color: var(--text-muted);
}

.nav-block p.entry-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.light-date {
    opacity: 0.6;
    font-weight: normal;
    margin-left: 0.5rem;
}

.read-time-small {
    font-size: 0.75rem;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* Buttons */
.btn-outline {
    border: 1px solid var(--text-main);
    color: var(--text-main);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: background 0.3s, color 0.3s;
}

.btn-outline:hover {
    background-color: var(--text-main);
    color: var(--bg-color);
}

.btn-text {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* --- Newsletter Section --- */
.newsletter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin: 4rem 0;
}

.newsletter-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.newsletter-info h3 {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.25rem;
}

.newsletter-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.envelope-icon {
    font-size: 2rem;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: 4px;
}

.newsletter-form {
    display: flex;
    flex-grow: 1;
    max-width: 500px;
    gap: 0.5rem;
}

.newsletter-form input {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 1rem;
    color: var(--text-main);
    border-radius: 4px;
    flex-grow: 1;
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: rgba(255, 240, 224, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--text-main);
}

.newsletter-form button {
    background-color: var(--dark-accent);
    color: #ffffff;
    border: none;
    padding: 0 2rem;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.newsletter-form button:hover {
    opacity: 0.9;
}

/* --- Footer --- */
.footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: var(--text-main);
    font-size: 1.1rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-socials a:hover {
    opacity: 1;
}

/* --- Responsive Media Queries --- */

@media (max-width: 992px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .archive-navigation {
        grid-template-columns: 1fr;
    }
    .newsletter-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .newsletter-form {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: relative;
    }
    .logo-subtext {
        display: none; /* Hide subtitle details on minimal mobile headers */
    }
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--bg-color);
        padding: 1rem 2rem;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 100;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        margin: 1rem 0;
        font-size: 1rem;
    }
    .editorial-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .nav-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .quote-container blockquote {
        font-size: 1.4rem;
    }
}

/* -------------------------------------------*/

/* --- Archive Specific Styles --- */
.archive-header {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.archive-header h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.archive-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Filter Bar styles */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 4rem;
}

.filter-group {
    display: flex;
    gap: 4rem;
}

.filter-select-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-select-wrapper label {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    opacity: 0.8;
}

.filter-select-wrapper select {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 1rem;
    padding-right: 2rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23FFF0E0'><path d='M6 9L1 4h10z'/></svg>");
    background-repeat: no-repeat;
    background-position: right center;
}

.filter-select-wrapper select:focus {
    outline: none;
}

.filter-select-wrapper select option {
    background: #fff;
    color: #111;
}

.btn-clear-filters {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.btn-clear-filters:hover {
    opacity: 1;
}

.filter-select-wrapper select:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.archive-showing-label {
    font-size: 0.78rem;
    letter-spacing: 1px;
    opacity: 0.45;
    margin-top: -2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

/* Archive List Items */
.archive-year-group {
    margin-bottom: 4rem;
}

.year-heading {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.year-heading h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
}

.year-heading .sub-label {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    opacity: 0.7;
    padding-bottom: 0.5rem;
}

.archive-entry-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 240, 224, 0.15);
    text-decoration: none;
    color: var(--text-main);
    transition: background-color 0.2s ease;
}

.archive-entry-item:hover {
    background-color: rgba(255, 240, 224, 0.03);
}

.entry-date-block {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.entry-date-block .day {
    font-family: var(--font-serif);
    font-size: 1.8rem;
}

.entry-date-block .month {
    font-size: 0.75rem;
    letter-spacing: 1px;
    opacity: 0.7;
}

.entry-details h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    max-width: 800px;
}

.entry-arrow {
    font-size: 1.2rem;
    opacity: 0.8;
    padding-right: 0.5rem;
    transition: transform 0.2s ease;
}

.archive-entry-item:hover .entry-arrow {
    transform: translateX(5px);
}

/* Accordion Rows */
.accordion-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 240, 224, 0.15);
}

.accordion-label {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.accordion-toggle-btn {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.8;
}

.accordion-toggle-btn:hover {
    opacity: 1;
}

/* Load More Section */
.load-more-container {
    display: flex;
    justify-content: center;
    margin: 4rem 0 6rem 0;
}

.btn-load-more {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 1.2rem 3rem;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: background-color 0.2s;
}

.btn-load-more:hover {
    background-color: rgba(255, 240, 224, 0.05);
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .archive-header h1 {
        font-size: 2.5rem;
    }
    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .filter-group {
        gap: 2rem;
        width: 100%;
        justify-content: space-between;
    }
    .archive-entry-item {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }
    .entry-arrow {
        display: none; /* Hide decorative arrows on smaller mobile views */
    }
    .entry-details h3 {
        font-size: 1.2rem;
    }
}


/* ----------------------------------- */

/* --- Opportunities Specific Styles --- */
.opportunities-header {
    margin-top: 3rem;
    margin-bottom: 5rem;
}

.opportunities-header h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.opportunities-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.5;
}

/* Row card structures */
.opportunities-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
}

.opportunity-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    border-bottom: 1px solid rgba(255, 240, 224, 0.15);
    padding-bottom: 4rem;
}

.opportunity-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.opp-number {
    font-size: 0.9rem;
    font-family: var(--font-sans);
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.opp-dash {
    opacity: 0.4;
}

.opportunity-card h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.opp-location {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    opacity: 0.75;
    margin-bottom: 2rem;
}

.opp-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 420px;
}

/* Unique Underlined Action Links */
.btn-underline-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--text-main);
    transition: gap 0.2s ease;
}

.btn-underline-link:hover {
    gap: 1.5rem;
}

/* Image Showcase Mask */
.opp-image-wrapper {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.opp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.opportunity-card:hover .opp-img {
    transform: scale(1.02);
}

/* --- Responsive Media Queries Override --- */
@media (max-width: 992px) {
    .opportunity-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 3rem;
    }
    .opportunities-header h1 {
        font-size: 2.8rem;
    }
    .opp-description {
        max-width: none;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .opportunities-header h1 {
        font-size: 2.3rem;
    }
    .opportunity-card h2 {
        font-size: 1.8rem;
    }
}


/* ------------------------- */

/* --- Single Opportunity Page & Slider Layouts --- */
.single-opp-header {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.breadcrumb-tag {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

.single-opp-header h1 {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.opp-location-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0.9;
}

/* Fluid Slider Container Styles */
.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Controls Arrow Overlays */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(17, 17, 17, 0.4);
    color: var(--text-main);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    transition: background 0.2s, opacity 0.2s;
    backdrop-filter: blur(4px);
}

.slider-arrow:hover {
    background: rgba(17, 17, 17, 0.7);
}

.slider-arrow.prev { left: 1.5rem; }
.slider-arrow.next { right: 1.5rem; }

/* Carousel Dots Indicator */
.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 240, 224, 0.4);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--text-main);
    transform: scale(1.2);
}

/* Intro Summary Block Styles */
.opp-intro-summary {
    max-width: 850px;
    margin-bottom: 4rem;
}

.opp-intro-summary p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-main);
}

/* Grid Override Details modifications for items 01-04 labels */
.detailed-breakdown .editorial-label {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detailed-breakdown .editorial-label::before {
    content: none; /* Strip out original bullet ticks to clean lines */
}

.row-dash {
    opacity: 0.4;
    font-family: var(--font-sans);
    font-size: 1rem;
}

.detailed-breakdown .editorial-text {
    font-size: 1.05rem;
    padding-top: 0.6rem;
}

/* Request details anchor row layout placement */
.opportunity-actions {
    margin: 5rem 0 2rem 0;
}

/* Responsive Scaling Overrides */
@media (max-width: 768px) {
    .single-opp-header h1 {
        font-size: 2.8rem;
    }
    .slider-container {
        aspect-ratio: 4 / 3; /* Give slides better landscape visibility on handheld screen widths */
    }
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .detailed-breakdown .editorial-label {
        font-size: 1.5rem;
    }
}

/* ------------------ */

/* --- About Page Specific Styles --- */
.about-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: flex-start;
    margin-top: 3rem;
}

.about-titles {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.title-sub {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.company-sub {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    opacity: 0.7;
}

.mini-accent-line {
    border: none;
    border-top: 1px solid var(--text-main);
    width: 60px;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.bio-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 3.5rem;
}

.inline-quote blockquote {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.4;
    position: relative;
}

.about-portrait-wrapper {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 4px;
    overflow: hidden;
}

.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Contact CTA Segment Section --- */
.contact-cta-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin: 5rem 0;
    align-items: center;
}

.cta-message-block h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-message-block p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.cta-actions-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info-row dt {
    font-size: 1.05rem;
    opacity: 0.6;
    flex-shrink: 0;
}

.contact-info-row dd {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Outline Contact Buttons */
.contact-card-btn {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    transition: background-color 0.2s, border-color 0.2s;
}

.contact-card-btn:hover {
    border-color: var(--text-main);
    background-color: rgba(255, 240, 224, 0.03);
}

.contact-btn-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1rem;
}

.contact-btn-info span {
    font-size: 0.85rem;
}

.arrow-move {
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.contact-card-btn:hover .arrow-move {
    transform: translateX(4px);
    opacity: 1;
}

/* Middle OR rule alignment text */
.divider-text-line {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-main);
    opacity: 0.5;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin: 0.5rem 0;
}

.divider-text-line::before, .divider-text-line::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.divider-text-line:not(:empty)::before { margin-right: 1.5rem; }
.divider-text-line:not(:empty)::after { margin-left: 1.5rem; }

/* Bottom light block action container button overlay */
.primary-solid-btn {
    background-color: #FFF0E0;
    color: #111111;
    border: none;
}

.primary-solid-btn:hover {
    background-color: #ffffff;
}

/* Enhanced footer with embedded copyright tracking rule details */
.footer-left-group {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.copyright-label {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* --- Responsive Media Queries Override --- */
@media (max-width: 992px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-portrait-wrapper {
        max-width: 550px;
        margin: 0 auto;
        order: -1;
    }
    .contact-cta-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .cta-message-block h2 {
        font-size: 2.3rem;
    }
    .footer-left-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}