:root {
    --color-bg: #f5efe7;
    --color-surface: #fcf8f2;
    --color-surface-strong: #ffffff;
    --color-primary: #463527;
    --color-primary-dark: #2f2117;
    --color-text-strong: #4b3929;
    --color-text: #564434;
    --color-muted: #7b6854;
    --color-border: #d8cbb8;
    --color-accent: #b58d5a;
    --color-accent-soft: #efe3d2;
    --color-accent-wash: #f6eee4;
    --color-link: #5a3f24;
    --font-body: Aptos, "Segoe UI", "Helvetica Neue", sans-serif;
    --font-heading: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
    --space-section: 36px;
    --space-grid: 24px;
    --space-stack: 16px;
    --radius-pill: 999px;
}

body {
    margin: 0;
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text);
    background:
        radial-gradient(circle at top left, rgba(181, 141, 90, 0.12), transparent 28%),
        linear-gradient(180deg, #fbf7f1 0%, var(--color-bg) 32%, #f8f2ea 100%);
    background-color: var(--color-bg);
}

a {
    color: var(--color-link);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:visited {
    color: var(--color-link);
}

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

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

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(251, 247, 241, 0.82);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(79, 64, 49, 0.06);
    min-height: 84px;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 18px 0;
}

.site-header .container,
.header-inner,
.navbar,
.site-nav {
    min-height: 84px;
}

.site-header-inner {
    position: relative;
}

.site-branding {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
}

.site-brand-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-primary);
}

.site-brand-mark {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-branding img {
    display: block;
    height: 62px;
    width: auto;
    object-fit: contain;
}

.logo,
.site-logo,
.site-brand img {
    width: auto;
    height: 48px;
    display: block;
}

.site-nav-wrapper {
    display: flex;
    align-items: center;
}

.site-nav {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    padding: 8px;
    border: 1px solid rgba(70, 53, 39, 0.08);
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.site-nav a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 10px 14px;
    border-radius: 999px;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
    color: var(--color-primary);
    background-color: var(--color-accent-wash);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid rgba(70, 53, 39, 0.16);
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.78);
    color: var(--color-primary);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background-color: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle-lines {
    position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
    content: "";
    position: absolute;
    left: 0;
}

.menu-toggle-lines::before {
    top: -5px;
}

.menu-toggle-lines::after {
    top: 5px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
    top: 0;
    transform: rotate(-45deg);
}

.site-main {
    padding: 40px 0;
    opacity: 1;
    transform: none;
}

.breadcrumb-nav {
    margin-bottom: 18px;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--color-muted);
    font-size: 0.92rem;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: rgba(86, 68, 52, 0.5);
}

.breadcrumb-item a {
    color: var(--color-muted);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--color-primary);
}

.breadcrumb-item span[aria-current="page"] {
    color: var(--color-primary);
    font-weight: 600;
}

.hero {
    max-width: 820px;
    display: grid;
    gap: 18px;
}

.hero-page {
    max-width: 920px;
    gap: 14px;
}

.hero-page.hero-page-wide {
    max-width: 980px;
}

.hero-page.hero-page-title-wide h1 {
    max-width: none;
}

.hero-page h1 {
    margin: 0;
    max-width: none;
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 1.12;
    text-wrap: pretty;
    color: var(--color-primary);
}

.hero-page.hero-page-wide h1 {
    max-width: none;
}

.hero-page p {
    margin: 0;
    max-width: 62ch;
    font-size: 1.06rem;
    line-height: 1.72;
    color: var(--color-muted);
}

.hero-page .meta-text {
    font-size: 0.94rem;
    color: var(--color-accent);
}

.hero-page + .section,
.hero-page + .section.section-tight {
    padding-top: 18px;
}

.hero-home {
    max-width: none;
    display: block;
}

.hero-home-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 32px;
    align-items: center;
}

.hero-copy {
    min-width: 0;
}

.hero-visual {
    display: grid;
    gap: 18px;
    justify-items: end;
}

