/*
Theme Name: Dan Duddy - WE Will
Theme URI: https://danduddy.com
Author: Dan Duddy
Author URI: https://danduddy.com
Description: Custom theme for Dan Duddy - WE Will - Formation-focused design for mentoring, speaking, and podcast.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: we-will
*/

/* ===== DESIGN TOKENS ===== */
:root {
    --burgundy: #800020;
    --burgundy-dark: #5c0018;
    --burgundy-light: #a0283e;
    --burgundy-glow: rgba(128, 0, 32, 0.15);
    --off-white: #faf8f6;
    --warm-white: #f5f2ef;
    --light-gray: #e8e5e1;
    --charcoal: #1c1c1c;
    --charcoal-light: #2a2a2a;
    --text-dark: #1a1a1a;
    --text-muted: #6b6464;
    --white: #ffffff;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-lg:
        0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-card-hover:
        0 16px 48px rgba(128, 0, 32, 0.1), 0 6px 16px rgba(0, 0, 0, 0.06);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --font-heading: "Libre Baskerville", "Georgia", "Times New Roman", serif;
    --font-body:
        "Source Sans 3", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main {
    flex: 1;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: var(--burgundy);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover {
    color: var(--burgundy-dark);
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 850px) {
    .container {
        padding: 0 2.5rem;
    }
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}
h2 {
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    margin-bottom: 1rem;
}
h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: 0.75rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875em 2em;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-align: center;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background-color: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}
.btn-primary:hover {
    background-color: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(128, 0, 32, 0.3);
}
.btn-secondary {
    background-color: transparent;
    color: var(--burgundy);
    border: 2px solid var(--burgundy);
}
.btn-secondary:hover {
    background-color: var(--burgundy);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-light {
    background-color: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
}
.btn-light:hover {
    background-color: var(--off-white);
    color: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}
.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}
.btn:focus-visible {
    outline: 2px solid var(--burgundy);
    outline-offset: 2px;
}
.btn-block {
    width: 100%;
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 248, 246, 0.85);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0.875rem 0;
    transition:
        padding var(--transition-fast),
        box-shadow var(--transition-fast);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
@media (min-width: 850px) {
    .header-inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 2rem;
    }
    .header-inner .site-logo {
        justify-self: start;
    }
    .header-inner nav {
        justify-self: center;
    }
    .header-inner .header-cta {
        justify-self: end;
    }
}
.site-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.625rem;
    white-space: nowrap;
}
.site-logo-icon {
    height: calc(1.5rem * 1.2 + 0.8125rem * 1.2);
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform var(--transition);
}
.site-logo:hover .site-logo-icon {
    transform: scale(1.05);
}
.site-logo-text-group {
    display: flex;
    flex-direction: column;
}
.site-logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.site-logo-tagline {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.2;
    letter-spacing: 0.08em;
}

/* Nav */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}
.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.25rem 0;
    white-space: nowrap;
}
.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burgundy);
    transition: width var(--transition);
}
.nav-menu a:hover {
    color: var(--burgundy);
}
.nav-menu a:hover::after {
    width: 100%;
}
.nav-menu .current-menu-item a {
    color: var(--burgundy);
}
.nav-menu .current-menu-item a::after {
    transform: scaleX(1);
}
.header-cta .btn {
    font-size: 0.75rem;
    padding: 0.65em 1.4em;
    min-width: 186.41px;
    white-space: nowrap;
}

