:root {
    --color-black: #000000;
    --color-text: #1a1a1a;
    --color-gray-text: #4a5568;
    --color-light-bg: #f8f8f8;
    --color-quote-text: #5e6d7e;
    --container-width: 100%;
    --spacing-lg: 120px;
    --spacing-md: 80px;
    --spacing-sm: 40px;
    --font-main: 'Inter', sans-serif;
    --color-off-white: #f5f5f5;
    --color-brown: #8b6b5d;
    --color-text: #1a1a1a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-color: var(--color-off-white);
}

.container {
    padding-left: 3rem;
    padding-right: 3rem;
}

.bg-light {
    background-color: var(--color-light-bg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography Helpers */
h1, h2, h3, h4 {
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.logo {
    font-style: italic;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.02em;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.site-logo {
    height: 64px; /* Adjust this height to match the subtle look in your screenshot */
    width: auto;  /* Maintains aspect ratio */
    display: block;
    filter: brightness(0); /* Optional: Forces the logo to pure black if it isn't already */
}

/* Header & Footer */
.site-header {
    padding: 30px 0;
    background-color: transparent;
}

.site-footer {
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 12px;
    color: #888;
}

/* Hero Section */
.hero {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 0;
    margin-top: 0;

}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4rem); /* Adjusted for better scaling */
    margin-bottom: 2rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.1;
}

.hero h1 .break {
    display: block;
}

.no-wrap {
    white-space: nowrap;
}

.subheadline {
    font-size: 18px;
    color: var(--color-gray-text);
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    border: 2px solid var(--color-brown);
    border-radius: 0;
    text-decoration: none;
    color: var(--color-brown);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.25em;
    background-color: transparent;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--color-brown);
    color: white;
    border-color: var(--color-brown);
}

/* Full Width Image */

.full-width-img {
    width: 100%;
    aspect-ratio: 21 / 9;
    object-fit: cover;
}

/* Sections General */
section {
    padding: 80px 0;
}

section + section {
    padding-top: 0;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.huge-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 0;
}

.editorial-text p {
    font-size: 16px;
    margin-bottom: 2rem;
}

/* Big Quote Section */
.quote-section {
    text-align: center;
    padding: var(--spacing-lg) 0;
    background-color: #f2f2f2;
}

.lead-in {
    margin-bottom: var(--spacing-md);
}

.lead-in p {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.big-quote-momentum {
    font-size: clamp(1rem, 4vw, 2.5rem);
    color:var(--color-quote-text);
    font-weight: 700;
    max-width: 1000px;
    margin: var(--spacing-md) auto 0 auto;
    line-height: 1.1;
}

.big-quote {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color:#303e50;
    font-weight: 900;
    max-width: 1000px;
    margin: var(--spacing-md) auto 0 auto;
    line-height: 1.1;
}

/* Civic Signal */
.civic-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
    color: #1a1a1a;
}

.civic-signal .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding-top: 80px;
}

.civic-signal {
    background-color: var(--color-light-bg);
    padding-bottom: 80px;
}

.civic-signal .editorial-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #1a1a1a;
    max-width: 450px;
}

.align-center {
    align-items: center;
}

.signal-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Why It Exists Grid */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 60px;
}

.exists-grid {
    padding-top: 40px;
    background-color: var(--color-light-bg);
}

.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 80px;
}

.grid-item h4 {
    font-size: 18px;
    margin-bottom: 1rem;
}

.grid-item p {
    font-size: 14px;
    color: var(--color-gray-text);
}

/* Why It Matters */
.matters-section {
    padding-top: 80px;
    background-color: #f2f2f2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center
}

.matters-content p {
    font-size: 16px;
    color: var(--color-gray-text);
    margin-bottom: 1.5rem;
    align-items: center;
    justify-self: center;
}

.matter-title {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 60px;
    color:#303e50;;

}

.matter-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.believe-section {
    padding-top: 80px;
    background-color: var(--color-light-bg)
}

.berm-img-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
}

.berm-img {
    width:25rem;
    height: auto;
    aspect-ratio: 2 / 1;
    object-fit: cover;
}



.stalled-ambition {
    margin-top: 3rem !important;
    font-weight: 700;
    color: #888;
}

/* Numbered List */
.numbered-list {
    list-style: none;
}

.numbered-list li {
    padding: 25px 0;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.numbered-list li span {
    font-size: 12px;
    color: #888;
    margin-right: 20px;
}

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

.grid-3 img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
}

/* Black Banner */
.black-banner {
    background-color: #1a1a1a;
    padding: 200px 0;
    text-align: center;
    color: #ffffff;
}

.banner-box {
    max-width: 800px;
    margin: 0 auto;
}

.banner-headline {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin: 0;
    line-height: 1;
}

.banner-quote {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9; /* Slightly muted white for the quote */
    letter-spacing: 0.02em;
}

.banner-box h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 60px;
    }
    
    .two-col, .grid-2x2, .grid-3 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: clamp(1.2rem, 5vw, 2.2rem); 
    }

    .banner-box {
        padding: 60px 20px;
    }

    .footer-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}