.hero-surface {
    position: relative;
    overflow: hidden;
    padding: 40px;
    border: 1px solid rgba(181, 141, 90, 0.28);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(181, 141, 90, 0.16), transparent 30%),
        linear-gradient(180deg, #fffdf9 0%, #f7f1e8 100%);
    box-shadow: 0 16px 42px rgba(79, 64, 49, 0.08);
}

.eyebrow {
    margin: 0 0 12px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.hero-home h1 {
    font-family: var(--font-heading);
    font-size: 2.9rem;
    line-height: 1.12;
    margin-bottom: 18px;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 0.01em;
    max-width: 14ch;
}

.hero-home p {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--color-muted);
    margin-bottom: 28px;
    max-width: 62ch;
}

.hero-lead {
    font-size: 1.18rem;
    color: var(--color-primary);
    max-width: 38ch;
}

.hero-editorial-note {
    position: relative;
    max-width: 34rem;
    margin: 0 0 24px;
    padding: 22px 24px 18px;
    border-left: 3px solid rgba(181, 141, 90, 0.72);
    background: rgba(255, 255, 255, 0.48);
    border-radius: 0 20px 20px 0;
}

.hero-editorial-note p {
    margin: 0;
    max-width: none;
    font-size: 1rem;
}

.hero-signature {
    display: grid;
    gap: 3px;
    margin-top: 16px;
}

.hero-signature-name {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.08rem;
}

.hero-signature-role {
    color: var(--color-muted);
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}

.hero-portrait {
    margin: 0;
    display: grid;
    gap: 14px;
    justify-items: end;
}

.hero-portrait-frame {
    position: relative;
    width: min(100%, 420px);
    padding: 14px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(246, 238, 228, 0.98) 100%);
    border: 1px solid rgba(181, 141, 90, 0.28);
    box-shadow: 0 18px 36px rgba(79, 64, 49, 0.14);
}

.hero-portrait-frame::after {
    content: "";
    position: absolute;
    inset: auto 18px -18px auto;
    width: 120px;
    height: 120px;
    border-radius: 28px;
    background: radial-gradient(circle, rgba(181, 141, 90, 0.24) 0%, rgba(181, 141, 90, 0) 72%);
    pointer-events: none;
}

.hero-portrait img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(79, 64, 49, 0.1);
}

.hero-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 24px;
}

.hero-portrait figcaption {
    width: min(100%, 360px);
    text-align: left;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    line-height: 1.4;
}

.hero-portrait figcaption span {
    display: block;
    margin-top: 4px;
    color: var(--color-muted);
    font-family: var(--font-body);
    font-size: 0.96rem;
}

.hero-side-note {
    width: min(100%, 280px);
    margin: 0;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(181, 141, 90, 0.22);
    box-shadow: 0 10px 24px rgba(79, 64, 49, 0.08);
}

.hero-side-label {
    margin: 0 0 8px;
    color: var(--color-accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-side-note p:last-child {
    margin: 0;
    color: var(--color-text);
    font-size: 0.97rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px 14px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.hero-actions > * {
    margin: 0;
}

.section-actions,
.place-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    line-height: 1.35;
    text-align: center;
    border: 1px solid var(--color-primary);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.button:visited {
    text-decoration: none;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(79, 64, 49, 0.12);
}

.button-primary {
    background-color: var(--color-primary);
    color: #fffdf9;
}

a.button.button-primary,
a.button.button-primary:visited {
    background-color: var(--color-primary);
    color: #fffdf9;
}

a.button.button-primary:hover,
a.button.button-primary:focus-visible {
    background-color: var(--color-primary-dark);
    color: #fffdf9;
}

.button-secondary {
    background-color: var(--color-surface-strong);
    color: var(--color-primary);
}

a.button.button-secondary,
a.button.button-secondary:visited {
    color: var(--color-primary);
}

a.button.button-secondary:hover,
a.button.button-secondary:focus-visible {
    background-color: var(--color-accent-soft);
    color: var(--color-primary);
}

.section {
    padding: var(--space-section) 0;
}

.section-tight {
    padding: 28px 0;
}

.section + .section {
    border-top: 1px solid var(--color-border);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-grid);
    margin-top: 24px;
}

.card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background-color: var(--color-surface-strong);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 28px;
    color: var(--color-text);
    box-shadow: 0 8px 24px rgba(36, 48, 59, 0.08);
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.card > * {
    margin-top: 0;
    margin-bottom: 0;
}

.card h3 {
    font-family: var(--font-heading);
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--color-primary);
    font-size: 1.35rem;
    line-height: 1.25;
}

.title-with-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(239, 227, 210, 0.92) 0%, rgba(246, 238, 228, 0.98) 100%);
    color: var(--color-primary);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.card-icon svg {
    width: 21px;
    height: 21px;
}