/* Mobile menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    width: 32px;
    height: 32px;
}
.menu-toggle:focus-visible {
    outline: 2px solid var(--burgundy);
    outline-offset: 2px;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    margin: 5px auto;
    transition: var(--transition);
    border-radius: 1px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(28, 28, 28, 0.15) 0%,
        rgba(28, 28, 28, 0.05) 40%,
        rgba(28, 28, 28, 0.25) 100%
    );
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 9vw, 6rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}
.hero-title-we {
    position: relative;
    display: inline-block;
}
.hero-title-underline {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.4rem;
    width: 100%;
    height: auto;
    max-height: 14px;
    object-fit: fill;
    object-position: left center;
    mix-blend-mode: screen;
}

/* ===== SECTIONS ===== */
.section {
    padding: 3rem 0;
}
.section-alt {
    background-color: var(--white);
}
.section-burgundy {
    background: linear-gradient(
        135deg,
        var(--burgundy-dark) 0%,
        var(--burgundy) 50%,
        var(--burgundy-light) 100%
    );
    color: var(--white);
}
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title h2 {
    color: inherit;
}
.section-title--sub h2,
.section-title--sub h3 {
    font-size: clamp(1.953125rem, 3.90625vw, 2.34375rem);
}
.section-title .accent-line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--burgundy-light));
    margin: 1.25rem auto 0;
    border-radius: 2px;
}

/* ===== WHY CONTENT ===== */
.why-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.why-content p {
    margin-bottom: 1.75rem;
    line-height: 1.9;
    overflow-wrap: break-word;
    color: var(--text-dark);
}
.why-content p:last-child {
    margin-bottom: 0;
}
.why-content strong {
    color: var(--burgundy);
    font-weight: 700;
}

/* ===== THREE COLUMNS / CARDS ===== */
.three-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 850px) {
    .three-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.25rem;
    }
}
.column-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        border-color var(--transition-fast);
    position: relative;
}
.column-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--burgundy-light));
    border-radius: 0 0 2px 2px;
    opacity: 0;
    transition:
        opacity var(--transition),
        width var(--transition);
}
.column-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(128, 0, 32, 0.08);
}
.column-card:hover::before {
    opacity: 1;
    width: 60px;
}
.column-card h3 {
    margin-bottom: 1rem;
    color: var(--charcoal);
}
.column-card p {
    margin-bottom: 1.75rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.column-card .btn {
    font-size: 0.8125rem;
    padding: 0.75em 1.75em;
    letter-spacing: 0.04em;
}

/* ===== WHO LIST ===== */
.who-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    list-style: none;
    margin-bottom: 3rem;
}
.who-list li {
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 1.0625rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
}

