:root {
    --wp--preset--color--base: #f9f9f9;
    --wp--preset--color--contrast: #111111;
    --wp--preset--color--contrast-2: #636363;
    --wp--preset--spacing--20: 1.25rem;
    --wp--preset--spacing--30: 1.5rem;
    --wp--preset--spacing--50: 8.5rem;
    --wp--preset--font-family--body: "Inter", sans-serif;
    --wp--preset--font-family--heading: "Cardo", serif;
}

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

body {
    font-family: var(--wp--preset--font-family--body), sans-serif;
    background-color: var(--wp--preset--color--base);
    color: var(--wp--preset--color--contrast);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--wp--preset--spacing--20);
}

/* Header */
header {
    padding: var(--wp--preset--spacing--20) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.site-logo {
    width: 120px;
    height: 120px;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Main Content */
main {
    padding-bottom: var(--wp--preset--spacing--30);
}

/* Hero / Heading sections */
.section-hero {
    padding: var(--wp--preset--spacing--50) 0;
    text-align: center;
}

h1 {
    font-family: var(--wp--preset--font-family--heading), serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    margin-bottom: var(--wp--preset--spacing--20);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-desc {
    font-size: 1.25rem;
    max-width: 565px;
    margin: 0 auto;
    color: var(--wp--preset--color--contrast);
}

/* Sections with Asterisk */
.section-box {
    background-color: #ffffff;
    padding: var(--wp--preset--spacing--50) 0;
    margin-bottom: var(--wp--preset--spacing--30);
}

.is-style-asterisk {
    font-family: var(--wp--preset--font-family--heading) , serif;
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-align: center;
}

.is-style-asterisk::before {
    content: '';
    width: 1.5rem;
    height: 3rem;
    background: var(--wp--preset--color--contrast-2, currentColor);
    clip-path: path('M11.93.684v8.039l5.633-5.633 1.216 1.23-5.66 5.66h8.04v1.737H13.2l5.701 5.701-1.23 1.23-5.742-5.742V21h-1.737v-8.094l-5.77 5.77-1.23-1.217 5.743-5.742H.842V9.98h8.162l-5.701-5.7 1.23-1.231 5.66 5.66V.684h1.737Z');
    display: block;
    margin: 0 auto 1.5rem;
}

.section-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.15rem;
    color: var(--wp--preset--color--contrast);
}

/* Team Section */
.team-section {
    padding: var(--wp--preset--spacing--50) 0;
    text-align: center;
}

.team-section h2 {
    font-family: var(--wp--preset--font-family--heading);
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.team-member figure {
    margin-bottom: 1.5rem;
}

.team-member img {
    width: 100%;
    max-width: 1024px;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 20px;
}

.team-member-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.team-member-name {
    font-size: 0.875rem;
    font-weight: 700;
}

.team-member-role {
    font-size: 0.875rem;
    color: var(--wp--preset--color--contrast);
}

/* Footer */
footer {
    padding: var(--wp--preset--spacing--30) 0;
    border-top: 1px solid #eee;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-email {
    text-decoration: none;
    color: inherit;
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links svg {
    fill: currentColor;
    width: 36px;
    height: 36px;
}

@media (max-width: 781px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
}
