/* =========================================================
   SPIZA ABOUT PAGE
   Isolated from Home page design
========================================================= */

.about-body {
    background: #f7f3ea;
}


/* =========================================================
   ABOUT PAGE HEADER FIX
========================================================= */

.about-body .site-header {
    background: rgba(16, 44, 37, 0.98);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.08);
}


.about-body .site-header.scrolled {
    background: rgba(16, 44, 37, 0.98);
}


.about-body .main-nav a {
    color: #ffffff;
}


.about-body .main-nav a:hover,
.about-body .main-nav a.active {
    color: #e8b783;
}


.about-body .nav-quote {
    color: #ffffff;
}


/* =========================================================
   COMMON ABOUT CONTAINER
========================================================= */

.about-container {
    width: min(1200px, 88%);

    margin-left: auto;
    margin-right: auto;
}


.about-page h1,
.about-page h2,
.about-page h3 {
    font-family: "Playfair Display", serif;
}


.about-page p {
    font-family: "DM Sans", sans-serif;
}


.about-eyebrow {
    display: inline-block;

    margin-bottom: 20px;

    color: rgba(255,255,255,0.78);

    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.about-eyebrow.dark {
    color: #b56a32;
}


/* =========================================================
   HERO
========================================================= */

.about-hero {
    position: relative;

    min-height: 760px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #ffffff;

    background: #173c32;
}


.about-hero-background {
    position: absolute;

    inset: 0;

    background-image:
        url("images/N.jpg");

    background-size: cover;

    /*
       Centering the image prevents the subject
       from being pushed too far to the left.
    */
    background-position: center center;

    background-repeat: no-repeat;

    transform: scale(1.03);
}


.about-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 25, 20, 0.88) 0%,
            rgba(8, 25, 20, 0.62) 48%,
            rgba(8, 25, 20, 0.28) 100%
        );
}


.about-hero-inner {
    position: relative;

    z-index: 2;

    /*
       Header is fixed, so we intentionally
       push hero content below it.
    */
    padding-top: 170px;
    padding-bottom: 100px;
}


.about-hero-content {
    max-width: 820px;
}


.about-hero-content h1 {
    margin: 0 0 30px;

    color: #ffffff;

    font-size:
        clamp(3.3rem, 6vw, 6.3rem);

    line-height: 1.05;
}


.about-hero-content h1 span {
    display: block;

    color: #e8b783;
}


.about-hero-content p {
    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,0.84);

    font-size: 1.07rem;

    line-height: 1.8;
}


/* =========================================================
   STORY
========================================================= */

.about-story {
    padding: 120px 0;

    background: #ffffff;
}


.about-story-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 80px;

    align-items: center;
}


.about-story-image {
    min-height: 580px;

    overflow: hidden;
}


.about-story-image img {
    width: 100%;
    height: 580px;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.8s ease;
}


.about-story-image:hover img {
    transform: scale(1.04);
}


.about-story-copy {
    max-width: 600px;
}


.about-story-copy h2 {
    margin: 0 0 30px;

    color: #173c32;

    font-size:
        clamp(2.5rem, 4vw, 4.3rem);

    line-height: 1.1;
}


.about-story-copy h2 span {
    display: block;

    color: #b56a32;
}


.about-story-copy p {
    margin: 0 0 18px;

    color: #67736d;

    font-size: 0.98rem;

    line-height: 1.85;
}


.about-text-link {
    display: inline-block;

    margin-top: 15px;

    padding-bottom: 4px;

    color: #173c32;

    border-bottom:
        1px solid #b56a32;

    font-weight: 600;
}


/* =========================================================
   PURPOSE
========================================================= */

.about-purpose {
    padding: 130px 0;

    background: #173c32;

    color: #ffffff;
}


.about-purpose-inner {
    max-width: 950px;

    margin: auto;

    text-align: center;
}


.about-purpose h2 {
    margin: 0 0 30px;

    color: #ffffff;

    font-size:
        clamp(2.8rem, 5vw, 5rem);

    line-height: 1.1;
}


.about-purpose h2 span {
    color: #e8b783;
}


.about-purpose p {
    max-width: 720px;

    margin: auto;

    color: rgba(255,255,255,0.72);

    line-height: 1.85;
}


/* =========================================================
   VISION & MISSION
========================================================= */

.vision-mission {
    padding: 120px 0;

    background: #f7f3ea;
}


.vm-heading {
    max-width: 700px;

    margin-bottom: 55px;
}


.vm-heading h2 {
    color: #173c32;

    font-size:
        clamp(2.5rem, 4vw, 4.4rem);

    line-height: 1.1;
}


