:root {
    --ink: #15181d;
    --ink-soft: #3f4652;
    --muted: #66707f;
    --line: #dde2e8;
    --paper: #fbfaf7;
    --white: #ffffff;
    --charcoal: #20252b;
    --steel: #566575;
    --rust: #b9572b;
    --gold: #d89b37;
    --green: #637b54;
    --shadow: 0 22px 60px rgba(21, 24, 29, 0.14);
    --radius: 8px;
    --container: min(1120px, calc(100% - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

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

p,
h1,
h2,
h3,
dl,
dd {
    margin: 0;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.section-pad {
    padding: 92px 0;
}

.skip-link,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    width: auto;
    height: auto;
    top: 16px;
    left: 16px;
    padding: 10px 14px;
    clip: auto;
    color: var(--white);
    background: var(--ink);
    z-index: 100;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    padding: 14px 0;
}

.nav-shell {
    width: var(--container);
    min-height: 68px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 12px 10px 16px;
    color: var(--white);
    background: rgba(21, 24, 29, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    flex: 0 0 auto;
    color: var(--ink);
    background: var(--gold);
    border-radius: 6px;
    font-weight: 800;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 1rem;
    line-height: 1.1;
}

.brand small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.74rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.82);
    border-radius: 6px;
    font-size: 0.92rem;
    font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-links .nav-call {
    color: var(--ink);
    background: var(--gold);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
}

.hero {
    position: relative;
    display: grid;
    min-height: 760px;
    isolation: isolate;
    color: var(--white);
    overflow: hidden;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-media {
    background-image: url("../img/header.jpg");
    background-position: center;
    background-size: cover;
}

.hero-overlay {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(10, 12, 14, 0.9) 0%, rgba(10, 12, 14, 0.7) 46%, rgba(10, 12, 14, 0.22) 100%),
        linear-gradient(180deg, rgba(10, 12, 14, 0.2) 0%, rgba(10, 12, 14, 0.9) 100%);
}

.hero-content {
    width: var(--container);
    align-self: end;
    margin: 0 auto;
    padding: 190px 0 72px;
}

.eyebrow {
    color: var(--rust);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: var(--gold);
}

h1,
h2,
h3 {
    line-height: 1.05;
    letter-spacing: 0;
}

h1 {
    max-width: 820px;
    margin-top: 16px;
    font-size: 6.4rem;
    font-weight: 800;
}

h2 {
    font-size: 3.75rem;
    font-weight: 800;
}

h3 {
    font-size: 1.22rem;
    font-weight: 800;
}

.hero-copy {
    max-width: 660px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.18rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 800;
}

.button-primary {
    color: var(--ink);
    background: var(--gold);
}

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

.button-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 840px;
    margin-top: 70px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stats div {
    min-height: 118px;
    padding: 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stats dt {
    font-size: 1.28rem;
    font-weight: 800;
}

.hero-stats dd {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.intro {
    background: var(--white);
}

.intro-grid,
.proof-grid,
.resource-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 56px;
    align-items: start;
}

.intro-copy {
    display: grid;
    gap: 18px;
    color: var(--ink-soft);
    font-size: 1.08rem;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-heading h2,
.intro-grid h2,
.proof-panel h2,
.resource-grid h2,
.contact-copy h2 {
    margin-top: 10px;
}

.section-heading p:last-child {
    max-width: 650px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 1.05rem;
}

.services {
    background: #f1f0eb;
}

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

.service-card {
    min-height: 270px;
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.service-card h3 {
    margin-top: 42px;
}

.service-card p {
    margin-top: 14px;
    color: var(--muted);
}

.service-index {
    color: var(--rust);
    font-weight: 800;
}

.proof {
    color: var(--white);
    background: var(--charcoal);
}

.proof .eyebrow {
    color: var(--gold);
}

.proof-panel p {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.72);
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    padding: 18px 18px 18px 48px;
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-weight: 700;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 24px;
    width: 14px;
    height: 8px;
    border-left: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
    transform: rotate(-45deg);
}

.work {
    background: var(--white);
}

.split-heading {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
    gap: 40px;
    align-items: end;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 250px;
    gap: 14px;
}

.gallery-card {
    position: relative;
    min-height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--ink);
}

.gallery-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
    transform: scale(1.04);
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.74) 100%);
}

.gallery-card span {
    position: absolute;
    z-index: 1;
    left: 18px;
    right: 18px;
    bottom: 18px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
}

.gallery-card small {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.gallery-card em {
    display: block;
    max-width: 520px;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.88rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.45;
}

.gallery-link-row {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.gallery-hero {
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(21, 24, 29, 0.9), rgba(21, 24, 29, 0.64)),
        url("../img/fullsize/1.jpg") center / cover;
}

.gallery-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: 54px;
    align-items: end;
}

.gallery-hero h1 {
    max-width: 850px;
    font-size: 5.6rem;
}

.gallery-hero-copy {
    max-width: 660px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.12rem;
}

.gallery-note {
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
}

.gallery-note strong,
.gallery-note span {
    display: block;
}

.gallery-note strong {
    font-size: 1.35rem;
}

.gallery-note span {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.74);
}

