/*
Theme Name: GOAT Intake
Theme URI: https://goatintake.com
Author: Jerry Schrader
Description: Custom built theme for Goat Intake
Version: 1.0
Text Domain: goat-intake
*/

/* ===== CSS Variables ===== */
:root {
    --color-primary: #1a4d2e;
    --color-dark-green: #2d5f3f;
    --color-light-green: #4a7c5e;
    --color-black: #0a0a0a;
    --color-dark-gray: #1a1a1a;
    --color-medium-gray: #2a2a2a;
    --color-light-gray: #f5f5f5;
    --color-white: #ffffff;
    --color-text: #333333;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-dark-green);
}

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

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

/* ===== Header & Navigation ===== */
.site-header {
    background-color: var(--color-black);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.site-logo a {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-primary);
}

.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
    margin: 0 1.5rem;
}

.main-navigation a {
    color: var(--color-white);
    font-weight: 500;
    padding: 0.5rem 0;
    display: block;
}

.main-navigation a:hover {
    color: var(--color-primary);
}

/* Submenu Styles */
.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-dark-gray);
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    flex-direction: column;
    padding: 1rem 0;
}

.main-navigation li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .sub-menu li {
    margin: 0;
}

.main-navigation .sub-menu a {
    padding: 0.75rem 1.5rem;
}

.main-navigation .sub-menu a:hover {
    background-color: var(--color-medium-gray);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    padding-top: 70px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 77, 46, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--color-white);
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

/* ===== Services Section ===== */
.services-section {
    padding: 5rem 0;
    background-color: var(--color-black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--color-dark-gray);
    padding: 3rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(26, 77, 46, 0.3);
}

.service-card h3 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-light-gray);
    line-height: 1.8;
}

