/* ------------------------------
   BASIC RESET
------------------------------ */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #f7f5f0;
    color: #17201d;
    font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.6;
}
.hero h1,
.section-heading h2,
.closing-box h2 {
    font-family: "Times New Roman", Times, serif;
    font-weight: 700;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

/* ------------------------------
   NAVIGATION
------------------------------ */

.site-header {
    background: rgba(247, 245, 240, 0.94);
    border-bottom: 1px solid #d8d7d1;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: auto;
    max-width: 1240px;
    min-height: 76px;
    padding: 0 32px;
}

.logo {
    align-items: center;
    color: #173f36;
    display: flex;
    gap: 12px;
    text-decoration: none;
}

.logo-mark {
    align-items: center;
    background: #173f36;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    font-size: 12px;
    font-weight: 800;
    height: 48px;
    justify-content: center;
    letter-spacing: 1px;
    width: 48px;
    flex-shrink: 0;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.nav-links {
    align-items: center;
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.nav-links a:hover {
    opacity: 0.55;
}

.menu-button {
    background: transparent;
    border: 1px solid #173f36;
    border-radius: 100px;
    cursor: pointer;
    display: none;
    font: inherit;
    font-size: 14px;
    padding: 8px 17px;
}

/* ------------------------------
   HERO
------------------------------ */

.hero {
    align-items: center;
    display: grid;
    gap: 65px;
    grid-template-columns: 1.15fr 0.85fr;
    margin: auto;
    max-width: 1240px;
    min-height: calc(100vh - 76px);
    padding: 90px 32px;
}

.eyebrow,
.small-label {
    color: #a26446;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: clamp(58px, 8vw, 105px);
    letter-spacing: -6px;
    line-height: 0.92;
    margin-top: 24px;
    max-width: 800px;
}

.hero h1 span {
    color: #2f725f;
    display: block;
}

.hero-description {
    color: #4f5754;
    font-size: 19px;
    margin-top: 30px;
    max-width: 640px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.primary-button,
.secondary-button {
    border-radius: 100px;
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    padding: 15px 24px;
    text-decoration: none;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.primary-button {
    background: #173f36;
    color: #ffffff;
}

.secondary-button {
    border: 1px solid #173f36;
}

.primary-button:hover,
.secondary-button:hover {
    opacity: 0.75;
    transform: translateY(-2px);
}

.founder-line {
    border-left: 3px solid #c89878;
    color: #626966;
    font-size: 13px;
    margin-top: 34px;
    max-width: 610px;
    padding-left: 16px;
}

/* ------------------------------
   HERO VISUAL
------------------------------ */

.hero-visual {
    height: 480px;
    position: relative;
}

.visual-circle {
    background: #d9bda7;
    border-radius: 50%;
    height: 330px;
    position: absolute;
    right: 20px;
    top: 50px;
    width: 330px;
}

.visual-card {
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(17, 45, 38, 0.15);
    padding: 25px;
    position: absolute;
    width: 205px;
}

.visual-card span {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.visual-card p {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.card-one {
    background: #173f36;
    color: #ffffff;
    left: 10px;
    top: 60px;
    transform: rotate(-5deg);
}

.card-two {
    background: #ffffff;
    right: 5px;
    top: 175px;
    transform: rotate(5deg);
}

.card-three {
    background: #e2c97e;
    bottom: 20px;
    left: 70px;
    transform: rotate(-2deg);
}

/* ------------------------------
   GENERAL SECTIONS
------------------------------ */

.section {
    margin: auto;
    max-width: 1240px;
    padding: 110px 32px;
}

.tinted-section {
    background: #ebe7de;
    max-width: none;
    padding-left: max(32px, calc((100vw - 1176px) / 2));
    padding-right: max(32px, calc((100vw - 1176px) / 2));
}

.section-heading {
    align-items: flex-end;
    border-bottom: 1px solid #cccbc4;
    display: flex;
    gap: 20px;
    margin-bottom: 55px;
    padding-bottom: 24px;
}

.section-number {
    color: #a26446;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-heading h2 {
    font-size: clamp(38px, 6vw, 68px);
    letter-spacing: -3px;
    line-height: 1;
}

.section-introduction {
    color: #606764;
    font-size: 18px;
    margin-bottom: 42px;
    max-width: 700px;
}

/* ------------------------------
   ABOUT
------------------------------ */

.about-grid {
    display: grid;
    gap: 70px;
    grid-template-columns: 1.15fr 0.85fr;
}

.about-text {
    color: #3f4744;
    font-size: 17px;
}

.about-text p + p {
    margin-top: 22px;
}

.large-text {
    color: #17201d;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.7px;
    line-height: 1.35;
}

.mission-card {
    background: #173f36;
    border-radius: 26px;
    color: #ffffff;
    padding: 42px;
}

.mission-card .small-label {
    color: #e2c97e;
}

.mission-card h3 {
    font-size: 29px;
    letter-spacing: -1px;
    line-height: 1.25;
    margin: 22px 0;
}

.mission-card > p:last-child {
    color: #d9e3df;
}

/* ------------------------------
   WORKSHOP TOPICS
------------------------------ */

.topic-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.topic-card {
    background: #ffffff;
    border: 1px solid #d6d2ca;
    border-radius: 22px;
    min-height: 290px;
    padding: 34px;
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.topic-card:hover {
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
    transform: translateY(-5px);
}

.topic-number {
    color: #a26446;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.topic-card h3 {
    font-size: 28px;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.topic-card > p:last-child {
    color: #59605d;
}

.activity-section {
    align-items: start;
    background: #d8b9a3;
    border-radius: 24px;
    display: grid;
    gap: 50px;
    grid-template-columns: 0.7fr 1.3fr;
    margin-top: 24px;
    padding: 42px;
}

.activity-section h3 {
    font-size: 28px;
    letter-spacing: -1px;
    margin-top: 12px;
}

.activity-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.activity-list span {
    background: #f7f5f0;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 14px;
}

/* ------------------------------
   IMPACT
------------------------------ */

.impact-section {
    background: #173f36;
    color: #ffffff;
    max-width: none;
    padding-left: max(32px, calc((100vw - 1176px) / 2));
    padding-right: max(32px, calc((100vw - 1176px) / 2));
}

.light-heading {
    border-color: #527369;
}

.light-heading .section-number {
    color: #e2c97e;
}

.impact-introduction {
    color: #d0ddd8;
    font-size: 19px;
    margin-bottom: 45px;
    max-width: 760px;
}

.impact-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, 1fr);
}

.impact-card {
    border: 1px solid #527369;
    border-radius: 22px;
    min-height: 240px;
    padding: 32px;
}

.impact-number {
    color: #e2c97e;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.impact-card h3 {
    font-size: 25px;
    margin-bottom: 12px;
}

.impact-card > p:last-child {
    color: #d0ddd8;
}

/* ------------------------------
   PHOTO GALLERY
------------------------------ */

.photo-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 230px 230px;
}

.photo-placeholder {
    align-items: center;
    background:
        linear-gradient(
            135deg,
            #d8b9a3,
            #e9ddcf
        );
    border-radius: 22px;
    color: #644934;
    display: flex;
    font-size: 13px;
    font-weight: 800;
    justify-content: center;
    letter-spacing: 1px;
    min-height: 220px;
    text-transform: uppercase;
}

.large-photo {
    grid-row: span 2;
}

/* ------------------------------
   TESTIMONIALS
------------------------------ */

.testimonial-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #d7d3cb;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    min-height: 310px;
    padding: 32px;
}

.quote-mark {
    color: #a26446;
    font-family: Georgia, serif;
    font-size: 70px;
    height: 60px;
    line-height: 1;
}

.testimonial-text {
    color: #303835;
    font-family: Georgia, serif;
    font-size: 20px;
    line-height: 1.5;
    margin-top: 18px;
}

.testimonial-name {
    color: #747a77;
    font-size: 12px;
    font-weight: 700;
    margin-top: auto;
    padding-top: 30px;
    text-transform: uppercase;
}

/* ------------------------------
   TEAM
------------------------------ */

.team-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(2, 1fr);
}

.team-card {
    align-items: flex-start;
    border: 1px solid #d2d0c9;
    border-radius: 24px;
    display: grid;
    gap: 25px;
    grid-template-columns: 76px 1fr;
    padding: 36px;
}

.director-card {
    background: #e8ded2;
}

.team-initials {
    align-items: center;
    background: #173f36;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    font-size: 19px;
    font-weight: 800;
    height: 76px;
    justify-content: center;
    width: 76px;
}

.team-card h3 {
    font-size: 28px;
    letter-spacing: -1px;
    margin: 9px 0 12px;
}

.team-card p:last-child {
    color: #5a615e;
}

/* ------------------------------
   RESOURCES
------------------------------ */

.resources-section {
    padding-top: 80px;
}

.resource-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.resource-card {
    background: #ffffff;
    border: 1px solid #d6d4cd;
    border-radius: 22px;
    min-height: 285px;
    padding: 32px;
}

.resource-card h3 {
    font-size: 25px;
    letter-spacing: -0.8px;
    line-height: 1.25;
    margin: 22px 0 16px;
}

.resource-card > p:last-child {
    color: #5b625f;
}

/* ------------------------------
   CLOSING SECTION
------------------------------ */

.closing-section {
    padding-top: 40px;
}

.closing-box {
    background: #e2c97e;
    border-radius: 30px;
    padding: 75px;
    text-align: center;
}

.closing-box h2 {
    font-size: clamp(44px, 7vw, 78px);
    letter-spacing: -4px;
    line-height: 1;
    margin: 18px auto 24px;
    max-width: 850px;
}

.closing-box > p:not(.small-label) {
    margin: 0 auto 30px;
    max-width: 610px;
}

/* ------------------------------
   FOOTER
------------------------------ */

footer {
    border-top: 1px solid #d8d7d1;
    color: #636a67;
    display: flex;
    font-size: 12px;
    justify-content: space-between;
    margin: auto;
    max-width: 1240px;
    padding: 35px 32px;
}

.footer-title {
    color: #17201d;
    font-weight: 800;
}

/* ------------------------------
   TABLET
------------------------------ */

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: 390px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .topic-grid,
    .impact-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid,
    .resource-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .large-photo {
        grid-column: span 2;
        grid-row: auto;
    }

    .activity-section {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------
   MOBILE
------------------------------ */

@media (max-width: 700px) {
    .navbar {
        min-height: 68px;
        padding: 0 20px;
    }

    .menu-button {
        display: block;
    }

    .nav-links {
        align-items: flex-start;
        background: #f7f5f0;
        border-bottom: 1px solid #d8d7d1;
        display: none;
        flex-direction: column;
        gap: 18px;
        left: 0;
        padding: 25px;
        position: absolute;
        right: 0;
        top: 68px;
    }

    .nav-links.open {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 75px 20px;
    }

    .hero h1 {
        font-size: 59px;
        letter-spacing: -4px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-visual {
        display: none;
    }

    .section,
    .tinted-section,
    .impact-section {
        padding: 80px 20px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 40px;
    }

    .section-heading h2 {
        letter-spacing: -2px;
    }

    .topic-grid,
    .testimonial-grid,
    .resource-grid,
    .photo-grid {
        grid-template-columns: 1fr;
    }

    .large-photo {
        grid-column: span 1;
    }

    .team-card {
        grid-template-columns: 1fr;
    }

    .closing-box {
        padding: 55px 24px;
    }

    .closing-box h2 {
        letter-spacing: -3px;
    }

    footer {
        flex-direction: column;
        gap: 8px;
        padding: 30px 20px;
    }
}
.primary-button,
.secondary-button {
    font-weight: 500;
    letter-spacing: 0.7px;
}

.visual-card p {
    font-weight: 500;
    letter-spacing: 0.8px;
    line-height: 1.3;
}
.testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
}

.testimonial-card {
    min-height: 0;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
}

.testimonial-attribution {
    border-top: 1px solid #dedbd4;
    margin-top: auto;
    padding-top: 24px;
}

.testimonial-name {
    color: #17201d;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.testimonial-role {
    color: #747a77;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 6px;
    text-transform: none;
}

@media (max-width: 700px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}
/* ------------------------------
   MATERIALS PAGE
------------------------------ */

.materials-hero {
    margin: auto;
    max-width: 1240px;
    padding: 130px 32px 95px;
}

.materials-hero h1 {
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(62px, 10vw, 120px);
    letter-spacing: -5px;
    line-height: 0.95;
    margin: 22px 0 28px;
}

.materials-hero > p:not(.eyebrow) {
    color: #555e5a;
    font-size: 19px;
    margin-bottom: 34px;
    max-width: 700px;
}

.materials-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, 1fr);
}

.material-card {
    background: #ffffff;
    border: 1px solid #d6d4cd;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    padding: 32px;
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.material-card:hover {
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
    transform: translateY(-5px);
}

.material-card h3 {
    font-size: 27px;
    letter-spacing: -0.8px;
    line-height: 1.2;
    margin: 22px 0 16px;
}

.material-card > p:not(.small-label) {
    color: #5b625f;
}

.material-link {
    color: #173f36;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-top: auto;
    padding-top: 30px;
    text-decoration: none;
}

.material-link:hover {
    text-decoration: underline;
}

.coming-soon-label {
    color: #8a6a55;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-top: auto;
    padding-top: 30px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .materials-hero {
        padding: 90px 20px 65px;
    }

    .materials-hero h1 {
        font-size: 60px;
        letter-spacing: -3px;
    }

    .materials-grid {
        grid-template-columns: 1fr;
    }
}
/* FOUR-PHOTO GALLERY */

.photo-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    grid-template-rows: repeat(2, 250px);
}

.large-photo {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.gallery-item {
    background: #ffffff;
    border-radius: 22px;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.gallery-item figcaption {
    background: rgba(23, 63, 54, 0.92);
    bottom: 0;
    color: #ffffff;
    font-size: 13px;
    left: 0;
    line-height: 1.4;
    padding: 14px 16px;
    position: absolute;
    right: 0;
}

@media (max-width: 900px) {
    .photo-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 300px 220px 220px;
    }

    .large-photo {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
}

@media (max-width: 700px) {
    .photo-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .large-photo {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-item {
        height: 300px;
    }
}