.gallery-list {
    grid-auto-rows: 310px;
}

.gallery-list-card span {
    display: block;
}

.image-viewer {
    width: min(1100px, calc(100% - 32px));
    max-height: calc(100vh - 32px);
    padding: 0;
    color: var(--white);
    background: #101216;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.image-viewer::backdrop {
    background: rgba(8, 10, 12, 0.82);
    backdrop-filter: blur(6px);
}

.image-viewer img {
    width: 100%;
    max-height: calc(100vh - 120px);
    object-fit: contain;
    background: #050607;
}

.image-viewer p {
    padding: 16px 22px;
    font-weight: 800;
}

.image-viewer-close {
    position: absolute;
    top: 14px;
    right: 14px;
    min-height: 42px;
    padding: 10px 14px;
    color: var(--ink);
    background: var(--gold);
    border: 0;
    border-radius: 6px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.process {
    background: #ece8df;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.timeline article {
    min-height: 320px;
    padding: 26px;
    background: var(--paper);
}

.timeline span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
    font-weight: 800;
}

.timeline h3 {
    margin-top: 56px;
}

.timeline p {
    margin-top: 14px;
    color: var(--muted);
}

.resources {
    background: var(--white);
}

.local-seo {
    background: #f1f0eb;
}

.local-seo-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 56px;
    align-items: start;
}

.local-seo-copy {
    display: grid;
    gap: 18px;
    color: var(--ink-soft);
    font-size: 1.06rem;
}

.resource-grid p {
    margin-top: 16px;
    color: var(--muted);
}

.resource-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.resource-links a {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-weight: 800;
}

.resource-links a:hover,
.resource-links a:focus-visible {
    color: var(--white);
    background: var(--charcoal);
    border-color: var(--charcoal);
}

.contact {
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(21, 24, 29, 0.92), rgba(21, 24, 29, 0.78)),
        url("../img/fullsize/3.jpg") center / cover;
}

.contact .eyebrow {
    color: var(--gold);
}

.contact-copy p {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.08rem;
}

.contact-card {
    padding: 28px;
    background: var(--white);
    color: var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-line {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft);
    font-weight: 800;
}

.contact-line.primary {
    color: var(--rust);
    font-size: 1.8rem;
}

address {
    margin: 24px 0 0;
    color: var(--ink-soft);
    font-style: normal;
}

.license {
    margin-top: 20px;
    color: var(--muted);
    font-size: 0.92rem;
}

.site-footer {
    padding: 26px 0;
    color: rgba(255, 255, 255, 0.72);
    background: #101216;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-inner a {
    color: var(--white);
    font-weight: 800;
}

.subpage .site-header {
    position: sticky;
    background: #101216;
}

.subpage .nav-shell {
    background: #15181d;
}

.resource-hero {
    padding: 86px 0 72px;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(21, 24, 29, 0.88), rgba(21, 24, 29, 0.52)),
        var(--hero-image) center / cover;
}

.resource-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.52fr);
    gap: 54px;
    align-items: end;
}

.resource-hero h1 {
    max-width: 780px;
    font-size: 5.4rem;
}

.resource-hero-copy {
    margin-top: 22px;
    max-width: 660px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.12rem;
}

.resource-summary {
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
}

.resource-summary h2 {
    font-size: 1.35rem;
}

.resource-summary ul {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.78);
    list-style: none;
}

.resource-summary li {
    padding-left: 18px;
    position: relative;
}