/* ===== CTA BLOCK ===== */
.cta-block {
    text-align: center;
    padding: 4.5rem 2rem;
}
.cta-block h2 {
    margin-bottom: 1.5rem;
}
.cta-block--sub h2 {
    font-size: clamp(1.953125rem, 3.90625vw, 2.34375rem);
}
.cta-block p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: break-word;
    line-height: 1.8;
    opacity: 0.92;
}
.cta-block .btn {
    margin: 0 0.5rem 0.5rem;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 2.5rem 0;
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.footer-copy {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0;
    margin: 1.25rem 0 0 0;
}
.footer-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}
.footer-nav a:hover {
    color: var(--white);
}
.footer-social {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}
.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    transition:
        color var(--transition-fast),
        transform var(--transition-fast);
}
.footer-social a:hover {
    color: var(--white);
    transform: translateY(-2px);
}
.footer-social a:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}
.footer-icon {
    display: block;
    height: 22px;
    width: 22px;
    object-fit: contain;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    background-color: var(--off-white);
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.page-hero .container {
    position: relative;
    z-index: 1;
}
.page-hero-charcoal {
    background-color: var(--charcoal);
    color: var(--white);
}
.page-hero-charcoal h1 {
    color: var(--white);
}
.page-hero-contact {
    background-color: var(--charcoal);
    color: var(--white);
}
.page-hero-contact h1 {
    color: var(--white);
}
.page-hero h1 {
    margin-bottom: 0.5rem;
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 0.75rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-family: var(--font-body);
    font-size: 1rem;
}
.required {
    color: var(--burgundy);
    font-weight: 700;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    background-color: var(--white);
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px var(--burgundy-glow);
}
.form-group textarea {
    min-height: 150px;
    resize: vertical;
}
.contact-form {
    max-width: 680px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
    padding: 2.5rem 2rem;
}
.contact-form:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.contact-form.contact-form-intake {
    max-width: 680px;
    margin: 75px auto 40px;
    background-color: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}
.contact-form.contact-form-intake:hover {
    box-shadow: none;
    transform: none;
}
.contact-form-intake form {
    padding-left: 0;
}

/* ===== WPFORMS OVERRIDES (match preview/contact.html) ===== */
.contact-form .wpforms-container {
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
    max-width: 100% !important;
}
.contact-form .wpforms-container .wpforms-form {
    padding: 0 !important;
    margin: 0 !important;
}
.contact-form .wpforms-field {
    margin-bottom: 0.75rem !important;
    padding: 0 !important;
}
.contact-form .wpforms-field-label {
    display: block !important;
    margin-bottom: 0.5rem !important;
    font-weight: 500 !important;
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    color: var(--text-dark) !important;
}
.contact-form .wpforms-required-label {
    color: var(--burgundy) !important;
    font-weight: 700 !important;
}
.contact-form .wpforms-field input[type="text"],
.contact-form .wpforms-field input[type="email"],
.contact-form .wpforms-field input[type="tel"],
.contact-form .wpforms-field input[type="url"],
.contact-form .wpforms-field input[type="number"],
.contact-form .wpforms-field select,
.contact-form .wpforms-field textarea {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.75rem 1rem !important;
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    border: 1px solid var(--light-gray) !important;
    border-radius: var(--radius-sm) !important;
    background-color: var(--white) !important;
    color: var(--text-dark) !important;
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
    -webkit-appearance: none;
    appearance: none;
}
.contact-form .wpforms-field input:focus,
.contact-form .wpforms-field select:focus,
.contact-form .wpforms-field textarea:focus {
    outline: none !important;
    border-color: var(--burgundy) !important;
    box-shadow: 0 0 0 3px var(--burgundy-glow) !important;
}
.contact-form .wpforms-field select {
    height: auto !important;
    line-height: 1.4 !important;
    overflow: visible !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    padding-right: 2.5rem !important;
}
.contact-form .wpforms-field textarea {
    min-height: 150px !important;
    resize: vertical;
}
/* Phone field formatting */
.contact-form .wpforms-field-phone input,
.contact-form .wpforms-field input[type="tel"],
.contact-form input[data-phone-fmt] {
    font-variant-numeric: tabular-nums !important;
    letter-spacing: 0.04em !important;
}
.contact-form input[data-phone-fmt]::placeholder {
    font-size: 0.8em !important;
    color: #bbb !important;
    letter-spacing: 0.08em !important;
}
.phone-error {
    color: #ff0000;
    font-family: var(--font-body);
    font-size: 0.85rem;
    margin-top: 0.35rem;
}
.field-error {
    color: #ff0000;
    font-family: var(--font-body);
    font-size: 0.85rem;
    margin-top: 0.35rem;
}
.form-group--error input,
.form-group--error textarea,
.form-group--error select {
    border-color: #ff0000 !important;
}
.form-success {
    text-align: center;
    padding: 3rem 1.5rem;
}
.form-success-inner svg {
    margin: 0 auto 1rem;
    display: block;
}
.form-success-inner h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--burgundy);
    margin-bottom: 0.75rem;
}
.form-success-inner p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}
.contact-form .wpforms-field-sublabel {
    color: var(--text-muted) !important;
    font-size: 0.875rem !important;
}
.contact-form .wpforms-field-description {
    color: var(--text-muted) !important;
    font-size: 0.875rem !important;
    margin-top: 0.25rem;
}
.contact-form .wpforms-submit-container {
    padding: 0 !important;
    margin-top: 0.5rem !important;
}
.contact-form .wpforms-submit-container button[type="submit"],
.contact-form .wpforms-submit-container .wpforms-submit,
.contact-form div.wpforms-container-full .wpforms-form button[type="submit"],
.contact-form .wpforms-form .wpforms-submit {
    display: inline-block !important;
    width: 100% !important;
    padding: 0.85em 2em !important;
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    letter-spacing: 0.06em !important;
    text-align: center !important;
    text-transform: uppercase !important;
    background-color: var(--burgundy) !important;
    color: var(--white) !important;
    border: 2px solid var(--burgundy) !important;
    border-radius: var(--radius-sm) !important;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.contact-form .wpforms-submit-container button[type="submit"]:hover,
.contact-form .wpforms-submit-container .wpforms-submit:hover,
.contact-form div.wpforms-container-full .wpforms-form button[type="submit"]:hover,
.contact-form .wpforms-form .wpforms-submit:hover {
    background-color: var(--burgundy-dark) !important;
    border-color: var(--burgundy-dark) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(128, 0, 32, 0.3) !important;
}
.contact-form .wpforms-field-error {
    color: #ff0000 !important;
    font-size: 0.875rem !important;
    margin-top: 0.25rem;
}
.contact-form .wpforms-field input.wpforms-error,
.contact-form .wpforms-field select.wpforms-error,
.contact-form .wpforms-field textarea.wpforms-error {
    border-color: #ff0000 !important;
}

/* ===== ABOUT CARD / HEADSHOT ===== */
.about-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
    padding: 2.5rem 2rem;
    transition:
        box-shadow var(--transition-fast),
        transform var(--transition-fast);
}
.about-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.about-card h2 {
    text-align: center;
}
/* Headshot container */
.headshot-container {
    background-color: var(--off-white);
    border-radius: var(--radius-lg);
    margin: 1.5rem auto;
    max-width: 100%;
    overflow: hidden;
    border: 0.09rem solid #f1f1f1;
}
.headshot-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: calc(var(--radius-lg) - 4px);
    object-fit: cover;
}

