:root {
    --paper: #f3f1ec;
    --paper-burnt: #eadcd0;
    --ink: #1f1e1d;
    --ink-fade: #3d3b39;
    --rust: #9a4633;
    --sage: #536b59;
    --pine: #2a3831;
    --serif: Georgia, "Times New Roman", serif;
    --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    --organic-ease: cubic-bezier(0.25, 1, 0.3, 1);
    --bounce-ease: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

main { scroll-margin-top: 7rem; }

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1001;
    padding: 0.75rem 1rem;
    background: var(--ink);
    color: var(--paper);
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

a { color: inherit; text-underline-offset: 0.2em; }
a:focus-visible { outline: 3px solid var(--rust); outline-offset: 4px; }
img { max-width: 100%; height: auto; display: block; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(243, 241, 236, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(31, 30, 29, 0.09);
}

.header-inner,
.page-container {
    width: min(1160px, 90vw);
    margin: 0 auto;
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    font: 500 1.25rem/1 var(--serif);
}

.brand img { width: auto; height: 28px; }
.brand span { font: 500 1.25rem/1 var(--serif); }
.main-nav { display: flex; align-items: center; gap: 1.4rem; }
.main-nav a { text-decoration: none; }
.main-nav a:not(.button) { font-size: 0.9rem; }
.main-nav a:not(.button):hover { color: var(--sage); }

.menu-toggle { display: none; align-items: center; gap: 0.55rem; min-height: 42px; padding: 0.65rem 0.8rem; border: 1px solid rgba(31, 30, 29, 0.14); border-radius: 10px 13px 9px 12px; background: transparent; color: var(--ink); font: 0.68rem/1 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; }
.menu-toggle-icon { display: inline-flex; flex-direction: column; justify-content: center; gap: 4px; width: 17px; }
.menu-toggle-icon span { display: block; width: 17px; height: 1.5px; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
.menu-toggle.is-open { background: var(--sage); border-color: var(--sage); color: var(--paper); }
.menu-toggle.is-open .menu-toggle-icon span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-toggle.is-open .menu-toggle-icon span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open .menu-toggle-icon span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.75rem 1.35rem;
    border-radius: 10px 14px 9px 12px;
    background: var(--ink);
    color: var(--paper);
    font: 500 0.82rem/1 var(--mono);
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease;
}

.button:hover { background: var(--pine); transform: translateY(-2px); }
.button--light { background: var(--paper); color: var(--ink); }

.eyebrow {
    display: block;
    margin-bottom: 1.2rem;
    color: var(--sage);
    font: 0.7rem/1.2 var(--mono);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 1.15; }
h1 { max-width: 820px; font-size: clamp(2.15rem, 4.2vw, 3.6rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); }
h3 { font-size: 1.3rem; }
p { max-width: 700px; margin: 1rem 0 0; color: var(--ink-fade); font-size: 1rem; }

.page-hero { padding: 4.8rem 0 2.5rem; }
.page-hero p { max-width: 650px; font-size: 1.12rem; }
.page-hero--about { padding: 3.6rem 0 2.5rem; }
.page-hero--about h1 { font-size: clamp(2.05rem, 3.8vw, 3.1rem); }
.page-hero--about p { max-width: 620px; font-size: 1.04rem; }
.page-section { padding: 4.5rem 0; }
main > .page-section:last-child { padding-bottom: 2.5rem; }
.page-section--tint { background: transparent; }
.page-section--tint > .page-container {
    padding: 2.6rem;
    background: var(--paper-burnt);
    border: 1px solid rgba(31, 30, 29, 0.06);
    border-radius: 18px;
}
.page-section--services > .page-container { padding: 0; background: transparent; border: 0; }
.page-hero + .page-section { padding-top: 1.4rem; }
.page-section--services { padding-bottom: 0; }
.page-section--services + .page-section { padding-top: 3.5rem; }
.page-section--contact-options { padding-bottom: 0; }
.page-section--contact-options + .page-section { padding-top: 3.5rem; padding-bottom: 0; }
.page-section--tint { padding-top: 3.5rem; padding-bottom: 0; }
.page-section--tint + .page-section { padding-top: 3.5rem; }
.section-heading { margin-bottom: 2rem; }
.service-hint { margin-top: 0.7rem; font-size: 0.92rem; }

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

.service-card {
    min-height: 210px;
    padding: 1.7rem;
    background: #fff;
    border: 1px solid rgba(31, 30, 29, 0.08);
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 2px 7px 15px rgba(0, 0, 0, 0.03), -1px 2px 8px rgba(0, 0, 0, 0.02);
    transition: transform 0.5s var(--organic-ease, cubic-bezier(0.25, 1, 0.3, 1)), box-shadow 0.5s var(--organic-ease, cubic-bezier(0.25, 1, 0.3, 1));
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    scroll-margin-top: 7rem;
}

.service-card::before { content: ""; position: absolute; bottom: -50%; right: -50%; width: 200px; height: 200px; background: radial-gradient(circle, var(--sage) 0%, transparent 70%); opacity: 0; transition: opacity 0.4s ease, transform 0.6s var(--organic-ease, cubic-bezier(0.25, 1, 0.3, 1)); transform: translate(30%, 30%) scale(0.5); pointer-events: none; mix-blend-mode: multiply; }
.service-card:hover, .service-card[open] { transform: translateY(-5px); box-shadow: 4px 15px 30px rgba(0, 0, 0, 0.06), -2px 5px 12px rgba(0, 0, 0, 0.03); z-index: 2; }
.service-card:hover::before, .service-card[open]::before { opacity: 0.1; transform: translate(0, 0) scale(1); }
.service-card > * { position: relative; z-index: 1; }
.service-summary { position: relative; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; list-style: none; }
.service-summary::-webkit-details-marker { display: none; }
.service-summary-main { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 0; min-width: 0; }
.service-summary-title { margin-bottom: 1rem; font: 500 1.25rem/1.1 var(--sans); }
.service-summary-description { display: block; max-width: 46ch; color: #555856; font-size: 0.95rem; line-height: 1.5; }
.service-icon { width: 32px; height: 32px; margin-bottom: 1.5rem; flex: 0 0 auto; filter: invert(32%) sepia(3%) saturate(2311%) hue-rotate(307deg) brightness(94%) contrast(85%); transition: transform 0.4s var(--bounce-ease, cubic-bezier(0.34, 1.56, 0.64, 1)); }
.service-card:hover .service-icon, .service-card[open] .service-icon { transform: scale(1.1) rotate(5deg); }
.service-toggle { position: relative; display: block; width: 34px; height: 34px; flex: 0 0 auto; border: 1px solid rgba(83, 107, 89, 0.45); border-radius: 10px 14px 9px 12px; background: rgba(243, 241, 236, 0.75); transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease; }
.service-toggle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 8px; height: 8px; border-right: 2px solid var(--sage); border-bottom: 2px solid var(--sage); transform: translate(-50%, -68%) rotate(45deg); transition: transform 180ms ease, border-color 180ms ease; }
.service-card:hover .service-toggle { transform: translateY(-2px); border-color: var(--sage); background: var(--paper-burnt); }
.service-card[open] .service-toggle { transform: none; border-color: var(--sage); background: var(--sage); }
.service-card[open] .service-toggle::after { border-color: var(--paper); transform: translate(-50%, -32%) rotate(225deg); }
.service-expanded { margin-top: 1.45rem; padding-top: 1.1rem; border-top: 1px solid rgba(31, 30, 29, 0.1); animation: service-expand 260ms ease both; }
.service-expanded-label { display: block; margin-bottom: 0.8rem; color: var(--sage); font: 0.68rem/1.2 var(--mono); letter-spacing: 0.14em; text-transform: uppercase; }
.service-points { list-style: none; margin: 0; padding: 0; }
.service-points li { position: relative; padding-left: 1rem; color: var(--ink-fade); font-size: 0.86rem; line-height: 1.45; }
.service-points li + li { margin-top: 0.45rem; }
.service-points li::before { content: "+"; position: absolute; left: 0; color: var(--sage); font-family: var(--mono); }

/* Service colors mirror the homepage bento palette. */
.service-grid > .service-card:nth-child(1) { background-color: var(--sage); color: var(--paper); }
.service-grid > .service-card:nth-child(1) .service-summary-title,
.service-grid > .service-card:nth-child(1) .service-expanded-label { color: var(--paper); }
.service-grid > .service-card:nth-child(1) .service-summary-description,
.service-grid > .service-card:nth-child(1) .service-points li { color: rgba(243, 241, 236, 0.9); }
.service-grid > .service-card:nth-child(1) .service-expanded { border-color: rgba(243, 241, 236, 0.24); }
.service-grid > .service-card:nth-child(1) .service-points li::before { color: var(--paper); }
.service-grid > .service-card:nth-child(1) .service-icon { filter: brightness(0) invert(1); }
.service-grid > .service-card:nth-child(1) .service-toggle { border-color: rgba(243, 241, 236, 0.55); background: rgba(243, 241, 236, 0.08); }
.service-grid > .service-card:nth-child(1) .service-toggle::after { border-color: var(--paper); }
.service-grid > .service-card:nth-child(1):hover .service-toggle { border-color: var(--paper); background: rgba(243, 241, 236, 0.16); }
.service-grid > .service-card:nth-child(1)[open] .service-toggle { border-color: var(--paper); background: var(--paper); }
.service-grid > .service-card:nth-child(1)[open] .service-toggle::after { border-color: var(--sage); }
.service-grid > .service-card:nth-child(5) { background-color: var(--paper-burnt); }

/* About page visual system. */
.page-section--profile { padding-top: 1.4rem; padding-bottom: 0; }
.page-section--profile + .page-section { padding-top: 3.5rem; padding-bottom: 0; }
.page-section--audience { padding-top: 3.5rem; padding-bottom: 0; }
.page-section--audience + .page-section { padding-top: 3.5rem; }
.about-profile-grid { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); column-gap: 4.5rem; row-gap: 2rem; align-items: stretch; }
.about-profile-visual { min-height: 580px; position: relative; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; background: var(--sage); border-radius: 10px 18px 12px 16px; box-shadow: 2px 7px 15px rgba(0, 0, 0, 0.04), -1px 2px 8px rgba(0, 0, 0, 0.02); }
.about-profile-visual::before { content: ""; position: absolute; right: -18%; bottom: -18%; width: 75%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(243, 241, 236, 0.22) 0%, transparent 68%); }
.about-profile-orbit { position: absolute; top: 10%; left: 10%; width: 78%; aspect-ratio: 1; border: 1px solid rgba(243, 241, 236, 0.24); border-radius: 48% 52% 46% 54%; transform: rotate(-12deg); }
.about-profile-visual img { position: relative; z-index: 1; width: min(92%, 430px); max-height: 550px; object-fit: contain; object-position: bottom center; }
.about-profile-caption { position: absolute; z-index: 2; left: 1.4rem; bottom: 1.35rem; display: flex; flex-direction: column; gap: 0.2rem; color: var(--paper); }
.about-profile-name { font: 500 1.25rem/1.1 var(--serif); }
.about-profile-role { font: 0.68rem/1.2 var(--mono); letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.78; }
.about-profile-copy h2 { max-width: 590px; }
.about-profile-copy > p { max-width: 650px; }
.about-credentials { max-width: none; display: block; margin-top: 1.8rem; padding: 0; }
.about-credentials .eyebrow { margin: 0 0 1rem; white-space: nowrap; }
.about-credentials-copy { max-width: none; display: block; }
.about-credentials-copy p { margin: 0; color: var(--ink-fade); font-size: 1rem; line-height: 1.6; }
.about-credentials-copy p + p { margin-top: 0.9rem; }
.about-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; padding-top: 1.25rem; border-top: 1px solid rgba(31, 30, 29, 0.12); }
.about-profile-copy > .about-facts { margin-top: 2rem; }
.about-fact { display: flex; flex-direction: column; gap: 0.35rem; }
.about-fact > span { color: var(--rust); font: 0.7rem/1.2 var(--mono); letter-spacing: 0.12em; }
.about-fact strong { font: 500 0.9rem/1.25 var(--sans); }
.about-fact small { color: var(--ink-fade); font-size: 0.78rem; line-height: 1.4; }
.about-section-heading { max-width: 760px; margin-bottom: 2rem; }
.about-section-heading p { max-width: 650px; }
.about-process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.about-process-card,
.about-audience-card { min-height: 210px; padding: 1.7rem; position: relative; overflow: hidden; border: 1px solid rgba(31, 30, 29, 0.08); border-radius: 10px; background: #fff; box-shadow: 2px 7px 15px rgba(0, 0, 0, 0.03), -1px 2px 8px rgba(0, 0, 0, 0.02); transition: transform 0.5s var(--organic-ease), box-shadow 0.5s var(--organic-ease); }
.about-process-card::before,
.about-audience-card::before { content: ""; position: absolute; right: -50%; bottom: -50%; width: 200px; height: 200px; background: radial-gradient(circle, var(--sage) 0%, transparent 70%); opacity: 0; transform: translate(30%, 30%) scale(0.5); transition: opacity 0.4s ease, transform 0.6s var(--organic-ease); pointer-events: none; mix-blend-mode: multiply; }
.about-process-card:hover,
.about-audience-card:hover { transform: translateY(-5px); box-shadow: 4px 15px 30px rgba(0, 0, 0, 0.06), -2px 5px 12px rgba(0, 0, 0, 0.03); }
.about-process-card:hover::before,
.about-audience-card:hover::before { opacity: 0.1; transform: translate(0, 0) scale(1); }
.about-process-card > *,
.about-audience-card > * { position: relative; z-index: 1; }
.about-card-number { display: block; color: var(--sage); font: 0.7rem/1.2 var(--mono); letter-spacing: 0.12em; }
.about-process-card h3,
.about-audience-card h3 { margin: 2.6rem 0 0.8rem; font: 500 1.2rem/1.15 var(--sans); }
.about-process-card p,
.about-audience-card p { margin: 0; color: #555856; font-size: 0.9rem; line-height: 1.5; }
.about-process-card--sage,
.about-audience-card--sage { background: var(--sage); color: var(--paper); }
.about-process-card--sage .about-card-number,
.about-process-card--sage p,
.about-audience-card--sage p { color: rgba(243, 241, 236, 0.9); }
.about-process-card--sage h3,
.about-audience-card--sage h3 { color: var(--paper); }
.about-process-card--burnt,
.about-audience-card--burnt { background: var(--paper-burnt); }
.about-audience-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.about-audience-card { min-height: 230px; }
.about-audience-card img { width: 32px; height: 32px; margin-bottom: 1.5rem; filter: invert(32%) sepia(3%) saturate(2311%) hue-rotate(307deg) brightness(94%) contrast(85%); transition: transform 0.4s var(--bounce-ease); }
.about-audience-card:hover img { transform: scale(1.1) rotate(5deg); }
.about-audience-card--sage img { filter: brightness(0) invert(1); }

.contact-section-heading { max-width: 760px; margin-bottom: 2rem; }
.contact-section-heading p { max-width: 650px; }
.contact-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.contact-card { min-height: 290px; position: relative; display: flex; flex-direction: column; overflow: hidden; padding: 1.7rem; border: 1px solid rgba(31, 30, 29, 0.08); border-radius: 10px; background: #fff; color: var(--ink); text-decoration: none; box-shadow: 2px 7px 15px rgba(0, 0, 0, 0.03), -1px 2px 8px rgba(0, 0, 0, 0.02); transition: transform 0.5s var(--organic-ease), box-shadow 0.5s var(--organic-ease); }
.contact-card::before { content: ""; position: absolute; right: -50%; bottom: -50%; width: 200px; height: 200px; background: radial-gradient(circle, var(--sage) 0%, transparent 70%); opacity: 0; transform: translate(30%, 30%) scale(0.5); transition: opacity 0.4s ease, transform 0.6s var(--organic-ease); pointer-events: none; mix-blend-mode: multiply; }
.contact-card:hover { transform: translateY(-5px); box-shadow: 4px 15px 30px rgba(0, 0, 0, 0.06), -2px 5px 12px rgba(0, 0, 0, 0.03); }
.contact-card:hover::before { opacity: 0.1; transform: translate(0, 0) scale(1); }
.contact-card > * { position: relative; z-index: 1; }
.contact-card img { width: 32px; height: 32px; margin-bottom: 1.4rem; filter: invert(32%) sepia(3%) saturate(2311%) hue-rotate(307deg) brightness(94%) contrast(85%); transition: transform 0.4s var(--bounce-ease); }
.contact-card:hover img { transform: scale(1.1) rotate(5deg); }
.contact-card-label { color: var(--sage); font: 0.68rem/1.2 var(--mono); letter-spacing: 0.14em; text-transform: uppercase; }
.contact-card h3 { margin: 0.75rem 0 0.7rem; font: 500 clamp(1rem, 1.45vw, 1.25rem)/1.15 var(--sans); overflow-wrap: anywhere; }
.contact-card p { max-width: none; margin: 0; color: #555856; font-size: 0.9rem; line-height: 1.5; }
.contact-card-action { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; padding-top: 1.25rem; border-top: 1px solid rgba(31, 30, 29, 0.12); color: var(--sage); font: 0.7rem/1.2 var(--mono); letter-spacing: 0.05em; }
.contact-card-action > span { font-size: 1.25rem; line-height: 1; transition: transform 180ms ease; }
.contact-card:hover .contact-card-action > span { transform: translate(3px, -3px); }
.contact-card--sage { background: var(--sage); color: var(--paper); }
.contact-card--sage .contact-card-label,
.contact-card--sage .contact-card-action { color: var(--paper); }
.contact-card--sage h3 { color: var(--paper); }
.contact-card--sage p { color: rgba(243, 241, 236, 0.9); }
.contact-card--sage img { filter: brightness(0) invert(1); }
.contact-card--sage .contact-card-action { border-color: rgba(243, 241, 236, 0.24); }
.contact-card--burnt { background: var(--paper-burnt); }
.contact-location-grid { display: grid; grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr); gap: 1rem; align-items: stretch; padding: 1rem; background: var(--paper-burnt); border-radius: 16px; }
.contact-location-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 1.5rem; }
.contact-location-copy h2 { max-width: 420px; }
.contact-location-copy > p { max-width: 440px; font-size: 0.95rem; }
.contact-address { display: flex; flex-direction: column; gap: 0.25rem; margin-top: 1.4rem; color: var(--ink-fade); font-size: 0.9rem; line-height: 1.45; }
.contact-address strong { color: var(--ink); font-weight: 500; }
.contact-location-copy .button { margin-top: 1.6rem; }
.contact-map-wrap { min-width: 0; display: flex; flex-direction: column; }
.contact-map-wrap .map-frame { flex: 1; min-height: 360px; }
.contact-map-wrap .map-attribution { margin: 0.8rem 0.2rem 0; }
.contact-message-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 4rem; align-items: start; }
.contact-message-grid > div > p { max-width: 470px; }
.contact-message-points { border-top: 1px solid rgba(31, 30, 29, 0.12); }
.contact-message-point { display: grid; grid-template-columns: 2.4rem minmax(0, 1fr); gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(31, 30, 29, 0.12); }
.contact-message-point > span { color: var(--rust); font: 0.7rem/1.2 var(--mono); letter-spacing: 0.12em; }
.contact-message-point strong { font: 500 0.95rem/1.2 var(--sans); }
.contact-message-point p { margin: 0.4rem 0 0; font-size: 0.88rem; line-height: 1.45; }

@keyframes service-expand {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 4rem;
    align-items: start;
}

.detail-list { margin: 1.5rem 0 0; padding-left: 1.25rem; color: var(--ink-fade); }
.detail-list li + li { margin-top: 0.7rem; }
.note { padding: 1rem 1.2rem; border-left: 3px solid var(--rust); background: rgba(255,255,255,0.48); }
.location-card { display: grid; grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr); gap: 2rem; align-items: stretch; padding: 1rem; background: var(--paper-burnt); border-radius: 16px; }
.location-copy { display: flex; flex-direction: column; justify-content: center; padding: 1.2rem; }
.location-copy h2 { margin-top: 0.2rem; }
.location-copy p { font-size: 0.95rem; }
.map-frame { min-height: 320px; width: 100%; border: 0; border-radius: 10px; filter: grayscale(0.8) sepia(0.12) contrast(0.94); }
.map-attribution { margin-top: 0.8rem; font-size: 0.72rem !important; }
.cta-panel { padding: 2.4rem; background: #fff; color: var(--ink); border: 1px solid rgba(31, 30, 29, 0.08); border-radius: 10px; }
.cta-panel p { color: var(--ink-fade); }
.cta-panel .button { min-height: 52px; margin-top: 1.6rem; padding: 0.85rem 1.55rem; font-size: 0.84rem; box-shadow: 0 5px 14px rgba(31,30,29,0.08); }

.site-footer { width: min(1160px, 90vw); margin: 0 auto 2rem; padding: 2.4rem 2.8rem 1.4rem; background: var(--sage); color: var(--paper); border-radius: 18px; }
.site-footer > .page-container { width: 100%; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; gap: 2rem; }
.site-footer h2 { margin: 0; font-size: 1.2rem; }
.site-footer p, .site-footer li { color: rgba(243,241,236,0.82); font-size: 0.9rem; }
.site-footer ul { list-style: none; margin: 1rem 0 0; padding: 0; }
.site-footer li + li { margin-top: 0.45rem; }
.site-footer a { display: inline-block; color: var(--paper); text-decoration: none; transition: color 180ms ease, transform 180ms ease; }
.site-footer a:hover { color: var(--rust); transform: translateX(5px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; padding-top: 1rem; border-top: 1px solid rgba(243,241,236,0.18); color: rgba(243,241,236,0.65); font: 0.75rem/1.4 var(--mono); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-legal a { color: inherit; text-decoration: none; }
.footer-legal a:hover { color: var(--paper); transform: none; }

@media (max-width: 900px) {
    .main-nav a:not(.button) { display: none; }
    .about-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .header-inner { position: relative; }
    .menu-toggle { display: inline-flex; }
    .main-nav { position: absolute; top: calc(100% + 0.65rem); right: 0; z-index: 20; display: none; flex-direction: column; align-items: stretch; gap: 0.15rem; width: min(320px, calc(100vw - 2rem)); padding: 0.65rem; border: 1px solid rgba(31, 30, 29, 0.1); border-radius: 14px; background: rgba(243, 241, 236, 0.98); box-shadow: 0 14px 30px rgba(31, 30, 29, 0.12); }
    .main-nav.is-open { display: flex; }
    .main-nav a:not(.button) { display: block; padding: 0.72rem 0.8rem; font-size: 0.9rem; }
    .main-nav .button { width: 100%; margin-top: 0.25rem; }
}

@media (max-width: 760px) {
    .header-inner { min-height: 70px; }
    .brand, .brand span { font-size: 1.1rem; }
    .page-hero { padding: 4.5rem 0 2.2rem; }
    .page-hero--about { padding: 3.3rem 0 2.2rem; }
    .page-section { padding: 3.5rem 0; }
    .page-hero + .page-section { padding-top: 1.4rem; }
    .page-section--profile { padding-bottom: 0; }
    .page-section--audience { padding-bottom: 0; }
    .page-section--services,
    .page-section--contact-options,
    .page-section--tint { padding-bottom: 0; }
    .page-section--tint > .page-container { padding: 1.5rem; border-radius: 14px; }
    .service-grid, .detail-grid, .footer-grid { grid-template-columns: 1fr; }
    .detail-grid { gap: 2rem; }
    .about-profile-grid { grid-template-columns: 1fr; gap: 2.8rem; }
    .about-profile-visual { min-height: 430px; }
    .about-credentials { margin-top: 2rem; }
    .about-facts { grid-template-columns: 1fr; gap: 1.1rem; }
    .about-process-grid, .about-audience-grid { grid-template-columns: 1fr; }
    .contact-card-grid, .contact-location-grid, .contact-message-grid { grid-template-columns: 1fr; }
    .contact-card { min-height: 250px; }
    .contact-location-copy { padding: 1rem 0.5rem 1.4rem; }
    .contact-map-wrap .map-frame { min-height: 260px; }
    .location-card { grid-template-columns: 1fr; padding: 0.7rem; }
    .location-copy { padding: 1rem 0.5rem 0.5rem; }
    .map-frame { min-height: 260px; }
    .cta-panel { padding: 2rem 1.5rem; }
    .site-footer { width: min(1160px, 90vw); margin-bottom: 1rem; padding: 2rem 1.3rem 1.2rem; border-radius: 14px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
