:root {
    --ae-navy: #304B64;
    --ae-green: #426358;
    --ae-coral: #F3755D;
    --ae-lavender: #BCA1E2;
    --ae-ink: #2B2F33;
    --ae-cream: #F6F6F2;
    --ae-slate: #7C8FA6;
    --ae-pale-lavender: #E0D6F4;
    --ae-pale-gray: #E5E7EB;
    --ae-white: #FFFFFF;
    --ae-max: 1540px;
    --ae-radius-xl: 2.5rem;
    --ae-radius-xxl: 3rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ae-cream);
    color: var(--ae-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

body.admin-bar .site-header {
    top: 32px;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.skip-link {
    position: absolute;
    left: -999px;
    top: 1rem;
    z-index: 999;
    background: var(--ae-white);
    color: var(--ae-navy);
    padding: 0.75rem 1rem;
    border-radius: 999px;
    font-weight: 900;
}

.skip-link:focus {
    left: 1rem;
}

/* Header */

/* Header */

.site-header {
    position: absolute;
    inset-inline: 0;
    top: 0;
    z-index: 20;
    background: transparent;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1.25rem 2rem;
}

.site-logo,
.site-branding {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    flex: 0 0 auto;
}

.site-logo .custom-logo-link,
.site-branding .custom-logo-link,
.site-header .custom-logo-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
}

.site-logo img,
.site-branding img,
.site-header .custom-logo-link img {
    display: block;
    max-height: 64px;
    width: auto;
    margin: 0;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    margin-left: auto;
}

.primary-menu-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 950;
    text-underline-offset: 10px;
}

.primary-nav a:hover,
.primary-nav a:focus {
    color: var(--ae-white);
    text-decoration: underline;
}

.menu-toggle {
    display: none;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ae-navy);
    padding: 0.7rem 1rem;
    font-weight: 950;
    cursor: pointer;
}

/* Hero */

.hero-section {
    position: relative;
    padding: 7rem 1.5rem 5.5rem;
    background: var(--ae-navy);
}

.hero-shapes {
    pointer-events: none;
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    display: block;
    border-radius: 9999px;
}

.shape-green {
    right: -9rem;
    top: -8rem;
    width: 31rem;
    height: 31rem;
    background: var(--ae-green);
}

.shape-coral {
    right: -6rem;
    bottom: -10rem;
    width: 25rem;
    height: 25rem;
    background: var(--ae-coral);
}

.shape-lavender {
    left: -10rem;
    top: 8rem;
    width: 25rem;
    height: 25rem;
    background: var(--ae-lavender);
    opacity: 0.9;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    align-items: center;
    gap: 3.5rem;
    max-width: var(--ae-max);
    margin: 0 auto;
}

.hero-section h1 {
    max-width: 64rem;
    margin: 0;
    color: var(--ae-white);
    font-size: clamp(4.75rem, 6.8vw, 7.25rem);
    line-height: 0.9;
    letter-spacing: -0.015em;
    font-weight: 950;
}

.hero-section h1 span {
    text-decoration: underline;
    text-decoration-color: var(--ae-coral);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.12em;
}

.hero-card-wrap {
    position: relative;
    padding-bottom: 0;
}

.hero-card {
    max-width: 42rem;
    margin-left: auto;
    border-radius: var(--ae-radius-xl);
    background: var(--ae-white);
    padding: 2.5rem;
    box-shadow: 0 25px 80px rgba(16, 31, 45, 0.28);
}

.hero-card p {
    margin: 0;
    color: var(--ae-navy);
    font-size: clamp(1.5rem, 2vw, 1.9rem);
    line-height: 1.16;
    font-weight: 950;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    line-height: 1;
    font-weight: 950;
    transition: transform 180ms ease, opacity 180ms ease;
}

.button:hover,
.button:focus {
    transform: translateY(-2px);
}

.button-coral {
    margin-top: 2rem;
    background: var(--ae-coral);
    color: var(--ae-white);
}

.button-light {
    margin-top: 2rem;
    background: var(--ae-white);
    color: var(--ae-navy);
}

/* Work */

.work-section {
    padding: 5rem 1.5rem 6rem;
}

.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.work-section .section-heading-row {
    justify-content: center;
    text-align: center;
}