.about-story {
    font-size: 1.125rem;
    line-height: 1.8;
}
.about-story p {
    margin-bottom: 1rem;
    text-align: center;
}
/* Override centering when Dan's Story card is inside the testify row */
.testify-row .about-story p {
    text-align: left;
}
.beliefs-list {
    list-style: none;
    font-size: 1.125rem;
}
.beliefs-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.beliefs-list li::before {
    content: "\2014";
    color: var(--burgundy);
    font-weight: 700;
}

/* ===== TESTIFY — UNIFIED ROW (Dan's Story + Testimonial Cards) ===== */

/* The outer row: Dan's Story card pinned left, testimonial stage fills right */
.testify-row {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 2rem;
    align-items: stretch;
}

/* Testimonial stage: cards + nav all in one column */
.testify-stage {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-height: 0;
}

/* Cards tray — default 2-col × 3-row, grows to fill stage height */
.testify-cards-tray {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.25rem;
    position: relative;
    flex: 1;
    min-height: 0;
}

/* Individual testimonial card */
.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem 1.5rem 1.25rem;
    transition:
        box-shadow var(--transition-fast),
        transform var(--transition-fast),
        opacity 0.3s ease;
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.testimonial-card.t-hidden {
    display: none;
}

.testimonial-quote-icon {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1;
    color: var(--burgundy);
    opacity: 0.2;
    margin-bottom: 0.4rem;
    user-select: none;
}
.testimonial-snippet {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.875rem;
    flex: 1;
}
.testimonial-attribution {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}
.testimonial-role {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.875rem;
    line-height: 1.4;
}
.testimonial-read-more {
    background: none;
    border: none;
    color: var(--burgundy);
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
    transition: color var(--transition-fast);
    align-self: flex-start;
}
.testimonial-read-more:hover {
    color: var(--burgundy-dark);
}
.testimonial-read-more:focus-visible,
.audio-play-btn:focus-visible,
.audio-download-btn:focus-visible,
.testify-nav-btn:focus-visible,
.testify-nav-dot:focus-visible {
    outline: 2px solid var(--burgundy);
    outline-offset: 2px;
}
.testimonial-full {
    display: none;
}