/* ===== About Section ===== */
.about-section {
    padding: 5rem 0;
    background-color: var(--color-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.about-text h3 {
    color: var(--color-dark-green);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-text .highlight {
    color: var(--color-primary);
}

/* ===== Blog Posts Section ===== */
.blog-section {
    padding: 5rem 0;
    background-color: var(--color-black);
}

.section-title {
    text-align: center;
    color: var(--color-white);
    margin-bottom: 3rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.post-card {
    background-color: var(--color-dark-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 77, 46, 0.3);
}

.post-thumbnail {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.post-content {
    padding: 2rem;
}

.post-meta {
    color: var(--color-light-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-content h3 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.post-content h3 a {
    color: var(--color-white);
}

.post-content h3 a:hover {
    color: var(--color-primary);
}

.post-excerpt {
    color: var(--color-light-gray);
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--color-primary);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* ===== Footer ===== */
.site-footer {
    background-color: var(--color-black);
    color: var(--color-light-gray);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-widget h4 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 0.75rem;
}

.footer-widget a {
    color: var(--color-light-gray);
}

.footer-widget a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid var(--color-medium-gray);
    padding-top: 2rem;
    text-align: center;
}

/* ===== Single Post Styles ===== */
.single-post {
    padding: 5rem 0;
    padding-top: calc(5rem + 70px);
}

.post-header {
    margin-bottom: 3rem;
}

.post-header h1 {
    color: var(--color-black);
    margin-bottom: 1rem;
}

.post-thumbnail-single {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.post-body {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.post-body p {
    margin-bottom: 1.5rem;
}

/* ===== Archive Styles ===== */
.archive-header {
    padding: 5rem 0 2rem;
    padding-top: calc(5rem + 70px);
    background-color: var(--color-dark-gray);
    color: var(--color-white);
    text-align: center;
}

.archive-posts {
    padding: 5rem 0;
}

/* ===== Contact Page ===== */
.contact-section {
    padding: 5rem 0;
    padding-top: calc(5rem + 70px);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 3rem auto;
    padding: 3rem;
    background-color: var(--color-light-gray);
    border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-secondary);
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 200px;
    resize: vertical;
}

.contact-form button {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 3rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: var(--color-dark-green);
    transform: translateY(-2px);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-black);
        transition: left 0.3s ease;
        padding: 2rem;
    }

    .main-navigation.active {
        left: 0;
    }

    .main-navigation ul {
        flex-direction: column;
    }

    .main-navigation li {
        margin: 1rem 0;
    }

    .main-navigation .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--color-medium-gray);
        margin-top: 0.5rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }

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

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* Logo and Phone Wrapper for Mobile */
.logo-phone-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Header Phone Styling */
.header-phone .phone-link {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 2px solid #ffffff;
    border-radius: 8px;
}

.header-phone .phone-link:hover {
    background-color: #ffffff;
    color: #1a4d2e;
}

.header-phone .phone-link svg {
    transition: transform 0.3s ease;
}

.header-phone .phone-link:hover svg {
    transform: scale(1.1);
}

/* Mobile: Show phone under logo, hide desktop version */
.header-phone-mobile {
    display: block;
    margin-top: 0.75rem;
}

.header-phone-desktop {
    display: none;
}

/* Desktop: Hide mobile version, show phone to the right */
@media (min-width: 992px) {
    .logo-phone-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .header-phone-mobile {
        display: none;
    }

    .header-phone-desktop {
        display: block;
        margin-left: 1.5rem;
    }

    .header-phone .phone-link {
        font-size: 1.125rem;
        padding: 10px 20px;
    }

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

/* Footer Bottom Styling */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
}

.footer-phone {
    display: flex;
    align-items: center;
}

.footer-phone a:hover {
    color: #1a4d2e !important;
    text-decoration: underline !important;
}

/* Desktop: Side by side */
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        gap: 2rem;
    }
}

/* Mobile: Reduce hero section height */
@media (max-width: 767px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.125rem;
    }

    .archive-header {
        padding: 3rem 0 1.5rem;
    }

    .archive-header h1 {
        font-size: 2rem;
    }

    .archive-header p {
        font-size: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 1.25rem;
    }
}

/* Desktop: Keep original height */
@media (min-width: 992px) {
    .hero-section {
        height: 100vh;
        min-height: 600px;
    }
}

/* ===== Contact Page (Refactored) ===== */
.contact-page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header-content {
    max-width: 800px;
    margin: 1rem auto;
}

.contact-hero-image {
    margin-bottom: 4rem;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    position: relative;
}

.contact-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-text {
    text-align: center;
    color: var(--color-white);
}

.contact-hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.contact-hero-text p {
    font-size: 1.2rem;
    color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-form-wrapper h2 {
    margin-top: 0;
    margin-bottom: 2rem;
}

.forminator-notice {
    padding: 1.5rem;
    background-color: #fff3cd;
    border-radius: 5px;
    border: 1px solid #ffc107;
}

.contact-info-card {
    background-color: var(--color-light-gray);
    padding: 2.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.contact-info-card h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.contact-info-intro {
    margin-bottom: 2rem;
    color: #666;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.btn-consultation {
    display: inline-block;
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-consultation:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ===== FAQ Section ===== */
.faq-section {
    margin-bottom: 4rem;
}

.faq-heading {
    text-align: center;
    margin-bottom: 1rem;
}

.faq-subheading {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    cursor: pointer;
}

.faq-item h3 {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle {
    font-size: 1.5rem;
}

.faq-content {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-image {
        height: 250px;
    }

    .contact-hero-text h2 {
        font-size: 1.75rem;
    }
}

/* =====================================================
   ABOUT PAGE  —  scoped under .about-page
   ===================================================== */
.about-page {
    --ag: #2a4c1a;
    /* green */
    --ag-mid: #345425;
    --ag-light: #3d6b30;
    --ag-black: #0a0a0a;
    --ag-soft: #111111;
    --ag-off-white: #f5f5f0;
    --ag-gray-light: #e8e8e3;
    --ag-gray-dark: #555550;
    --ag-serif: 'PT Serif', Georgia, serif;
    --ag-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---- HERO ---- */
.about-hero {
    position: relative;
    min-height: 100vh;
    background-color: var(--ag-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 120px;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    opacity: 0.35;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.5) 50%, rgba(10, 10, 10, 0.95) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px 100px;
    width: 100%;
}

.about-hero-content h1 {
    font-family: var(--ag-serif);
    font-size: clamp(3rem, 6.5vw, 6.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: #ffffff;
    max-width: 900px;
    margin-bottom: 28px;
}

.about-hero-content h1 em {
    font-style: italic;
    color: var(--ag-light);
}

.about-hero-content p {
    font-family: var(--ag-sans);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 44px;
}

.about-btn-primary {
    display: inline-block;
    font-family: var(--ag-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    background-color: var(--ag);
    padding: 16px 36px;
    border: 2px solid var(--ag);
    transition: background-color 0.2s, color 0.2s;
    margin-right: 16px;
}

.about-btn-primary:hover {
    background-color: transparent;
    color: var(--ag-light);
    border-color: var(--ag-light);
}

.about-btn-outline {
    display: inline-block;
    font-family: var(--ag-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    background-color: transparent;
    padding: 16px 36px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: border-color 0.2s;
}

.about-btn-outline:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.about-btn-dark {
    display: inline-block;
    font-family: var(--ag-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    background-color: var(--ag-black);
    padding: 18px 44px;
    border: 2px solid var(--ag-black);
    transition: background-color 0.2s, border-color 0.2s;
}

.about-btn-dark:hover {
    background-color: var(--ag);
    border-color: var(--ag);
    color: #ffffff;
}

/* ---- SHARED ---- */
.about-rule {
    width: 60px;
    height: 3px;
    background-color: var(--ag);
    margin-top: 32px;
}

.about-rule--light {
    background-color: var(--ag-light);
}

/* ---- WHO WE ARE ---- */
.about-who {
    background-color: #ffffff;
    padding: 120px 40px;
}

.about-who-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-who-left h2 {
    font-family: var(--ag-serif);
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--ag-black);
}

.about-who-left h2 em {
    font-style: italic;
    color: var(--ag);
}

.about-who-right p {
    font-family: var(--ag-sans);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--ag-gray-dark);
    margin-bottom: 20px;
}

.about-who-right p strong {
    color: var(--ag-black);
    font-weight: 600;
}

.about-who-right p em {
    font-style: italic;
    color: var(--ag-black);
    font-weight: 500;
}

/* ---- STATS ---- */
.about-stats {
    background-color: var(--ag-black);
    padding: 80px 40px;
}

.about-stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.about-stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 40px;
}

.about-stat-item:last-child {
    border-right: none;
}

.about-stat-number {
    font-family: var(--ag-serif);
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-number span {
    color: var(--ag-light);
}

.about-stat-label {
    font-family: var(--ag-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* ---- FULL-BLEED QUOTE ---- */
.about-fullbleed {
    position: relative;
    height: 540px;
    overflow: hidden;
    background-color: var(--ag-black);
}

.about-fullbleed img,
.about-fullbleed-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    filter: grayscale(20%);
}

.about-fullbleed-bg {
    background-color: #1a1a1a;
    display: block;
}

.about-fullbleed-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.15) 65%);
}

.about-fullbleed-text {
    position: absolute;
    top: 50%;
    left: max(40px, calc((100vw - 1280px) / 2 + 40px));
    transform: translateY(-50%);
    max-width: 560px;
}

.about-fullbleed-text p {
    font-family: var(--ag-serif);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-style: italic;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 24px;
}

.about-attribution {
    font-family: var(--ag-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ag-light);
}

/* ---- WHAT WE DO ---- */
.about-services {
    background-color: var(--ag-off-white);
    padding: 120px 40px;
}

.about-services-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.about-section-header {
    margin-bottom: 72px;
}

.about-section-header h2 {
    font-family: var(--ag-serif);
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    font-weight: 700;
    color: var(--ag-black);
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-section-header h2 em {
    font-style: italic;
    color: var(--ag);
}

.about-section-header p {
    font-family: var(--ag-sans);
    font-size: 1.05rem;
    color: var(--ag-gray-dark);
    max-width: 560px;
    line-height: 1.7;
}

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

.about-service-card {
    background-color: #ffffff;
    padding: 52px 48px;
    border-bottom: 3px solid transparent;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.about-service-card:hover {
    border-bottom-color: var(--ag-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.about-service-number {
    font-family: var(--ag-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--ag-gray-light);
    line-height: 1;
    margin-bottom: 20px;
}

.about-service-card h3 {
    font-family: var(--ag-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ag-black);
    margin-bottom: 16px;
    line-height: 1.2;
}

.about-service-card p {
    font-family: var(--ag-sans);
    font-size: 0.95rem;
    color: var(--ag-gray-dark);
    line-height: 1.75;
}

/* ---- WHY GOAT ---- */
.about-why {
    background-color: var(--ag-black);
    padding: 120px 40px;
}

.about-why-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 100px;
    align-items: start;
}

.about-why-left h2 {
    font-family: var(--ag-serif);
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 24px;
}

.about-why-left h2 em {
    font-style: italic;
    color: var(--ag-light);
}

.about-why-left>p {
    font-family: var(--ag-sans);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
}

.about-steps-list {
    display: flex;
    flex-direction: column;
}

.about-step-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding: 44px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    align-items: start;
}

.about-step-item:first-child {
    padding-top: 0;
}

.about-step-item:last-child {
    border-bottom: none;
}

.about-step-num {
    font-family: var(--ag-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--ag-light);
    line-height: 1;
    padding-top: 4px;
}

.about-step-content h3 {
    font-family: var(--ag-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.about-step-content p {
    font-family: var(--ag-sans);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
}

/* ---- COMMITMENT ---- */
.about-commitment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.about-commitment-image {
    position: relative;
    overflow: hidden;
}

.about-commitment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(15%);
}

.about-commitment-content {
    background-color: #111111;
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-commitment-content--full {
    grid-column: 1 / -1;
}

.about-commitment-content blockquote {
    font-family: var(--ag-serif);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-style: italic;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 36px;
    padding-left: 28px;
    border-left: 3px solid var(--ag-light);
}

.about-commitment-content p {
    font-family: var(--ag-sans);
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ---- STRATEGY ---- */
.about-strategy {
    position: relative;
    height: 480px;
    overflow: hidden;
    background-color: var(--ag-black);
}

.about-strategy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    opacity: 0.45;
    filter: grayscale(30%);
}

.about-strategy-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-strategy-text {
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
}

.about-strategy-text h2 {
    font-family: var(--ag-serif);
    font-size: clamp(2.2rem, 4.5vw, 4.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-strategy-text h2 em {
    font-style: italic;
    color: var(--ag-light);
}

.about-strategy-text p {
    font-family: var(--ag-sans);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* ---- CTA ---- */
.about-cta {
    background-color: var(--ag-off-white);
    padding: 120px 40px;
    text-align: center;
}

.about-cta-inner {
    max-width: 760px;
    margin: 0 auto;
}

.about-cta h2 {
    font-family: var(--ag-serif);
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 700;
    color: var(--ag-black);
    line-height: 1.1;
    margin-bottom: 24px;
}

.about-cta h2 em {
    font-style: italic;
    color: var(--ag);
}

.about-cta p {
    font-family: var(--ag-sans);
    font-size: 1.05rem;
    color: var(--ag-gray-dark);
    line-height: 1.75;
    margin-bottom: 48px;
}

/* ---- ANCHOR OFFSET (fixed nav = 70px) ---- */
.about-who,
.about-services,
.about-why,
.about-cta {
    scroll-margin-top: 70px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .about-who-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-why-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .about-commitment-image {
        height: 400px;
    }

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

@media (max-width: 768px) {

    .about-hero-content,
    .about-who,
    .about-services,
    .about-why,
    .about-cta {
        padding-left: 24px;
        padding-right: 24px;
    }

    .about-hero-content {
        padding-bottom: 72px;
    }

    .about-stats {
        padding: 60px 24px;
    }

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

    .about-stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 32px 24px;
    }

    .about-stat-item:last-child {
        border-bottom: none;
    }

    .about-commitment-content {
        padding: 60px 32px;
    }

    .about-fullbleed-text {
        left: 24px;
        right: 24px;
        max-width: 100%;
    }
}

/** Jerry fixing **/
section#about-hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Align content to top */
    min-height: auto;
    /* Prevents empty black space on tablets */
    padding-bottom: 40px;
    /* Standard bottom spacing */
}

.about-hero-content {
    padding-bottom: 0px;
    /* Handled by parent section */
}