.work-section .section-heading-row h2 {
    width: 100%;
}

.work-section .section-heading-row .button {
    display: none;
}

.section-heading-row h2,
.contact-panel h2,
.entry-card h1 {
    margin: 0;
    color: var(--ae-navy);
    font-size: clamp(3.75rem, 7vw, 8rem);
    line-height: 0.9;
    letter-spacing: -0.015em;
    font-weight: 950;
}

.work-list {
    display: grid;
    gap: 2rem;
}

.work-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: var(--ae-radius-xl);
    background: var(--ae-white);
    box-shadow: 0 4px 22px rgba(48, 75, 100, 0.08);
}

.work-card-reverse .work-poster {
    order: 2;
}

.work-poster {
    position: relative;
    min-height: 280px;
    overflow: hidden;
}

.work-poster-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    background: var(--ae-cream);
}

.work-poster:has(.work-poster-image) {
    display: block;
}

.poster-coral {
    background: var(--ae-coral);
}

.poster-green {
    background: var(--ae-green);
}

.poster-lavender {
    background: var(--ae-lavender);
}

.poster-circle,
.poster-number,
.poster-line {
    position: absolute;
    display: block;
}

.poster-circle {
    border-radius: 9999px;
}

.poster-circle-light {
    left: -4rem;
    top: -4rem;
    width: 13rem;
    height: 13rem;
    background: rgba(255, 255, 255, 0.25);
}

.poster-circle-navy {
    right: -2rem;
    bottom: -4rem;
    width: 18rem;
    height: 18rem;
    background: var(--ae-navy);
}

.poster-number {
    left: 2rem;
    top: 2rem;
    border-radius: 999px;
    background: var(--ae-white);
    color: var(--ae-navy);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 950;
}

.poster-line {
    left: 2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    height: 1.5rem;
}

.poster-line-one {
    bottom: 5.5rem;
    width: 10rem;
}

.poster-line-two {
    bottom: 3.5rem;
    width: min(16rem, calc(100% - 4rem));
    background: rgba(255, 255, 255, 0.45);
}

.work-content {
    display: flex;
    min-height: 280px;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.tag-list span {
    border-radius: 999px;
    background: var(--ae-pale-gray);
    color: var(--ae-navy);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 950;
}

.work-content h3 {
    margin: 0;
    color: var(--ae-navy);
    font-size: clamp(2.5rem, 4.2vw, 4rem);
    line-height: 1;
    letter-spacing: -0.015rem;
    font-weight: 950;
}

.work-content p,
.contact-panel p {
    max-width: 42rem;
    margin: 1.5rem 0 0;
    color: var(--ae-ink);
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 800;
}

.text-link {
    margin-top: 2rem;
    color: var(--ae-coral);
    font-size: 1.125rem;
    font-weight: 950;
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
}

/* Contact */

.contact-section {
    padding: 0 1.5rem 6rem;
}

.contact-panel {
    max-width: var(--ae-max);
    margin: 0 auto;
    border-radius: var(--ae-radius-xxl);
    background: var(--ae-green);
    color: var(--ae-white);
    padding: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 3rem;
}

.contact-panel h2 {
    color: var(--ae-white);
}

.contact-panel p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.5rem;
    line-height: 1.25;
    font-weight: 950;
}

/* Footer */

.site-footer {
    background: #241f2d;
    color: var(--ae-white);
    padding: 3.5rem 1.5rem 3.5rem;
}

.site-footer-inner,
.site-footer-inner.wide-container {
    max-width: var(--ae-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.75rem;
    text-align: center;
}

.footer-logo,
.footer-logo .site-logo,
.footer-logo .site-branding,
.footer-logo .custom-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.footer-logo .custom-logo-link img,
.footer-logo .site-logo img,
.footer-logo .site-branding img {
    display: block;
    max-height: 64px;
    width: auto;
    margin: 0;
}

.footer-nav,
.footer-menu-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu-list li {
    display: flex;
    align-items: center;
}

.footer-menu-list li:not(:last-child)::after {
    content: "/";
    margin: 0 1.25rem;
    color: var(--ae-coral);
    font-weight: 950;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1rem, 1.8vw, 1.45rem);
    font-weight: 950;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-nav a:hover,
.footer-nav a:focus {
    color: var(--ae-coral);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.86);
}