/* ===== PAGINATION NAV ===== */
.testify-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.25rem 0;
    margin-top: auto;
    grid-column: 1 / -1;
}
.testify-nav-btn {
    background: var(--white);
    border: 1.5px solid var(--burgundy);
    color: var(--burgundy);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background var(--transition-fast),
        color var(--transition-fast);
    flex-shrink: 0;
}
.testify-nav-btn:hover:not(:disabled) {
    background: var(--burgundy);
    color: var(--white);
}
.testify-nav-btn:disabled {
    opacity: 0.3;
    cursor: default;
}
.testify-nav-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.testify-nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--light-gray);
    border: none;
    cursor: pointer;
    padding: 0;
    transition:
        background var(--transition-fast),
        transform var(--transition-fast);
}
.testify-nav-dot.active {
    background: var(--burgundy);
    transform: scale(1.35);
}
.testify-nav-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    min-width: 60px;
    text-align: center;
}

/* ===== RESPONSIVE ===== */

/* Wide desktop: keep 2-col cards, wider story card */
@media (min-width: 1100px) {
    .testify-row {
        grid-template-columns: 380px 1fr;
    }
    .testify-cards-tray {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet / single-column: stacked layout, 1 card at a time */
@media (max-width: 849px) {
    .testify-section {
        overflow-x: hidden;
    }
    .testify-row {
        grid-template-columns: 1fr;
    }
    .testify-row-equal {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .testify-row-equal > .about-card.about-story:first-child,
    .wewill-audio-card,
    .wewill-image-card {
        grid-column: 1;
        grid-row: auto;
    }
    .testify-cards-tray {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        flex: none;
    }
    /* Larger, thumb-friendly nav buttons */
    .testify-nav {
        gap: 0.75rem;
        padding: 0.5rem 0;
    }
    .testify-nav-btn {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
    .testify-nav-dots {
        gap: 0.625rem;
    }
    .testify-nav-dot {
        width: 10px;
        height: 10px;
    }
    /* Larger, fewer-lines snippet text for thumb-scrolling */
    .testimonial-card {
        padding: 2rem 1.75rem 1.75rem;
    }
    .testimonial-snippet {
        font-size: 1.0625rem;
        line-height: 1.75;
        -webkit-line-clamp: 5;
    }
    .testimonial-quote-icon {
        font-size: 2.75rem;
    }
    .testimonial-attribution {
        font-size: 1rem;
    }
    .testimonial-role {
        font-size: 0.8125rem;
    }
    .testimonial-read-more {
        font-size: 0.875rem;
    }
}

/* ===== TESTIMONIAL MODAL ===== */
body.modal-open {
    overflow: hidden;
}
.testimonial-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity var(--transition),
        visibility var(--transition);
}
.testimonial-modal.active {
    opacity: 1;
    visibility: visible;
}
.testimonial-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}
.testimonial-modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 700px;
    width: calc(100% - 2rem);
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 1;
    transform: translateY(20px);
    transition: transform var(--transition);
}
.testimonial-modal.active .testimonial-modal-content {
    transform: translateY(0);
}
.testimonial-modal-close {
    position: sticky;
    top: 0;
    float: right;
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background var(--transition-fast),
        color var(--transition-fast);
    z-index: 2;
    margin-left: auto;
    margin-bottom: -0.5rem;
}
.testimonial-modal-close:hover {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}
.testimonial-modal-body {
    clear: both;
}
.testimonial-modal-body .modal-quote-icon {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    color: var(--burgundy);
    opacity: 0.15;
    margin-bottom: 0.5rem;
}
.testimonial-modal-body .modal-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 2rem;
}
.testimonial-modal-body .modal-text p {
    margin-bottom: 1.25rem;
}
.testimonial-modal-body .modal-text p:last-child {
    margin-bottom: 0;
}
.testimonial-modal-body .modal-attribution {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
}
.testimonial-modal-body .modal-role {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}
.testimonial-modal-body .modal-context {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--text-muted);
    margin-top: 0.5rem;
}
@media (max-width: 480px) {
    .testimonial-modal-content {
        padding: 2rem 1.25rem;
        max-height: calc(100vh - 2rem);
        width: calc(100% - 1rem);
        border-radius: var(--radius-md);
    }
    .testimonial-modal-close {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }
    .testimonial-modal-body .modal-text {
        font-size: 1rem;
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== OFFERINGS PAGE ===== */
.audience-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    list-style: none;
    margin-bottom: 2rem;
}
.audience-list li {
    padding: 0.5rem 1rem;
    background-color: var(--off-white);
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    border: 1px solid var(--light-gray);
    color: var(--text-dark);
    cursor: default;
}
.retreats-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    list-style: none;
    margin-bottom: 2rem;
}
.retreats-list li {
    padding: 0.5rem 1rem;
    background-color: #ffffff;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    border: 1px solid var(--light-gray);
    color: var(--text-dark);
    cursor: default;
}
.btn-retreats {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #ffffff;
    color: var(--text-dark);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}