.card p {
    line-height: 1.7;
    color: var(--color-muted);
}

.card ul {
    margin: 16px 0 0 18px;
    color: var(--color-muted);
    line-height: 1.7;
}

.card li + li {
    margin-top: 6px;
}

.card:hover {
    background: linear-gradient(180deg, #ffffff 0%, #fbf7f1 100%);
    border-color: var(--color-accent);
    box-shadow: 0 12px 28px rgba(79, 64, 49, 0.14);
    transform: translateY(-2px);
}

.card-highlight {
    background: linear-gradient(180deg, #f7efe4 0%, #efe1cf 100%);
    border-color: var(--color-accent);
    border-top: 4px solid var(--color-primary-dark);
    box-shadow: 0 12px 28px rgba(79, 64, 49, 0.16);
}

.card-highlight h2,
.card-highlight h3,
.card-highlight h3 a {
    color: #2f2418;
}

.card-highlight p {
    color: #3b2f22;
}

.section-contact {
    margin-top: 16px;
}

.card h3 a {
    color: var(--color-primary);
    text-decoration: none;
}

.card h3 a:hover {
    text-decoration: underline;
}

.card a:not(.button):not(.tag),
.card a:not(.button):not(.tag):visited,
.team-card a:not(.button):not(.tag),
.team-card a:not(.button):not(.tag):visited {
    color: var(--color-link);
}

.card a:not(.button):not(.tag):hover,
.team-card a:not(.button):not(.tag):hover {
    color: var(--color-primary-dark);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-grid);
    margin-top: 24px;
}

.video-card {
    padding-top: 22px;
}

.video-card h3 {
    margin-bottom: 0;
}

.video-embed {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: #1f1a15;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.video-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-embed--short {
    aspect-ratio: 9 / 16;
    max-width: 360px;
    margin: 0 auto;
}

.video-embed--detail {
    max-width: 420px;
    margin-bottom: 22px;
}

.video-lite-card {
    width: 100%;
    max-width: 520px;
    margin: 1.5rem auto;
    border-radius: 24px;
    background: linear-gradient(135deg, #f8f3ea, #efe3d0);
    border: 1px solid rgba(120, 91, 56, 0.18);
    box-shadow: 0 18px 45px rgba(48, 35, 23, 0.08);
    overflow: hidden;
}

.video-lite-trigger {
    width: 100%;
    min-height: 132px;
    padding: 1.4rem 1.5rem;
    border: 0;
    background: transparent;
    color: #2f241b;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    cursor: pointer;
}

.video-lite-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #7b5634;
    color: #fff;
    font-size: 1.15rem;
    box-shadow: 0 10px 25px rgba(123, 86, 52, 0.25);
}

.video-lite-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.video-lite-text strong {
    font-family: inherit;
    font-size: 1.05rem;
    line-height: 1.3;
}

.video-lite-text small {
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(47, 36, 27, 0.72);
}

.video-lite-card iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
}

.video-lite-card.is-playing {
    max-width: 760px;
    background: #111;
    box-shadow: 0 24px 60px rgba(20, 14, 9, 0.18);
}