.footer-bottom a:hover,
.footer-bottom a:focus {
    color: var(--ae-coral);
}

.footer-separator {
    color: var(--ae-coral);
    font-weight: 950;
}

/* Pages */

.page-shell {
    padding: 8rem 1.5rem 6rem;
    background: var(--ae-cream);
}

.content-container {
    max-width: 980px;
    margin: 0 auto;
}

.entry-card {
    border-radius: var(--ae-radius-xl);
    background: var(--ae-white);
    padding: clamp(2rem, 5vw, 4rem);
    box-shadow: 0 4px 22px rgba(48, 75, 100, 0.08);
}

.entry-content {
    margin-top: 2rem;
    font-size: 1.125rem;
    line-height: 1.75;
}

.entry-content a {
    color: var(--ae-coral);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Responsive */

@media (max-width: 1200px) {
    .hero-section h1 {
        font-size: clamp(4.5rem, 7.4vw, 6.4rem);
    }
}

@media (max-width: 1050px) {
    .hero-inner,
    .work-card,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        margin-left: 0;
    }

    .work-card-reverse .work-poster {
        order: 0;
    }

    .desktop-only {
        display: none;
    }
}

@media (max-width: 760px) {
    body.admin-bar .site-header {
        top: 46px;
    }

    .site-header-inner {
        padding: 1rem 1.25rem;
        gap: 1rem;
    }

    .site-header .site-logo img,
	.site-header .site-branding img,
	.site-header .custom-logo-link img {
		max-height: 52px;
	}

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .primary-nav {
        display: none;
        position: absolute;
        top: calc(100% + 0.25rem);
        right: 1rem;
        left: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        border-radius: 1.5rem;
        background: rgba(48, 75, 100, 0.98);
        padding: 1.25rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
        margin-left: 0;
    }

   .primary-nav.is-open,
   .primary-nav.is-open .primary-menu-list,
    #site-navigation.is-open,
    #site-navigation.is-open .primary-menu-list {
        display: flex;
    }

    .primary-menu-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-section {
        padding-top: 7rem;
    }

    .hero-section h1 {
        font-size: clamp(3.9rem, 16vw, 5.5rem);
        line-height: 0.92;
    }

    .hero-card,
    .work-content,
    .contact-panel {
        padding: 2rem;
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
    }

   .site-footer {
    padding: 3.5rem 1.25rem 3rem;
	}

	.site-footer-inner,
	.footer-nav,
	.footer-menu-list {
		align-items: center;
		flex-direction: column;
	}

	.footer-logo .custom-logo-link img,
	.footer-logo .site-logo img,
	.footer-logo .site-branding img {
		max-height: 52px;
	}

	.footer-menu-list {
		gap: 1rem;
	}

	.footer-menu-list li:not(:last-child)::after {
		display: none;
	}

	.footer-nav a {
		font-size: 1rem;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 0.4rem;
	}

	.footer-separator {
    display: none;
}
}

.contact-page {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 120px 0 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ae-navy);
    color: var(--ae-cream);
}

.contact-page::before,
.contact-page::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.contact-page::before {
    width: 520px;
    height: 520px;
    right: -140px;
    top: -170px;
    background: var(--ae-green);
    opacity: 0.72;
}

.contact-page::after {
    width: 310px;
    height: 310px;
    left: -120px;
    bottom: -120px;
    background: var(--ae-lavender);
    opacity: 0.42;
}

.contact-form-wrap {
    position: relative;
    z-index: 1;
    width: min(100% - 40px, 720px);
    border-radius: var(--ae-radius-xl);
    background: var(--ae-cream);
    color: var(--ae-ink);
    border: 1px solid rgba(246, 246, 242, 0.28);
    overflow: hidden;
}

.contact-form-wrap::before {
    content: "";
    position: absolute;
    right: -46px;
    top: -46px;
    width: 130px;
    height: 130px;
    border-radius: 999px;
    background: var(--ae-coral);
    opacity: 0.9;
}

.contact-form {
    position: relative;
    z-index: 1;
    padding: clamp(30px, 5vw, 48px);
    display: grid;
    gap: 26px;
}