.btn-retreats:hover {
    background-color: var(--off-white);
    color: var(--burgundy);
}
.btn-more {
    background-color: var(--burgundy);
    color: var(--white);
    font-size: 1.125rem;
    gap: 0.5rem;
    border: none;
    padding: 0.93em 1.87em;
    text-transform: none;
    letter-spacing: normal;
}
.btn-more:hover {
    background-color: var(--burgundy-dark);
    color: var(--white);
    transform: translateY(-2px);
}
.more-chevron {
    display: inline-block;
    transition: transform var(--transition);
    transform: rotate(-90deg);
}
.btn-more[aria-expanded="true"] .more-chevron {
    transform: rotate(0deg);
}
.serve-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}
.serve-dropdown.active {
    max-height: 3000px;
}
.serve-dropdown-inner {
    max-width: 680px;
    margin: 1rem auto 0;
}
.serve-dropdown-inner .section-title--sub h2,
.serve-dropdown-inner .section-title--sub h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
}
.serve-dropdown-inner .cta-block {
    padding: 2rem 0;
}
.serve-dropdown-inner .section-title.section-title--sub {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}
.offering-details {
    max-width: 680px;
    margin: 1rem auto 0;
}
.offering-details .section-title--sub h2,
.offering-details .section-title--sub h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
}
.intake-intro {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}
.offering-details .cta-block {
    padding: 2rem 0;
}
.offering-details .section-title.section-title--sub {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}
.book-talk-text {
    text-align: center;
    padding: 0.75rem 0;
    font-size: 1.125rem;
}

/* ===== INTAKE LIST (condensed mentoring steps) ===== */
.intake-list {
    max-width: 680px;
    margin: 0 auto 2rem;
    padding-left: 0;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-dark);
    list-style-position: inside;
    text-align: center;
}
.intake-list li {
    margin-bottom: 0.5rem;
    padding-left: 0;
}
.intake-list li::marker {
    color: var(--burgundy);
    font-weight: 700;
}

/* ===== OFFERING BLOCKS (centered single-column) ===== */
.offering-block {
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
}
.offering-block h2 {
    margin-bottom: 0.75rem;
}
.offering-block p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.accent-line--left {
    margin: 0 auto 1.25rem;
}
/* --- Offering block inside section-burgundy --- */
.section-burgundy .offering-block p {
    color: rgba(255, 255, 255, 0.85);
}
.section-burgundy .accent-line--left {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), var(--white));
}
.section-burgundy .btn-more {
    background-color: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
}
.section-burgundy .btn-more:hover {
    background-color: var(--off-white);
    color: var(--burgundy-dark);
}
.section-burgundy .audience-list li {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.3);
}
.section-burgundy .section-title h2,
.section-burgundy .section-title--sub h2,
.section-burgundy .section-title--sub h3 {
    color: var(--white);
}
.section-burgundy .accent-line {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), var(--white));
}