@media (max-width: 768px) {
    .video-lite-card {
        max-width: 100%;
        border-radius: 20px;
    }

    .video-lite-trigger {
        min-height: 112px;
        padding: 1.15rem;
    }

    .video-lite-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }
}

.content-media {
    margin: 0 0 22px;
}

.content-media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
}

.content-block {
    max-width: 820px;
}

.section > .content-block:first-child {
    margin-bottom: 24px;
}

.section-intro {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

.section-intro > * {
    margin-top: 0;
    margin-bottom: 0;
}

.content-block h2 {
    font-family: var(--font-heading);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2rem;
    line-height: 1.2;
    color: var(--color-primary);
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.content-block h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: 999px;
}

.content-block p {
    line-height: 1.8;
    color: var(--color-muted);
    margin-bottom: 16px;
}

.content-block a {
    color: var(--color-primary);
    text-decoration-color: rgba(70, 53, 39, 0.35);
    text-underline-offset: 3px;
}

.content-block a:hover {
    color: var(--color-primary-dark);
    text-decoration-color: currentColor;
}

.section-actions {
    margin-top: 24px;
}

.content-block ul {
    margin: 0 0 16px 20px;
    color: var(--color-muted);
    line-height: 1.8;
}

.content-block li + li {
    margin-top: 8px;
}

.content-block strong,
.card strong,
.team-card strong {
    color: var(--color-text-strong);
}

.icon-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.icon-title svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    padding: 10px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(239, 227, 210, 0.92) 0%, rgba(246, 238, 228, 0.98) 100%);
    color: var(--color-primary);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.content-block.card-highlight h2,
.content-block.card-highlight h3,
.content-block.card-highlight h3 a {
    color: #2f2418;
}

.content-block.card-highlight p,
.content-block.card-highlight li {
    color: #3b2f22;
}

.two-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-grid);
}

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

.media-figure {
    margin: 0;
}

.media-figure img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(181, 141, 90, 0.22);
    box-shadow: 0 14px 32px rgba(79, 64, 49, 0.12);
}

.media-figure figcaption {
    margin-top: 10px;
    color: var(--color-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.media-figure-wide {
    max-width: 760px;
    margin-top: 28px;
}

.hero-inline-media img {
    border-radius: 24px;
}

.card-with-media {
    overflow: hidden;
    padding-top: 0;
}

.card-media {
    margin: 0 -28px 22px;
}

.card-media img {
    border: 0;
    border-radius: 18px 18px 0 0;
    box-shadow: none;
}

.image-grid,
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-grid);
    margin-top: 24px;
}

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

.team-card {
    display: grid;
    grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 22px;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background-color: var(--color-surface-strong);
    box-shadow: 0 8px 24px rgba(36, 48, 59, 0.08);
}

.team-card h3 {
    margin: 0 0 6px;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.35rem;
}

.team-card p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.6;
}

.team-portrait img {
    aspect-ratio: 4 / 5;
}

.stack-list {
    display: grid;
    gap: var(--space-grid);
}

.stack-list-tight {
    gap: 18px;
}