.form-step {
    display: none;
    gap: 22px;
}

.form-step.is-active {
    display: grid;
}

.step-kicker {
    margin: 0 0 -6px;
    color: var(--ae-coral);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.step-title {
    margin: 0;
    color: var(--ae-navy);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: -0.045em;
    font-weight: 850;
}

.field-grid,
.service-checkbox-grid,
.choice-grid {
    display: grid;
    gap: 14px;
}

.field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.service-checkbox-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-grid-compact {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-full {
    grid-column: 1 / -1;
}

.contact-form label {
    color: var(--ae-navy);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.required {
    color: var(--ae-coral);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 3px solid rgba(48, 75, 100, 0.24);
    border-radius: 0;
    background: transparent;
    padding: 12px 0 14px;
    color: var(--ae-ink);
    font: inherit;
    font-size: 1.02rem;
    font-weight: 650;
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--ae-coral);
}

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

.service-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 72px;
    padding: 18px;
    border: 2px solid rgba(48, 75, 100, 0.22);
    border-radius: 18px;
    color: var(--ae-navy);
    cursor: pointer;
    transition: border-color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.service-option:hover {
    transform: translateY(-1px);
    border-color: rgba(243, 117, 93, 0.65);
}

.service-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.service-check {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border: 3px solid rgba(48, 75, 100, 0.7);
    border-radius: 999px;
    background: transparent;
    box-shadow: inset 0 0 0 5px var(--ae-cream);
}

.service-label {
    color: var(--ae-navy);
    font-size: 0.95rem;
    font-weight: 950;
    letter-spacing: 0.06em;
    line-height: 1.1;
    text-transform: uppercase;
}

.service-option:has(input:checked) {
    background: var(--ae-white);
    border-color: var(--ae-coral);
}

.service-option:has(input:checked) .service-check {
    background: var(--ae-coral);
    border-color: var(--ae-coral);
}

.choice-section {
    display: grid;
    gap: 12px;
}

.choice-section-label {
    display: block;
    margin-bottom: 2px;
}

.choice-option {
    min-height: 86px;
    align-items: center;
}

.choice-grid-compact .choice-option {
    min-height: 112px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 12px;
}

.button-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 6px;
}

.button-primary,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 950;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 150ms ease, background-color 150ms ease;
}

.button-primary {
    border: 0;
    background: var(--ae-coral);
    color: var(--ae-white);
}

.button-secondary {
    border: 2px solid rgba(48, 75, 100, 0.22);
    background: transparent;
    color: var(--ae-navy);
}

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

.button-primary:hover {
    background: #e96750;
}

.progress-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(48, 75, 100, 0.22);
}

.progress-dot.is-active {
    width: 26px;
    background: var(--ae-coral);
}

.status-note {
    min-height: 20px;
    margin: 0;
    color: rgba(43, 47, 51, 0.58);
    font-size: 0.88rem;
    font-weight: 650;
}

@media (max-width: 640px) {
    .contact-page {
        padding: 54px 0 42px;
    }

    .contact-form-wrap {
        width: min(100% - 28px, 720px);
    }

    .field-grid,
    .service-checkbox-grid,
    .choice-grid,
    .choice-grid-compact {
        grid-template-columns: 1fr;
    }

    .field {
        grid-column: 1 / -1;
    }

    .button-row {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
    }
}

/* About Page */

.about-hero {
    position: relative;
    overflow: hidden;
    background: var(--ae-navy);
    padding: 9.5rem 1.5rem 6.5rem;
    color: var(--ae-white);
}

.about-hero::before,
.about-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.about-hero::before {
    right: -9rem;
    top: -8rem;
    width: 31rem;
    height: 31rem;
    background: var(--ae-green);
}

.about-hero::after {
    right: 12rem;
    bottom: -12rem;
    width: 26rem;
    height: 26rem;
    background: var(--ae-coral);
    opacity: 0.92;
}

.hero-dot {
    position: absolute;
    left: -10rem;
    top: 11rem;
    width: 25rem;
    height: 25rem;
    border-radius: 999px;
    background: var(--ae-lavender);
    opacity: 0.88;
}

.about-hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--ae-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 4rem;
    align-items: end;
}

