/* ============================================================
   DECAURA – ABOUT PAGE STYLES
   ============================================================ */

/* ── SHARED UTILITY: ruled label ────────────────────────────── */
/* Used by "Meet our Founder" and "Our Philosophy" headings     */
.ruled-label {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 52px;
    width: 100%;
}
.ruled-line {
    flex: 1;
    height: 1px;
    background: var(--arch-beige);
    display: block;
}
.ruled-text {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-graphite);
    white-space: nowrap;
}


/* ════════════════════════════════════════════════════════════
   ABOUT HERO
   ════════════════════════════════════════════════════════════ */
.about-hero {
    position: relative;
    height: 85vh;
    min-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        105deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.45) 55%,
        rgba(0, 0, 0, 0.22) 100%
    );
}
.about-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
}
.about-hero-label {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brushed-bronze);
    margin-bottom: 16px;
}
.about-hero-heading {
    font-family: var(--serif);
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 400;
    color: var(--pure-white);
    line-height: 1.1;
    width: 100%;
    margin-bottom: 20px;
    max-width: 640px;
}
.about-hero-sub {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 300;
    color: rgba(216, 208, 197, 0.8);
    line-height: 1.75;
    max-width: 480px;
}


/* ════════════════════════════════════════════════════════════
   WHO WE ARE
   ════════════════════════════════════════════════════════════ */
.who-section {
    background: var(--porcelain-white);
    padding: 96px 0px 40px 0px;
}
.who-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.who-content .section-label {
    margin-bottom: 16px;
}
.who-content h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    margin-bottom: 28px;
    line-height: 1.15;
}
.who-content p {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--warm-graphite);
    line-height: 1.85;
    margin-bottom: 18px;
}
.who-content p:last-child { margin-bottom: 0; }
.who-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}


/* ════════════════════════════════════════════════════════════
   MEET OUR FOUNDER
   ════════════════════════════════════════════════════════════ */
.founder-section {
    padding: 40px 0;
}
.founder-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 72px;
}
.founder-image img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    object-position: center top;
}
.founder-name {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400;
    color: var(--ink-black);
    margin-bottom: 28px;
    line-height: 1.1;
}
.founder-content{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.founder-content p {
    text-align:center;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--warm-graphite);
    line-height: 1.9;
    margin-bottom: 18px;
}
.founder-closing {
    padding-top: 8px;
    border-top: 1px solid var(--arch-beige);
    color: var(--ink-black) !important;
    font-style: italic;
    font-weight: 300 !important;
}


/* ════════════════════════════════════════════════════════════
   OUR PHILOSOPHY
   ════════════════════════════════════════════════════════════ */
.philosophy-section {
    background: var(--porcelain-white);
    padding: 40px 0px;
    text-align: center;
}
.philosophy-heading {
    font-family: var(--serif);
    font-size: clamp(26px, 3.8vw, 48px); /* Slightly smaller to match quote scale */
    font-weight: 400;
    line-height: 1.4;
    margin: 0 auto 56px; 
    display: block;
    width: 100%;
    text-align: center;
    color: var(--ink-black);
}
.philosophy-heading .quote-line {
    display: block;
    white-space: nowrap; /* Prevent breaking on all screen sizes */
}
/* Scroll reveal characters */
.philosophy-heading .char {
    display: inline;
    color: rgba(31, 31, 31, 0.1);
    transition: color 0.35s ease;
}

.philosophy-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.philosophy-body p {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--warm-graphite);
    line-height: 1.7;
    margin: 0;
}
.philosophy-body p br {
    margin-bottom: 4px;
    display: block;
    content: "";
}


/* ════════════════════════════════════════════════════════════
   DECAURA FOUNDATION
   ════════════════════════════════════════════════════════════ */
.foundation-section {
    background: none;
    padding: 40px 0px 80px 0px;
}

/* Opening paragraphs */
.foundation-intro {
    max-width: 820px;
    margin: 0 auto 64px;
    text-align: center;
}
.foundation-intro p {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--warm-graphite);
    line-height: 1.8;
    margin-bottom: 28px;
}

/* "Our work is focused…" lead line */
.foundation-areas-lead {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink-black);
    text-align: center;
    margin-bottom: 48px;
}

/* Four pillars grid */
.foundation-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 100px;
}
.pillar {
    border: 1px solid #CDB68D;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.pillar-number {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--ink-black);
    line-height: 1;
    margin-bottom: 24px;
}
.pillar h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--ink-black);
    margin-bottom: 16px;
    line-height: 1.2;
}
.pillar p {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--warm-graphite);
    line-height: 1.8;
}

/* Body copy – centered editorial */
.foundation-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 820px;
    margin: 0 auto;
}
.foundation-body p {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--warm-graphite);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 32px;
}
.foundation-body p:last-child {
    margin-bottom: 0;
}


/* ════════════════════════════════════════════════════════════
   CTA – ABOUT PAGE VARIANT
   ════════════════════════════════════════════════════════════ */
.cta-about {
    background: var(--shadow-grey);
    padding: 104px var(--gutter);
    text-align: center;
}
.cta-about h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 400;
    color: var(--ink-black);
    margin-bottom: 18px;
    line-height: 1.2;
}
.cta-about p {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--warm-graphite);
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.8;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.cta-services {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--warm-graphite);
}
.cta-services .dot-sep {
    color: var(--brushed-bronze);
    font-size: 12px;
}


/* Footer styles are in global.css */


/* ════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .who-layout,
    .founder-layout     { grid-template-columns: 1fr; gap: 48px; }
    .who-image img      { height: 100%; }
    .founder-image img  { height: 100%; object-position: center top; }
    .foundation-pillars { grid-template-columns: repeat(2, 1fr); }
    .foundation-body    { grid-template-columns: 1fr; gap: 16px; }
    .who-section,
    .founder-section    { padding: 72px 0; }
}

@media (max-width: 768px) {
    .cta-buttons        { flex-direction: column; align-items: center; }
    .about-hero         { height: 60vh; }
    .foundation-pillars { grid-template-columns: 1fr; }
    .foundation-closing { grid-column: 1; }
    .who-image img      { height: 100%; }
    .founder-image img  { height: 100%; }
    .who-section,
    .founder-section    { padding: 56px 0; }
    .pillar-number      { font-size: clamp(20px, 5vw, 28px); }
    .pillar h3          { font-size: clamp(16px, 4vw, 20px); }
    .foundation-areas-lead { font-size: clamp(15px, 3.5vw, 18px); }
}

@media (max-width: 480px) {
    .who-image img      { height: 100%; }
    .founder-image img  { height: 100%; }
    .who-section,
    .founder-section    { padding: 48px 0; }
    .philosophy-section,
    .foundation-section { padding: 48px 0; }
}