.vm-heading h2 span {
    color: #b56a32;
}


.vm-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 30px;
}


.vm-card {
    position: relative;

    padding: 55px;

    background: #ffffff;

    border-top:
        3px solid #b56a32;

    box-shadow:
        0 12px 35px rgba(23,60,50,0.05);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.vm-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 22px 50px rgba(23,60,50,0.10);
}


.vm-number {
    display: block;

    margin-bottom: 30px;

    color: #b56a32;

    font-size: 0.75rem;

    font-weight: 600;

    letter-spacing: 3px;
}


.vm-label {
    display: block;

    margin-bottom: 15px;

    color: #b56a32;

    font-size: 0.72rem;

    font-weight: 600;

    letter-spacing: 3px;
}


.vm-card h3 {
    margin: 0 0 25px;

    color: #173c32;

    font-size:
        clamp(1.7rem, 2.5vw, 2.5rem);

    line-height: 1.2;
}


.vm-card p {
    margin: 0 0 16px;

    color: #67736d;

    line-height: 1.8;
}


/* =========================================================
   VALUES
========================================================= */

.about-values {
    padding: 120px 0;

    background: #ffffff;
}


.values-heading {
    max-width: 700px;

    margin-bottom: 55px;
}


.values-heading h2 {
    color: #173c32;

    font-size:
        clamp(2.5rem, 4vw, 4.3rem);

    line-height: 1.1;
}


.values-heading h2 span {
    color: #b56a32;
}


.values-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border-top:
        1px solid rgba(23,60,50,0.12);

    border-left:
        1px solid rgba(23,60,50,0.12);
}


.value-card {
    min-height: 290px;

    padding: 38px 28px;

    border-right:
        1px solid rgba(23,60,50,0.12);

    border-bottom:
        1px solid rgba(23,60,50,0.12);

    transition:
        background 0.3s ease;
}


.value-card:hover {
    background: #f7f3ea;
}


.value-card > span {
    color: #b56a32;

    font-size: 0.72rem;

    letter-spacing: 2px;
}


.value-card h3 {
    margin: 30px 0 15px;

    color: #173c32;

    font-size: 1.4rem;
}


.value-card p {
    color: #67736d;

    font-size: 0.9rem;

    line-height: 1.75;
}


/* =========================================================
   JOURNEY
========================================================= */

.about-journey {
    padding: 120px 0;

    background: #132f27;

    color: #ffffff;
}


.journey-heading {
    max-width: 720px;

    margin-bottom: 70px;
}


.journey-heading h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size:
        clamp(2.7rem, 5vw, 4.7rem);
}


.journey-heading h2 span {
    color: #e8b783;
}


.journey-heading p {
    max-width: 620px;

    color: rgba(255,255,255,0.68);
}


.timeline {
    position: relative;

    max-width: 950px;
}


.timeline::before {
    content: "";

    position: absolute;

    top: 5px;
    bottom: 5px;

    left: 139px;

    width: 1px;

    background:
        rgba(255,255,255,0.18);
}


.timeline-row {
    display: grid;

    grid-template-columns:
        110px 60px 1fr;

    margin-bottom: 65px;
}


.timeline-row:last-child {
    margin-bottom: 0;
}


.timeline-year {
    padding-top: 2px;

    color: #e8b783;

    font-size: 0.8rem;

    font-weight: 600;

    letter-spacing: 2px;
}


.timeline-marker {
    position: relative;

    width: 13px;
    height: 13px;

    margin-top: 6px;
    margin-left: 24px;

    border-radius: 50%;

    background: #b56a32;

    box-shadow:
        0 0 0 5px #132f27,
        0 0 0 6px rgba(232,183,131,0.5);
}


.timeline-copy {
    padding-left: 15px;
}


.timeline-copy h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 1.7rem;
}


.timeline-copy p {
    max-width: 650px;

    color: rgba(255,255,255,0.68);

    line-height: 1.8;
}


/* =========================================================
   PROCESS
========================================================= */

.about-process {
    padding: 120px 0;

    background: #f7f3ea;
}


.process-heading {
    max-width: 750px;

    margin: 0 auto 65px;

    text-align: center;
}


.process-heading h2 {
    color: #173c32;

    font-size:
        clamp(2.5rem, 4vw, 4.4rem);
}


.process-heading h2 span {
    color: #b56a32;
}


.process-heading p {
    margin-top: 20px;

    color: #67736d;
}


.process-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 15px;
}


.process-card {
    min-height: 230px;

    padding: 35px 25px;

    background: #ffffff;

    text-align: center;

    border-bottom:
        3px solid transparent;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}