/* ===== EQUAL-WIDTH TESTIFY ROW (we-will.html) ===== */
.testify-row-equal {
    grid-template-columns: 40fr 60fr;
    grid-template-rows: auto auto;
    align-items: stretch;
}
.testify-row-equal > .about-card.about-story:first-child {
    grid-column: 1;
    grid-row: 1 / -1;
}
.wewill-image-card {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    min-height: 0;
}
.wewill-audio-card {
    grid-column: 2;
    grid-row: 2;
}
.wewill-audio-card .audio-player-section {
    width: 100%;
}
.wewill-image-card .headshot-container {
    height: auto;
    margin: 0;
    aspect-ratio: 1719 / 1670;
    max-height: 80vh;
}
.wewill-image-card .headshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Prevent heavy image cropping in the squeeze zone */
@media (min-width: 850px) and (max-width: 1100px) {
    .testify-row-equal {
        grid-template-columns: 40fr 60fr;
    }
    .wewill-image-card .headshot-img {
        object-position: center 20%;
    }
}

/* ===== AUDIO PLAYER (we-will.html) ===== */
.audio-player-section {
    text-align: center;
    padding: 1.5rem 0;
}
.custom-audio {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 420px;
    margin: 1rem auto 0;
    padding: 0.5rem 0.75rem;
    background: var(--off-white);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}
.custom-audio audio {
    display: none;
}
.audio-play-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: var(--burgundy);
    color: var(--white);
    cursor: pointer;
    transition: background var(--transition-fast);
}
.audio-play-btn:hover {
    background: var(--burgundy-dark);
}
.audio-play-btn svg {
    width: 18px;
    height: 18px;
}
.audio-progress-wrap {
    flex: 1;
    height: 6px;
    background: var(--light-gray);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}
.audio-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--burgundy);
    border-radius: 3px;
    transition: width 0.1s linear;
}
.audio-time {
    flex-shrink: 0;
    font-size: 0.8125rem;
    font-family: var(--font-body);
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.audio-download-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--text-muted);
    transition: color var(--transition-fast), background var(--transition-fast);
}
.audio-download-btn:hover {
    color: var(--burgundy);
    background: var(--light-gray);
}
.audio-download-btn svg {
    width: 16px;
    height: 16px;
}
@media (max-width: 480px) {
    .custom-audio {
        max-width: 100%;
        gap: 0.5rem;
        padding: 0.4rem 0.6rem;
    }
    .audio-play-btn {
        width: 36px;
        height: 36px;
    }
    .audio-play-btn svg {
        width: 15px;
        height: 15px;
    }
    .audio-time {
        font-size: 0.75rem;
    }
}

/* ===== INDEX-SPECIFIC ENHANCEMENTS (front page) ===== */

/* Hero refinements */
.front-page .hero {
    min-height: 50vh;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center bottom,
        rgba(128, 0, 32, 0.12) 0%,
        transparent 70%
    );
    z-index: 0;
    pointer-events: none;
}
.hero-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.4em 1.2em;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.08);
}

/* Why section — large quote styling */
.why-lead {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-style: italic;
    color: var(--burgundy);
    line-height: 1.6;
    margin-bottom: 2.25rem;
    position: relative;
}
.why-lead::before {
    content: "\201C";
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--burgundy);
    opacity: 0.15;
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}
.why-lead-sub {
    font-size: 1.187rem;
}

/* Card icon accent */
.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
}
.card-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