.meta-text {
    margin: 0 0 12px;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.local-area-note {
    margin-top: 14px;
    padding: 14px 16px;
    border-left: 3px solid rgba(181, 141, 90, 0.8);
    background-color: rgba(255, 255, 255, 0.56);
    border-radius: 0 14px 14px 0;
}

.place-links {
    margin: 18px 0 22px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 0;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background-color: var(--color-accent-soft);
    color: var(--color-primary);
    font-size: 0.92rem;
    text-decoration: none;
}

.tag:hover {
    background-color: var(--color-border);
}

.signal-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.signal-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid rgba(79, 64, 49, 0.12);
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.75);
    color: var(--color-primary);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .site-main {
        padding: 28px 0;
    }

    .section {
        padding: 28px 0;
    }

    .section-tight {
        padding: 22px 0;
    }

    .hero-page h1 {
        font-size: 2.3rem;
        max-width: none;
        text-wrap: pretty;
    }

    .hero-page p {
        font-size: 1rem;
        line-height: 1.68;
    }

    .hero-page + .section,
    .hero-page + .section.section-tight {
        padding-top: 14px;
    }

    .hero-home-grid,
    .two-columns,
    .card-grid,
    .image-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .site-header .container {
        gap: 12px;
    }

    .site-header-inner {
        flex-wrap: wrap;
    }

    .site-branding {
        min-width: 0;
    }

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

    .site-nav-wrapper {
        display: none;
        width: 100%;
    }

    .site-nav-wrapper.is-open {
        display: block;
    }

    .site-nav {
        width: 100%;
        border-radius: 22px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 10px;
        box-shadow: 0 12px 28px rgba(79, 64, 49, 0.12);
    }

    .site-nav {
        margin-top: 0;
    }

    .site-branding img {
        height: 48px;
    }

    .site-brand-mark {
        gap: 8px;
    }

    .hero-home h1 {
        font-size: 2.3rem;
        max-width: none;
    }

    .hero-surface {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .hero-portrait {
        justify-items: stretch;
    }

    .hero-visual {
        justify-items: stretch;
    }

    .hero-portrait-frame,
    .hero-portrait figcaption,
    .hero-side-note {
        width: 100%;
    }

    .hero-editorial-note {
        padding: 18px 18px 16px;
    }

    .media-figure-wide {
        margin-top: 22px;
    }

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

    .team-portrait {
        max-width: 280px;
    }

    .breadcrumb-nav {
        margin-bottom: 14px;
    }

    .breadcrumb-list {
        font-size: 0.88rem;
        gap: 6px;
    }
}

.site-footer {
    margin-top: 56px;
    padding: 56px 0 24px;
    background:
        radial-gradient(circle at top right, rgba(181, 141, 90, 0.18), transparent 24%),
        linear-gradient(180deg, #38281d 0%, #261a12 100%);
    color: #f7f3ed;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.footer-title {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.2;
    color: #fffdf9;
}

.footer-heading {
    margin: 0 0 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--color-accent-soft);
}

.footer-callout {
    display: grid;
    gap: 6px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 253, 249, 0.14);
}

.footer-brand {
    position: relative;
}

.footer-callout span:first-child {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #fffdf9;
}

.footer-callout span:last-child {
    color: #efe7dc;
    font-size: 0.95rem;
}

.footer-brand p,
.footer-column li,
.footer-bottom p {
    line-height: 1.8;
    color: #efe7dc;
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column li + li {
    margin-top: 10px;
}

.site-footer a {
    color: #f7f3ed;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 253, 249, 0.16);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        margin-top: 28px;
    }

}

@media (max-width: 768px) {
    .site-header {
        min-height: 84px;
    }

    .hero {
        padding-top: 24px;
    }

    .hero-surface {
        min-height: 0;
        height: auto;
        contain: layout paint;
    }

    .hero-home-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: start;
    }

    .hero-copy,
    .hero-media,
    .hero-photo-wrap,
    .hero-portrait-card,
    .hero-visual,
    .hero-portrait,
    .hero-portrait-frame {
        min-width: 0;
    }

    .hero-photo-wrap,
    .hero-portrait-card,
    .hero-portrait-frame {
        width: 100%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-portrait-card img,
    .hero-media img,
    .hero-photo-wrap img,
    .hero-portrait-frame img {
        width: 100%;
        height: auto;
        display: block;
    }
}

/* Correction CLS Lighthouse : ne jamais deplacer le contenu principal au chargement */
body {
  opacity: 1 !important;
}

main.site-main {
  opacity: 1 !important;
  transform: none !important;
  translate: none !important;
  animation: none !important;
  transition: none !important;
  margin-top: 0 !important;
  position: relative !important;
  top: auto !important;
}

/* Stabilisation du haut de page mobile */
@media (max-width: 768px) {
  .site-header,
  .site-header .container,
  .header-inner {
    min-height: 96px !important;
  }

  .hero {
    padding-top: 24px !important;
  }
}