.process-card:hover {
    transform: translateY(-6px);

    border-color: #b56a32;
}


.process-number {
    color: #b56a32;

    font-size: 0.72rem;

    letter-spacing: 2px;
}


.process-card h3 {
    margin: 35px 0 12px;

    color: #173c32;

    font-size: 1.35rem;
}


.process-card p {
    color: #67736d;

    font-size: 0.88rem;
}


/* =========================================================
   FINAL CTA
========================================================= */

.about-final-cta {
    position: relative;

    padding: 130px 0;

    overflow: hidden;

    background:
        url("images/I.jpg")
        center center / cover no-repeat;

    color: #ffffff;

    text-align: center;
}


.about-final-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(8,25,20,0.87);
}


.about-final-cta .about-container {
    position: relative;

    z-index: 2;
}


.about-final-content {
    max-width: 850px;

    margin: auto;
}


.about-final-content h2 {
    margin-bottom: 25px;

    color: #ffffff;

    font-size:
        clamp(2.7rem, 5vw, 4.8rem);
}


.about-final-content h2 span {
    display: block;

    color: #e8b783;
}


.about-final-content p {
    max-width: 650px;

    margin: 0 auto 35px;

    color: rgba(255,255,255,0.76);
}


.about-final-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .about-story-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .about-story-copy {
        max-width: 750px;
    }


    .vm-grid {
        grid-template-columns: 1fr;
    }


    .values-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .process-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .about-container {
        width: 88%;
    }


    .about-hero {
        min-height: 700px;
    }


    .about-hero-inner {
        padding-top: 155px;

        padding-bottom: 80px;
    }


    .about-hero-content h1 {
        font-size: 3rem;
    }


    .about-hero-background {
        background-position:
            58% center;
    }


    .about-story {
        padding: 80px 0;
    }


    .about-story-image {
        min-height: 370px;
    }


    .about-story-image img {
        height: 370px;
    }


    .about-purpose {
        padding: 90px 0;
    }


    .vision-mission {
        padding: 85px 0;
    }


    .vm-card {
        padding: 38px 27px;
    }


    .about-values {
        padding: 85px 0;
    }


    .values-grid {
        grid-template-columns: 1fr;
    }


    .about-journey {
        padding: 90px 0;
    }


    .timeline::before {
        left: 7px;
    }


    .timeline-row {
        grid-template-columns:
            35px 1fr;
    }


    .timeline-year {
        grid-column: 2;

        margin-bottom: 10px;
    }


    .timeline-marker {
        grid-column: 1;

        grid-row: 1 / span 2;

        margin-left: 1px;
    }


    .timeline-copy {
        grid-column: 2;

        padding-left: 0;
    }


    .about-process {
        padding: 85px 0;
    }


    .process-grid {
        grid-template-columns: 1fr;
    }


    .about-final-cta {
        padding: 90px 0;
    }


    .about-final-buttons {
        flex-direction: column;
    }


    .about-final-buttons .btn {
        width: 100%;
    }

}

/* =========================================================
   STEP 13 - ABOUT MOBILE POLISH
========================================================= */

@media (max-width: 900px) {

  .about-hero-inner {
    padding-top: 185px;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-story-copy {
    max-width: 100%;
  }

  .vm-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

}


@media (max-width: 600px) {

  .about-container {
    width: 88%;
  }

  .about-hero {
    min-height: 700px;
  }

  .about-hero-inner {
    padding-top: 175px;
    padding-bottom: 75px;
  }

  .about-hero-content h1 {
    font-size: 3rem;
  }

  .about-hero-content p {
    font-size: 0.95rem;
  }

  .about-story {
    padding: 75px 0;
  }

  .about-story-image,
  .about-story-image img {
    min-height: 350px;
    height: 350px;
  }

  .about-story-grid {
    gap: 45px;
  }

  .about-story-copy h2 {
    font-size: 2.6rem;
  }

  .about-purpose {
    padding: 85px 0;
  }

  .about-purpose h2 {
    font-size: 2.7rem;
  }

  .vision-mission {
    padding: 80px 0;
  }

  .vm-card {
    padding: 35px 25px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: auto;
  }

  .timeline::before {
    left: 7px;
  }

  .timeline-row {
    grid-template-columns: 35px 1fr;
  }

  .timeline-year {
    grid-column: 2;
    margin-bottom: 8px;
  }

  .timeline-marker {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-left: 1px;
  }

  .timeline-copy {
    grid-column: 2;
    padding-left: 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .about-final-buttons {
    flex-direction: column;
  }

  .about-final-buttons .btn {
    width: 100%;
  }

}