/* Who section — refined tag cloud */
.who-section-subtitle {
    text-align: center;
    font-size: 1.0625rem;
    color: var(--white);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* CTA section polish */
.cta-block-modern {
    position: relative;
}
.cta-block-modern h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
}
.cta-block-modern p {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.8;
}
.cta-divider {
    width: 48px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 auto 2rem;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
/* Staggered card animations */
.column-card.fade-in:nth-child(1) {
    transition-delay: 0s;
}
.column-card.fade-in:nth-child(2) {
    transition-delay: 0.12s;
}
.column-card.fade-in:nth-child(3) {
    transition-delay: 0.24s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 849px) {
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 1.25rem 0 0.5rem;
        gap: 0.25rem;
    }
    .nav-menu.active {
        display: flex;
        align-items: center;
    }
    .nav-menu a {
        padding: 0.5rem 0;
    }
    .header-cta {
        display: none;
    }
    .site-header {
        padding: 0.5rem 0;
    }
    .header-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
    }
    .header-inner nav {
        width: 100%;
        flex-basis: 100%;
        order: 3;
    }
    .hero {
        min-height: 55vh;
    }
    .front-page .hero {
        min-height: 45vh;
    }
    .section {
        padding: 3rem 0;
    }
    .page-hero {
        padding: 2.5rem 0 2rem;
    }
    .cta-block {
        padding: 2.5rem 1.5rem;
    }
    .cta-block .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    .column-card {
        padding: 2rem 1.5rem;
    }
    .section-title {
        margin-bottom: 2rem;
    }
    .contact-form-intake {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .footer-copy {
        text-align: center;
        font-size: 0.9375rem;
        line-height: 1.5;
        padding: 0;
    }
    .who-list li {
        font-size: 0.9375rem;
    }
    .testify-row-equal {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .testify-row-equal > .about-card.about-story:first-child,
    .wewill-audio-card,
    .wewill-image-card {
        grid-column: 1;
        grid-row: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    .page-hero {
        padding: 2.5rem 0;
    }
    .hero {
        min-height: 50vh;
    }
    .front-page .hero {
        min-height: 30vh;
    }
    .hero-title {
        font-size: clamp(2.75rem, 11vw, 4rem);
    }
    .hero-badge {
        font-size: 0.6875rem;
        margin-bottom: 1rem;
    }
    .why-lead-sub {
        font-size: 1.06rem;
    }
    .why-lead {
        font-size: 1.5rem;
    }
    .why-lead::before {
        font-size: 3rem;
        top: -1.25rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    .site-header {
        padding: 0.375rem 0;
    }
    .header-inner {
        gap: 0.25rem;
    }
    .site-logo-text {
        font-size: 1.5rem;
    }
    .site-logo-tagline {
        font-size: 0.75rem;
    }
    .site-logo-icon {
        height: calc(1.5rem * 1.2 + 0.875rem * 1.2);
    }
    .cta-block {
        padding: 2rem 1rem;
    }
    .cta-block h2 {
        font-size: 1.5rem;
    }
    .cta-block p {
        font-size: 1rem;
    }
    .column-card {
        padding: 1.75rem 1.25rem;
    }
    .column-card h3 {
        font-size: 1.25rem;
    }
    .column-card p {
        font-size: 0.9375rem;
    }
    .section-title--sub h2,
    .section-title--sub h3 {
        font-size: 1.375rem;
    }
    .beliefs-list {
        font-size: 1rem;
    }
    .audience-list li,
    .retreats-list li {
        font-size: 1rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.625rem 0.875rem;
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    .site-header {
        padding: 0.25rem 0;
    }
    .site-logo-text {
        font-size: 1.375rem;
    }
    .site-logo-tagline {
        font-size: 0.6875rem;
    }
    .site-logo-icon {
        height: calc(1.375rem * 1.2 + 0.8125rem * 1.2);
    }
}