.resource-summary li::before {
    content: "";
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.planning {
    background: var(--paper);
}

.faq-section {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 56px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-list article {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}

.faq-list h3 {
    font-size: 1.1rem;
}

.faq-list p {
    margin-top: 10px;
    color: var(--muted);
}

.planning-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.planning-card {
    min-height: 260px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.planning-card h2 {
    margin-top: 34px;
    font-size: 1.34rem;
    line-height: 1.18;
}

.planning-card p {
    margin-top: 12px;
    color: var(--muted);
}

.planning-card ul {
    display: grid;
    gap: 7px;
    margin: 18px 0 0;
    padding-left: 18px;
    color: var(--ink-soft);
}

.planning-number {
    color: var(--rust);
    font-weight: 800;
}

.resource-cta {
    color: var(--white);
    background: var(--charcoal);
}

.resource-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    align-items: center;
}

.resource-cta h2 {
    max-width: 800px;
    font-size: 3rem;
}

.resource-cta p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.72);
}

.page-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.page-links a {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
}

.page-links a[aria-current="page"] {
    color: var(--ink);
    background: var(--gold);
    border-color: var(--gold);
}

.compact-contact {
    background: var(--white);
}

.compact-contact .contact-card {
    box-shadow: none;
    border: 1px solid var(--line);
}

.admin-page {
    background: #f1f0eb;
}

.auth-locked [data-admin-protected],
.auth-locked .site-footer {
    display: none;
}

.auth-unlocked [data-admin-login] {
    display: none;
}

.admin-login {
    min-height: calc(100vh - 98px);
    display: grid;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(21, 24, 29, 0.9), rgba(21, 24, 29, 0.68)),
        url("../img/fullsize/3.jpg") center / cover;
}

.admin-login-card {
    width: min(520px, var(--container));
    margin-inline: auto;
    padding: 30px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.admin-login-card h1 {
    margin-top: 8px;
    font-size: 2.8rem;
}

.admin-login-card p {
    margin-top: 12px;
    color: var(--muted);
}

.admin-login-card label {
    display: grid;
    gap: 7px;
    margin-top: 18px;
    color: var(--ink-soft);
    font-weight: 800;
}

.admin-login-card input {
    width: 100%;
    padding: 12px;
    color: var(--ink);
    background: #f7f6f1;
    border: 1px solid var(--line);
    border-radius: 6px;
    font: inherit;
}

.admin-login-card .button {
    width: 100%;
    margin-top: 22px;
}

.admin-hero {
    color: var(--white);
    background: var(--charcoal);
}

.admin-hero h1 {
    font-size: 4.8rem;
}

.admin-hero p:last-child {
    max-width: 760px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.72);
}