.about-hero h1 {
    max-width: 58rem;
    margin: 0;
    color: var(--ae-white);
    font-size: clamp(4.5rem, 7.6vw, 8.6rem);
    line-height: 0.88;
    letter-spacing: -0.015em;
    font-weight: 950;
}

.about-hero h1 span {
    text-decoration: underline;
    text-decoration-color: var(--ae-coral);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.12em;
}

.about-hero .hero-card {
    border-radius: var(--ae-radius-xl);
    background: var(--ae-white);
    color: var(--ae-navy);
    padding: clamp(2rem, 4vw, 3rem);
}

.about-hero .hero-card p {
    margin: 0;
    color: var(--ae-navy);
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    line-height: 1.15;
    font-weight: 950;
}

.about-intro {
    padding: 5rem 1.5rem;
}

.about-intro-inner {
    max-width: var(--ae-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.intro-copy {
    margin: 0;
    color: var(--ae-navy);
    font-size: clamp(1.8rem, 3.2vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.015em;
    font-weight: 950;
}

.intro-image-card,
.services-image-card,
.team-image-card {
    width: 100%;
    border-radius: var(--ae-radius-xl);
    background: var(--ae-white);
    border: 2px dashed rgba(48, 75, 100, 0.18);
    min-height: 260px;
}

.intro-image-card {
    background: linear-gradient(135deg, rgba(188, 161, 226, 0.38), rgba(246, 246, 242, 0.9));
}

.image-card {
    overflow: hidden;
    border: 0;
}

.image-card img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.principles-section {
    padding: 0 1.5rem 5rem;
}

.principles-grid {
    max-width: var(--ae-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.principle-card {
    min-height: 340px;
    border-radius: var(--ae-radius-xl);
    background: var(--ae-white);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.principle-card:nth-child(2) {
    background: var(--ae-green);
    color: var(--ae-white);
}

.principle-card:nth-child(3) {
    background: var(--ae-coral);
    color: var(--ae-white);
}

.card-number {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    background: var(--ae-pale-gray);
    color: var(--ae-navy);
    padding: 0.45rem 0.9rem;
    font-weight: 950;
}

.principle-card:nth-child(2) .card-number,
.principle-card:nth-child(3) .card-number {
    background: rgba(255, 255, 255, 0.18);
    color: var(--ae-white);
}

.principle-card h2 {
    margin: 2rem 0 1rem;
    color: inherit;
    font-size: clamp(2.5rem, 4.3vw, 4.6rem);
    line-height: 0.92;
    letter-spacing: -0.015em;
    font-weight: 950;
}

.principle-card p {
    margin: 0;
    color: rgba(43, 47, 51, 0.72);
    font-size: 1.1rem;
    font-weight: 800;
}

.principle-card:nth-child(2) p,
.principle-card:nth-child(3) p {
    color: rgba(255, 255, 255, 0.84);
}

.services-about {
    padding: 0 1.5rem 5.5rem;
}

.services-panel {
    max-width: var(--ae-max);
    margin: 0 auto;
    border-radius: var(--ae-radius-xxl);
    background: var(--ae-white);
    padding: clamp(2rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: stretch;
}

.services-side {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 2rem;
    align-self: stretch;
    min-height: 100%;
}

.services-panel h2 {
    margin: 0;
    text-align: center;
    color: var(--ae-navy);
    font-size: clamp(3.75rem, 7vw, 7.5rem);
    line-height: 0.9;
    letter-spacing: -0.015em;
    font-weight: 950;
}

.services-image-card {
    min-height: 300px;
    height: 100%;
    background: linear-gradient(135deg, rgba(243, 117, 93, 0.18), rgba(66, 99, 88, 0.24));
}

.service-list {
    display: grid;
    gap: 0;
    border-top: 2px solid rgba(48, 75, 100, 0.15);
}

.service-row {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    padding: 1.35rem 0;
    border-bottom: 2px solid rgba(48, 75, 100, 0.15);
}

.service-row h3 {
    margin: 0;
    color: var(--ae-navy);
    font-size: clamp(1.45rem, 2.3vw, 2.25rem);
    line-height: 1;
    letter-spacing: -0.015em;
    font-weight: 950;
}

.service-row p {
    margin: 0;
    color: rgba(43, 47, 51, 0.72);
    font-size: 1rem;
    font-weight: 750;
}

.team-section {
    padding: 0 1.5rem 6rem;
}

.team-panel {
    max-width: var(--ae-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: 2rem;
    align-items: stretch;
}

.team-copy {
    border-radius: var(--ae-radius-xxl);
    background: var(--ae-navy);
    color: var(--ae-white);
    padding: clamp(2.5rem, 5vw, 4rem);
    position: relative;
    overflow: hidden;
}

.team-copy::after {
    content: "";
    position: absolute;
    right: -7rem;
    bottom: -8rem;
    width: 20rem;
    height: 20rem;
    border-radius: 999px;
    background: var(--ae-lavender);
    opacity: 0.62;
}

.team-copy h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 1.5rem;
    color: var(--ae-white);
    font-size: clamp(3.75rem, 7vw, 7.4rem);
    line-height: 0.9;
    letter-spacing: -0.015em;
    font-weight: 950;
}

.team-copy p {
    position: relative;
    z-index: 1;
    max-width: 50rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.35rem;
    line-height: 1.35;
    font-weight: 850;
}

.team-aside {
    border-radius: var(--ae-radius-xxl);
    background: var(--ae-lavender);
    padding: clamp(2rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--ae-navy);
}

.team-image-card {
    min-height: 220px;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.28);
    border: 2px dashed rgba(48, 75, 100, 0.18);
}

.team-aside h3 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 0.95;
    letter-spacing: -0.015em;
    font-weight: 950;
}

.team-aside p {
    margin: 0;
    color: rgba(48, 75, 100, 0.82);
    font-size: 1.05rem;
    font-weight: 850;
}

.about-contact {
    padding: 0 1.5rem 6rem;
}

.about-contact-panel {
    max-width: var(--ae-max);
    margin: 0 auto;
    border-radius: var(--ae-radius-xxl);
    background: var(--ae-green);
    color: var(--ae-white);
    padding: clamp(2.5rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.about-contact-panel h2 {
    margin: 0;
    color: var(--ae-white);
    font-size: clamp(3.75rem, 7vw, 7.6rem);
    line-height: 0.9;
    letter-spacing: -0.015em;
    font-weight: 950;
}

.about-contact-panel p {
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.35rem;
    line-height: 1.25;
    font-weight: 950;
}

@media (max-width: 1050px) {
    .about-hero-inner,
    .about-intro-inner,
    .services-panel,
    .team-panel,
    .about-contact-panel {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 760px) {
    .about-hero {
        padding: 7.5rem 1rem 4.5rem;
        overflow: hidden;
    }

    .about-hero-inner {
        width: 100%;
        min-width: 0;
        gap: 2rem;
        grid-template-columns: 1fr;
    }

    .about-hero-inner > * {
        min-width: 0;
    }

    .about-hero h1 {
        max-width: 100%;
        font-size: clamp(3rem, 12.5vw, 4.35rem);
        line-height: 0.92;
        letter-spacing: -0.045em;
    }

    .about-hero .hero-card {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        padding: 2rem;
    }

    .about-hero .hero-card p {
        font-size: clamp(1.35rem, 6vw, 1.75rem);
        line-height: 1.18;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}
/* Team Page */

.team-hero {
    position: relative;
    overflow: hidden;
    background: var(--ae-navy);
    padding: 9.5rem 1.5rem 6.5rem;
    color: var(--ae-white);
}

.team-hero::before,
.team-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.team-hero::before {
    right: -9rem;
    top: -8rem;
    width: 31rem;
    height: 31rem;
    background: var(--ae-green);
}

.team-hero::after {
    right: 12rem;
    bottom: -12rem;
    width: 26rem;
    height: 26rem;
    background: var(--ae-coral);
    opacity: 0.92;
}

.team-hero .hero-dot {
    position: absolute;
    left: -10rem;
    top: 11rem;
    width: 25rem;
    height: 25rem;
    border-radius: 999px;
    background: var(--ae-lavender);
    opacity: 0.88;
}

.team-hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--ae-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: end;
}

.team-hero h1 {
    max-width: 60rem;
    margin: 0;
    color: var(--ae-white);
    font-size: clamp(4.5rem, 7.6vw, 8.6rem);
    line-height: 0.88;
    letter-spacing: -0.055em;
    font-weight: 950;
}

.team-hero h1 span {
    text-decoration: underline;
    text-decoration-color: var(--ae-coral);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.12em;
}

.team-members {
    padding: 4rem 1.5rem 5.5rem;
}

.team-members-inner {
    max-width: var(--ae-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.team-member-card {
    overflow: hidden;
    border-radius: var(--ae-radius-xl);
    background: var(--ae-white);
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.member-photo-wrap {
    position: relative;
    height: 400px;
    min-height: 400px;
    background: var(--ae-lavender);
    overflow: hidden;
}

.team-member-card:nth-child(2) .member-photo-wrap {
    background: var(--ae-coral);
}

.team-member-card:nth-child(3) .member-photo-wrap {
    background: var(--ae-green);
}

.member-photo-wrap::before,
.member-photo-wrap::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    opacity: 0.55;
}

.member-photo-wrap::before {
    width: 12rem;
    height: 12rem;
    right: -4rem;
    top: -4rem;
    background: var(--ae-navy);
}

.member-photo-wrap::after {
    width: 8rem;
    height: 8rem;
    left: -2.5rem;
    bottom: -2.5rem;
    background: var(--ae-white);
}

.member-photo-placeholder {
    position: absolute;
    inset: 1.25rem;
    z-index: 1;
    border-radius: 1.75rem;
    background: rgba(246, 246, 242, 0.26);
    border: 2px dashed rgba(48, 75, 100, 0.22);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    color: rgba(48, 75, 100, 0.72);
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.member-photo-wrap img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center top;
}

.member-content {
    padding: 1.5rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.5rem;
}

.member-kicker {
    margin: 0;
    color: var(--ae-coral);
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.member-content h2 {
    margin: 0;
    color: var(--ae-navy);
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-weight: 950;
}

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

    .team-members-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .team-hero {
        padding-top: 7.5rem;
    }

    .team-hero h1 {
        font-size: clamp(3.8rem, 16vw, 5.6rem);
    }

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

    .member-photo-wrap {
    height: 300px;
    min-height: 300px;
    }

    .member-photo-wrap img {
        height: 300px;
        object-fit: cover;
        object-position: center top;
    }   
}

/* Hero Animations */

@keyframes ae-bloom-float {
    0% {
        transform: translateY(0) scale(0.86);
        opacity: 1;
    }

    8% {
        transform: translateY(0) scale(0.94);
        opacity: 1;
    }

    16% {
        transform: translateY(0) scale(0.86);
        opacity: 1;
    }

    50% {
        transform: translateY(-10px) scale(0.9);
        opacity: 1;
    }

    75% {
        transform: translateY(0) scale(0.86);
        opacity: 1;
    }

    100% {
        transform: translateY(0) scale(0.86);
        opacity: 1;
    }
}

.hero-section .shape,
.about-hero::before,
.about-hero::after,
.about-hero .hero-dot,
.team-hero::before,
.team-hero::after,
.team-hero .hero-dot,
.work-hero::before,
.work-hero::after,
.work-hero .hero-dot,
.contact-page::before,
.contact-page::after {
    transform-origin: center;
    animation-name: ae-bloom-float;
    animation-duration: 9s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

.hero-section .shape-green,
.about-hero::before,
.team-hero::before,
.work-hero::before,
.contact-page::before {
    animation-delay: 120ms;
}

.hero-section .shape-coral,
.about-hero::after,
.team-hero::after,
.work-hero::after {
    animation-delay: 240ms;
}

.hero-section .shape-lavender,
.about-hero .hero-dot,
.team-hero .hero-dot,
.work-hero .hero-dot,
.contact-page::after {
    animation-delay: 360ms;
}

@keyframes ae-fade-up {
    0% {
        transform: translateY(18px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-section h1,
.about-hero h1,
.team-hero h1,
.work-hero h1,
.hero-card,
.contact-form-wrap {
    animation: ae-fade-up 700ms ease-out both;
}

.hero-section h1,
.about-hero h1,
.team-hero h1,
.work-hero h1 {
    animation-delay: 180ms;
}

.hero-card,
.contact-form-wrap {
    animation-delay: 320ms;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}