.admin-signout {
    min-height: 44px;
    margin-top: 26px;
    padding: 10px 16px;
    color: var(--ink);
    background: var(--gold);
    border: 0;
    border-radius: 6px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.admin-workspace {
    background: #f1f0eb;
}

.admin-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.admin-form,
.admin-panel {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.admin-form {
    position: sticky;
    top: 100px;
}

.admin-form-heading h2 {
    margin-top: 8px;
    font-size: 1.8rem;
}

.admin-form label {
    display: grid;
    gap: 7px;
    margin-top: 16px;
    color: var(--ink-soft);
    font-weight: 800;
}

.admin-form input,
.admin-form textarea {
    width: 100%;
    padding: 12px;
    color: var(--ink);
    background: #f7f6f1;
    border: 1px solid var(--line);
    border-radius: 6px;
    font: inherit;
}

.admin-upload {
    margin-top: 16px;
    padding: 16px;
    background: #f7f6f1;
    border: 1px dashed #c5ccd4;
    border-radius: var(--radius);
}

.admin-upload label {
    margin-top: 0;
}

.admin-upload input {
    background: var(--white);
}

.admin-upload-preview {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin-top: 14px;
}

.admin-upload-preview[hidden] {
    display: none;
}

.admin-upload-preview img {
    width: 96px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 6px;
}

.admin-upload-preview span {
    color: var(--muted);
    font-size: 0.9rem;
}

.admin-paths {
    margin-top: 16px;
    padding: 14px 16px;
    background: #f7f6f1;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.admin-paths summary {
    color: var(--ink);
    font-weight: 800;
    cursor: pointer;
}

.admin-paths label {
    margin-top: 14px;
}

.admin-actions,
.admin-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.admin-actions .button-secondary {
    color: var(--ink);
    border-color: var(--line);
    background: #f7f6f1;
}

.admin-toolbar {
    margin-top: 0;
}

.admin-toolbar button,
.admin-import {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    color: var(--ink);
    background: #f7f6f1;
    border: 1px solid var(--line);
    border-radius: 6px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.admin-import input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.admin-status {
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.92rem;
}

.admin-help {
    display: grid;
    gap: 4px;
    margin: 18px 0;
    padding: 16px;
    color: var(--white);
    background: var(--charcoal);
    border-radius: 6px;
}

.admin-help span {
    color: rgba(255, 255, 255, 0.72);
}

.admin-gallery-list {
    display: grid;
    gap: 12px;
}

.admin-gallery-row {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.admin-gallery-row img {
    width: 132px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 6px;
}

.admin-gallery-row strong,
.admin-gallery-row span,
.admin-gallery-row p {
    display: block;
}

.admin-gallery-row span {
    margin-top: 3px;
    color: var(--rust);
    font-size: 0.86rem;
    font-weight: 800;
}

.admin-gallery-row p {
    margin-top: 6px;
    color: var(--muted);
}

.admin-row-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-row-actions button {
    min-width: 86px;
    padding: 9px 12px;
    color: var(--ink);
    background: #f7f6f1;
    border: 1px solid var(--line);
    border-radius: 6px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 940px) {
    .site-header {
        padding: 10px 0;
    }

    .nav-shell {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding-top: 10px;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        padding: 13px 12px;
    }

    .hero {
        min-height: 720px;
    }

    h1 {
        font-size: 4.8rem;
    }

    h2 {
        font-size: 3rem;
    }

    .hero-stats,
    .intro-grid,
    .local-seo-grid,
    .faq-grid,
    .proof-grid,
    .resource-grid,
    .contact-grid,
    .split-heading {
        grid-template-columns: 1fr;
    }

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

    .gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 220px;
    }

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

    .resource-hero-grid,
    .gallery-hero-grid,
    .resource-cta-grid {
        grid-template-columns: 1fr;
    }

    .resource-hero h1,
    .gallery-hero h1,
    .admin-hero h1 {
        font-size: 4.5rem;
    }

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

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

    .admin-form {
        position: static;
    }
}

@media (max-width: 640px) {
    :root {
        --container: min(100% - 28px, 1120px);
    }

    body {
        overflow-x: hidden;
    }

    .section-pad {
        padding: 68px 0;
    }

    .brand small {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 148px 14px 44px;
    }

    h1 {
        font-size: 2.88rem;
        line-height: 1.14;
        overflow-wrap: break-word;
    }

    h2 {
        font-size: 2.35rem;
        line-height: 1.12;
    }

    .hero-copy {
        font-size: 1rem;
        overflow-wrap: break-word;
    }

    .button {
        width: 100%;
    }

    .hero-stats,
    .service-grid,
    .gallery,
    .timeline,
    .resource-links {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        margin-top: 42px;
    }

    .gallery {
        grid-auto-rows: 240px;
    }

    .gallery-link-row .button {
        width: 100%;
    }

    .contact-line {
        overflow-wrap: anywhere;
    }

    .gallery-card.large {
        grid-column: auto;
        grid-row: auto;
    }

    .timeline article {
        min-height: auto;
    }

    .timeline h3 {
        margin-top: 34px;
    }

    .footer-inner {
        flex-direction: column;
    }

    .resource-hero {
        padding: 58px 0 56px;
    }

    .resource-hero h1,
    .gallery-hero h1,
    .admin-hero h1 {
        font-size: 3rem;
        line-height: 1.08;
    }

    .resource-hero-copy {
        font-size: 1rem;
    }

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

    .planning-card {
        min-height: auto;
    }

    .resource-cta h2 {
        font-size: 2.25rem;
    }

    .admin-gallery-row {
        grid-template-columns: 1fr;
    }

    .admin-gallery-row img {
        width: 100%;
    }

    .admin-upload-preview {
        grid-template-columns: 1fr;
    }

    .admin-upload-preview img {
        width: 100%;
    }

    .admin-row-actions {
        flex-direction: row;
    }
}
