*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --ink: #222322;
    --ink-soft: #d8d5cb;
    --paper: #222322;
    --paper-deep: #292a28;
    --cream: #30312f;
    --gold: #e7b84a;
    --line: rgba(255, 255, 255, 0.16);
    --shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
    --radius: 6px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #fff;
    background: var(--ink);
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

body::before {
    content: none;
}

body::after {
    content: none;
}

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

a {
    color: inherit;
}

p {
    margin: 0 0 1rem;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--ink);
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    max-width: 14ch;
    font-size: clamp(2.25rem, 5.4vw, 4.1rem);
    font-weight: 950;
    line-height: 1.02;
    text-wrap: balance;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 950;
}

h3 {
    font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 20;
    transform: translateY(-150%);
    padding: 0.7rem 1rem;
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius);
}

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

.container {
    width: min(100% - 2.5rem, 1180px);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--ink);
    color: #fff;
    box-shadow: none;
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: #fff;
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 950;
    letter-spacing: 0;
    text-decoration: none;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.08rem 0.5rem 0.14rem;
    border: 3px solid #fff;
    border-radius: var(--radius);
    background: transparent;
    box-shadow: none;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 0.95rem;
    border: 2px solid transparent;
    border-radius: var(--radius);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
    box-shadow: none;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 2px solid #fff;
    border-radius: var(--radius);
    background: transparent;
    cursor: pointer;
}

.nav-toggle-bar {
    display: block;
    width: 19px;
    height: 2px;
    margin: 3px auto;
    border-radius: 4px;
    background: #fffaf0;
}

.hero,
.page-hero {
    position: relative;
    overflow: hidden;
}

.hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    left: max(1rem, calc((100vw - 1180px) / 2));
    bottom: 0;
    width: min(42vw, 420px);
    height: 10px;
    border: 2px solid var(--ink);
    border-bottom: 0;
    background: var(--gold);
}

.hero {
    padding: clamp(1.5rem, 2.8vw, 2.75rem) 0 clamp(1.6rem, 3vw, 3rem);
    background: var(--ink);
    color: #fff;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
    gap: clamp(1.5rem, 3.5vw, 3.6rem);
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 1.1rem;
    padding: 0.35rem 0.7rem;
    border: 0;
    border-radius: var(--radius);
    background: var(--gold);
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0;
}

.lead {
    max-width: 42rem;
    margin-top: 1rem;
    color: var(--ink-soft);
    font-size: clamp(1.06rem, 2vw, 1.25rem);
}

.hero h2,
.hero h3 {
    color: #fff;
}

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

.hero .lead {
    color: rgba(255, 255, 255, 0.9);
}

.hero-services,
.hero-info-list {
    margin: 1rem 0 0;
}

.hero-services {
    display: inline-block;
    max-width: 42rem;
    padding-left: 0.9rem;
    border-left: 0;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 750;
}

.hero-info-list {
    display: grid;
    gap: 0.65rem;
    padding: 0;
    list-style: none;
}

.hero-info-list li {
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: var(--cream);
    color: var(--ink);
    box-shadow: none;
    font-weight: 850;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: stretch;
}

.hero-info-card {
    position: relative;
    align-self: start;
    padding: 1.25rem;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: var(--cream);
    box-shadow: var(--shadow);
}

.hero-info-card::before {
    content: "";
    position: absolute;
    right: 1rem;
    top: -0.55rem;
    width: 68px;
    height: 28px;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: var(--gold);
    transform: rotate(2deg);
}

.hero-info-card h2 {
    font-size: 1.2rem;
}

.hero-info-list li {
    padding: 0.65rem 0.75rem;
    background: var(--cream);
}

.hero-actions,
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.35rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.76rem 1.12rem;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    box-shadow: none;
    font-weight: 850;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

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

.btn-secondary {
    background: transparent;
    color: var(--ink);
}

.hero .btn-secondary {
    border-color: #fff;
    color: #fff;
}

.hero-visual {
    position: relative;
    min-height: 0;
}

.sketch-board {
    position: relative;
    display: grid;
    min-height: 0;
    aspect-ratio: 4 / 3;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: var(--cream);
    box-shadow: none;
    transform: none;
}

.sketch-board::before {
    content: "";
    position: absolute;
    inset: 1.1rem;
    border: 2px dashed rgba(31, 31, 27, 0.42);
    border-radius: var(--radius);
}

.sketch-board::after {
    content: none;
}

.placeholder-label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    max-width: min(80%, 28rem);
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: var(--gold);
    color: var(--ink);
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    font-weight: 900;
    line-height: 1.35;
    text-align: center;
    text-transform: uppercase;
}

.sketch-logo {
    position: absolute;
    top: 1.8rem;
    left: 1.9rem;
    width: 122px;
}

.sketch-line {
    position: absolute;
    height: 11px;
    border-radius: var(--radius);
    background: var(--ink);
    opacity: 1;
}

.sketch-line.one {
    top: 7.6rem;
    left: 1.9rem;
    width: 58%;
}

.sketch-line.two {
    top: 9.25rem;
    left: 1.9rem;
    width: 38%;
    background: var(--gold);
}

.sketch-line.three {
    right: 2.2rem;
    bottom: 6.1rem;
    width: 35%;
    background: var(--ink);
}

.sketch-bubble {
    position: absolute;
    display: grid;
    place-items: center;
    width: 112px;
    height: 76px;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: var(--cream);
    font-weight: 900;
    text-align: center;
    transform: rotate(-4deg);
}

.sketch-bubble.left {
    left: 2.1rem;
    bottom: 4.4rem;
}

.sketch-bubble.right {
    right: 2.6rem;
    top: 8.2rem;
    background: var(--gold);
    transform: rotate(5deg);
}

.sketch-arrow {
    position: absolute;
    left: 10.2rem;
    bottom: 7.6rem;
    width: 30%;
    height: 2px;
    background: var(--ink);
    transform: rotate(-12deg);
}

.sketch-arrow::after {
    content: "";
    position: absolute;
    right: -3px;
    top: -6px;
    width: 13px;
    height: 13px;
    border-top: 2px solid var(--ink);
    border-right: 2px solid var(--ink);
    transform: rotate(45deg);
}

.section {
    padding: clamp(2.4rem, 5vw, 4.4rem) 0;
    background: var(--ink);
    color: #fff;
}

.section.alt-bg,
.page-section.alt-bg {
    background: var(--ink);
    border-block: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.section h2,
.section h3,
.page-section h2,
.page-section h3 {
    color: #fff;
}

.section.alt-bg h2,
.section.alt-bg h3,
.page-section.alt-bg h2,
.page-section.alt-bg h3 {
    color: #fff;
}

.section.alt-bg .section-header p,
.page-section.alt-bg .section-header p,
.page-section.alt-bg .service-copy p,
.page-section.alt-bg .service-copy li,
.page-section.alt-bg.section-centered p {
    color: rgba(255, 255, 255, 0.82);
}

.section.alt-bg .text-panel,
.page-section.alt-bg .text-panel,
.page-section.alt-bg .service-aside {
    color: var(--ink);
}

.section.alt-bg .text-panel h2,
.section.alt-bg .text-panel h3,
.page-section.alt-bg .text-panel h2,
.page-section.alt-bg .text-panel h3,
.page-section.alt-bg .service-aside h3 {
    color: var(--ink);
}

.section.alt-bg .text-panel p,
.page-section.alt-bg .text-panel p,
.page-section.alt-bg .service-aside p,
.page-section.alt-bg .service-aside li {
    color: var(--ink-soft);
}

.section.alt-bg .btn-secondary,
.page-section.alt-bg .btn-secondary {
    border-color: #fff;
    color: #fff;
}

.section.alt-bg .btn-secondary:hover,
.page-section.alt-bg .btn-secondary:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--ink);
}

.section-header {
    max-width: 740px;
    margin-bottom: 1.4rem;
}

.section-header p {
    margin-top: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

.two-column,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: start;
}

.text-panel,
.service-aside,
.contact-form-wrapper,
.contact-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: var(--cream);
    color: var(--ink);
    box-shadow: var(--shadow);
    min-width: 0;
}

.text-panel h2,
.text-panel h3,
.service-aside h3,
.contact-card h2,
.contact-form-wrapper h2 {
    color: var(--ink);
}

.text-panel p,
.service-aside p,
.service-aside li,
.contact-card p,
.contact-form-wrapper p {
    color: var(--ink-soft);
}

.text-panel {
    padding: clamp(1.4rem, 4vw, 2.4rem);
}

.text-panel h3 + p,
.service-copy h3 + p {
    margin-top: 0.65rem;
}

.text-panel h3,
.service-copy h3 {
    margin-top: 1.7rem;
}

.text-panel h3:first-child,
.service-copy h3:first-child {
    margin-top: 0;
}

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

.card {
    position: relative;
    overflow: hidden;
    min-height: 255px;
    padding: 1.45rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: var(--cream);
    color: var(--ink);
    box-shadow: var(--shadow);
    transition: transform 160ms ease, box-shadow 160ms ease;
    min-width: 0;
}

.card:hover,
.portfolio-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(34, 35, 34, 0.12);
}

.card::after,
.text-panel::after {
    content: "";
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 54px;
    height: 8px;
    border-radius: var(--radius);
    background: var(--gold);
    box-shadow: -18px -14px 0 var(--ink);
}

.text-panel {
    position: relative;
    overflow: hidden;
}

.card::before {
    content: attr(data-number);
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1.2rem;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: var(--gold);
    font-weight: 900;
}

.card:nth-child(2)::before {
    background: var(--cream);
}

.card:nth-child(3)::before {
    background: var(--gold);
}

.card p {
    color: var(--ink-soft);
}

.card h3 {
    color: var(--ink);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--ink);
    font-weight: 850;
    text-decoration: none;
}

.text-link::after {
    content: "->";
    color: var(--gold);
}

.text-link:hover {
    color: var(--ink);
}

.page-main {
    min-height: 70vh;
}

.page-hero {
    padding: clamp(2.6rem, 5vw, 4.8rem) 0;
    background: var(--ink);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
}

.page-hero h1,
.page-hero h2,
.page-hero h3 {
    color: #fff;
}

.page-hero p {
    max-width: 58rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1.06rem, 2vw, 1.24rem);
}

.page-section {
    padding: clamp(2.5rem, 5vw, 4.6rem) 0;
}

.service-copy {
    max-width: 760px;
}

.service-aside {
    position: sticky;
    top: 98px;
    padding: 1.45rem;
    background: var(--cream);
}

.service-aside p strong {
    display: inline-block;
    margin-top: 0.7rem;
    font-size: 1.18rem;
}

.service-aside ul {
    margin: 1.1rem 0 1.5rem;
    padding-left: 1.1rem;
}

.service-aside li + li {
    margin-top: 0.45rem;
}

.section-centered {
    text-align: center;
}

.section-centered p {
    max-width: 42rem;
    margin: 1rem auto 0;
}

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

.portfolio-item {
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--cream);
    color: var(--ink);
    box-shadow: var(--shadow);
    transition: transform 160ms ease, box-shadow 160ms ease;
    min-width: 0;
}

.portfolio-art {
    position: relative;
    display: grid;
    min-height: 0;
    aspect-ratio: 16 / 10;
    place-items: center;
    padding: 1rem;
    border-bottom: 2px solid var(--ink);
    background: var(--cream);
}

.portfolio-art::before,
.portfolio-art::after {
    content: none;
    position: absolute;
    border: 2px solid var(--ink);
}

.portfolio-art::before {
    width: 86px;
    height: 86px;
    left: 11%;
    top: 22%;
    border-radius: var(--radius);
    background: var(--cream);
}

.portfolio-art::after {
    width: 46%;
    height: 12px;
    right: 10%;
    top: 33%;
    border-width: 0;
    border-radius: var(--radius);
    background: var(--gold);
    box-shadow: 0 32px 0 var(--ink), -58px 82px 0 var(--ink);
}

.portfolio-art.notulen {
    background-color: var(--cream);
}

.portfolio-art.notulen::before {
    width: 38%;
    height: 46%;
    border-radius: var(--radius);
    background: var(--cream);
    transform: rotate(-4deg);
}

.portfolio-art.notulen::after {
    top: 24%;
    background: var(--ink);
    box-shadow: 0 34px 0 var(--gold), -40px 86px 0 var(--ink);
}

.portfolio-art.workshop::before {
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    background: var(--gold);
    transform: rotate(12deg);
}

.portfolio-art.workshop::after {
    background: var(--gold);
    box-shadow: 0 35px 0 var(--ink), -52px 88px 0 var(--ink);
}

.portfolio-item figcaption {
    padding: 1rem 1.1rem 1.15rem;
    font-weight: 900;
}

.portfolio-item span {
    display: block;
    margin-top: 0.35rem;
    color: var(--ink-soft);
    font-weight: 500;
}

.portfolio-note {
    max-width: 46rem;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.82);
}

.page-section > .container > .btn-secondary,
.page-section > .container > .button-row .btn-secondary {
    border-color: #fff;
    color: #fff;
}

.page-section > .container > .btn-secondary:hover,
.page-section > .container > .button-row .btn-secondary:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--ink);
}

.contact-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
}

.contact-card,
.contact-form-wrapper {
    padding: clamp(1.35rem, 3vw, 2rem);
}

.contact-card a {
    font-weight: 850;
    text-decoration-color: var(--gold);
    text-decoration-thickness: 2px;
}

.contact-form .form-field {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 0.65rem 0.75rem;
    border: 1px solid rgba(34, 35, 34, 0.35);
    border-radius: var(--radius);
    background: var(--ink);
    color: #fffaf0;
    font: inherit;
}

.contact-form label {
    color: #fffaf0;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(255, 215, 53, 0.45);
    border-color: var(--ink);
}

.site-footer {
    padding: clamp(2.6rem, 5vw, 4.5rem) 0 1.2rem;
    border-top: 3px solid var(--ink);
    background: var(--ink);
    color: #fff;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(150px, 0.55fr));
    align-items: start;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    font-size: 0.95rem;
}

.footer-brand p,
.footer-contact p,
.footer-bottom p {
    color: rgba(255, 255, 255, 0.76);
}

.footer-logo {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 1rem;
    padding: 0.18rem 0.55rem 0.24rem;
    border: 3px solid #fff;
    border-radius: var(--radius);
    color: #fff;
    font-size: 1.35rem;
    font-weight: 950;
    line-height: 1;
    text-decoration: none;
}

.footer-brand p {
    max-width: 28rem;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 0.45rem;
}

.site-footer h2 {
    margin: 0 0 0.5rem;
    color: #fff;
    font-size: 0.86rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.site-footer a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

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

.social-bubbles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.35rem;
}

.social-bubbles a {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.social-bubbles a:hover {
    transform: translateY(-2px);
    background: transparent;
    color: #fffaf0;
}

.footer-cta {
    width: fit-content;
    margin-top: 0.65rem;
    padding: 0.65rem 0.85rem;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    background: var(--gold);
    color: var(--ink) !important;
    font-weight: 900;
}

.footer-cta:hover {
    background: transparent;
    border-color: var(--gold);
    color: #fffaf0 !important;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: clamp(2rem, 4vw, 3rem);
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 920px) {
    .hero-inner,
    .two-column,
    .contact-layout,
    .page-hero-grid,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .hero-visual,
    .sketch-board {
        min-height: 0;
    }

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

    .service-aside {
        position: static;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    .header-inner {
        min-height: 66px;
    }

    .brand-mark {
        min-height: 36px;
    }

    .nav-toggle {
        display: grid;
    }

    .main-nav {
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: calc(100% + 0.5rem);
        display: none;
        border: 2px solid var(--ink);
        border-radius: var(--radius);
        background: var(--ink);
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        display: grid;
        gap: 0;
        padding: 0.45rem;
    }

    .main-nav a {
        width: 100%;
        justify-content: center;
        color: #fff;
    }

    .hero {
        padding-top: 2rem;
    }

    .hero-visual {
        display: none;
    }

    .hero::before,
    .page-hero::before {
        width: calc(100% - 2rem);
        left: 1rem;
        height: 10px;
    }

    .page-hero-grid {
        gap: 1.1rem;
    }

    .hero-info-card {
        box-shadow: 0 8px 18px rgba(34, 35, 34, 0.12);
    }

    .hero-info-card::before {
        display: none;
    }

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

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

    .card::after,
    .text-panel::after {
        display: none;
    }

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

    .social-bubbles a {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 460px) {
    .container {
        width: min(100% - 1.5rem, 1180px);
    }

    .btn {
        width: 100%;
    }

    .brand-mark {
        max-width: calc(100vw - 5.5rem);
        overflow-wrap: anywhere;
        box-shadow: none;
    }

    h1 {
        font-size: clamp(2.15rem, 13vw, 3.4rem);
    }

    .hero-info-list li,
    .card,
    .faq-item,
    .text-panel,
    .service-aside,
    .contact-card,
    .contact-form-wrapper,
    .portfolio-item {
        box-shadow: 0 8px 18px rgba(34, 35, 34, 0.12);
    }

    .card:hover,
    .portfolio-item:hover {
        transform: none;
        box-shadow: 0 8px 18px rgba(34, 35, 34, 0.12);
    }

    .footer-bottom {
        display: grid;
    }
}

.main-nav a:hover,
.main-nav a.active,
.eyebrow,
.btn-primary,
.placeholder-label,
.card::before,
.section.alt-bg .btn-secondary:hover,
.page-section.alt-bg .btn-secondary:hover,
.page-section > .container > .btn-secondary:hover,
.page-section > .container > .button-row .btn-secondary:hover,
.social-bubbles a,
.footer-cta {
    color: var(--ink) !important;
}

/* Dark visual system */
body {
    color: #f7f4ea;
    background: var(--ink);
}

h1,
h2,
h3,
.section h2,
.section h3,
.page-section h2,
.page-section h3,
.page-hero h1,
.page-hero h2,
.page-hero h3 {
    color: #fffaf0;
}

p,
li {
    color: rgba(255, 250, 240, 0.82);
}

strong {
    color: #fffaf0;
}

.site-header {
    background: rgba(34, 35, 34, 0.96);
    border-bottom-color: rgba(255, 255, 255, 0.14);
}

.brand-mark,
.footer-logo {
    border-color: rgba(255, 250, 240, 0.92);
    color: #fffaf0;
}

.main-nav a {
    color: rgba(255, 250, 240, 0.86);
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--gold);
    border-color: var(--gold);
}

.hero,
.page-hero,
.section,
.page-section,
.section.alt-bg,
.page-section.alt-bg,
.site-footer {
    background: var(--ink);
}

.hero,
.page-hero {
    border-bottom: 1px solid var(--line);
}

.section,
.page-section {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section::before,
.page-section::before {
    content: none;
}

.hero::before,
.page-hero::before {
    content: none;
}

.hero-inner,
.page-hero-grid {
    position: relative;
}

.hero-inner::after,
.page-hero-grid::after {
    content: none;
}

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

.hero .lead,
.page-hero p,
.section-header p,
.section.alt-bg .section-header p,
.page-section.alt-bg .section-header p,
.page-section.alt-bg .service-copy p,
.page-section.alt-bg .service-copy li,
.page-section.alt-bg.section-centered p {
    color: rgba(255, 250, 240, 0.82);
}

.lead,
.hero-services,
.page-hero p {
    max-width: 58rem;
}

.hero-services {
    margin-top: 1.35rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(231, 184, 74, 0.5);
    border-left: 1px solid rgba(231, 184, 74, 0.5);
    border-radius: var(--radius);
    background: rgba(231, 184, 74, 0.08);
    color: #fffaf0;
}

.eyebrow {
    border: 1px solid var(--gold);
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(231, 184, 74, 0.08);
}

.section-header {
    max-width: 860px;
    margin-bottom: clamp(1.6rem, 3vw, 2.35rem);
    padding-left: 0;
    border-left: 0;
}

.section-header .eyebrow {
    margin-left: 0;
}

.section-header h2,
.service-copy h2,
.text-panel h2,
.contact-card h2,
.contact-form-wrapper h2 {
    position: relative;
}

.section-header h2::after,
.service-copy h2::after,
.text-panel h2::after,
.contact-card h2::after,
.contact-form-wrapper h2::after {
    content: "";
    display: block;
    width: 72px;
    height: 4px;
    margin-top: 0.75rem;
    background: var(--gold);
}

.text-panel,
.service-aside,
.contact-form-wrapper,
.contact-card,
.card,
.portfolio-item,
.hero-info-card,
.sketch-board,
.portfolio-art {
    border: 1px solid var(--line);
    background: var(--cream);
    color: #fffaf0;
    box-shadow: var(--shadow);
}

.text-panel h2,
.text-panel h3,
.service-aside h3,
.contact-card h2,
.contact-form-wrapper h2,
.card h3,
.portfolio-item figcaption,
.hero-info-card h2 {
    color: #fffaf0;
}

.text-panel p,
.service-aside p,
.service-aside li,
.contact-card p,
.contact-form-wrapper p,
.card p,
.portfolio-item span,
.section.alt-bg .text-panel p,
.page-section.alt-bg .text-panel p,
.page-section.alt-bg .service-aside p,
.page-section.alt-bg .service-aside li {
    color: rgba(255, 250, 240, 0.78);
}

.text-panel,
.service-aside,
.contact-form-wrapper,
.contact-card,
.card {
    padding: clamp(1.35rem, 2.6vw, 2.15rem);
}

.cards {
    gap: clamp(1rem, 2.2vw, 1.4rem);
}

.card {
    min-height: auto;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.card::after,
.text-panel::after {
    content: none;
}

.card::before {
    border-color: var(--gold);
    background: var(--gold);
}

.card:nth-child(2)::before {
    background: transparent;
    color: var(--gold) !important;
}

.card p {
    flex: 1;
}

.card .text-link,
.text-panel .text-link {
    margin-top: 1rem;
}

.text-link {
    color: #fffaf0;
}

.text-link::after {
    color: var(--gold);
}

.text-link:hover {
    color: var(--gold);
}

.hero-info-card {
    padding: clamp(1.25rem, 2.5vw, 1.8rem);
}

.hero-info-card::before {
    content: none;
}

.hero-info-list li {
    border-color: rgba(231, 184, 74, 0.38);
    background: rgba(231, 184, 74, 0.1);
    color: #fffaf0;
}

.btn {
    max-width: 100%;
    border-color: var(--gold);
    white-space: normal;
    line-height: 1.2;
    text-align: center;
}

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

.btn-secondary,
.hero .btn-secondary,
.section.alt-bg .btn-secondary,
.page-section.alt-bg .btn-secondary,
.page-section > .container > .btn-secondary,
.page-section > .container > .button-row .btn-secondary {
    border-color: rgba(255, 250, 240, 0.55);
    background: transparent;
    color: #fffaf0;
}

.btn-secondary:hover,
.hero .btn-secondary:hover,
.section.alt-bg .btn-secondary:hover,
.page-section.alt-bg .btn-secondary:hover,
.page-section > .container > .btn-secondary:hover,
.page-section > .container > .button-row .btn-secondary:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--ink);
}

.hero-actions,
.button-row {
    gap: 1rem;
    margin-top: 1.75rem;
}

.service-copy {
    max-width: 820px;
}

.service-copy h3 {
    color: var(--gold);
}

.service-copy p {
    color: rgba(255, 250, 240, 0.82);
}

.service-aside {
    position: relative;
    top: auto;
    border-left: 1px solid var(--line);
    border-top: 4px solid var(--gold);
}

.service-aside ul {
    padding-left: 0;
    list-style: none;
}

.service-aside li {
    position: relative;
    padding-left: 1.25rem;
}

.service-aside li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--gold);
}

.service-aside .btn {
    margin-top: 0.45rem;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.4fr);
    gap: clamp(1.5rem, 4vw, 4.5rem);
    align-items: start;
}

.faq-main {
    min-width: 0;
}

.faq-group + .faq-group {
    margin-top: clamp(2rem, 4vw, 3.2rem);
}

.faq-group > h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.45rem, 3vw, 2.35rem);
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    padding: clamp(1.25rem, 2.4vw, 1.8rem);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--cream);
    color: #fffaf0;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    margin-bottom: 0.65rem;
    color: var(--gold);
    font-size: clamp(1.06rem, 1.8vw, 1.25rem);
    line-height: 1.25;
}

.faq-item p:last-child {
    margin-bottom: 0;
}

.faq-item a,
.faq-aside a:not(.btn) {
    color: #fffaf0;
    font-weight: 850;
    text-decoration-color: var(--gold);
    text-decoration-thickness: 2px;
}

.faq-item a:hover,
.faq-aside a:not(.btn):hover {
    color: var(--gold);
}

.faq-aside nav {
    display: grid;
    gap: 0.5rem;
    margin: 1rem 0 1.3rem;
}

.faq-aside nav a {
    padding: 0.55rem 0.7rem;
    border: 1px solid rgba(231, 184, 74, 0.38);
    border-radius: var(--radius);
    background: rgba(231, 184, 74, 0.1);
    text-decoration: none;
}

.two-column,
.contact-layout,
.page-hero-grid,
.faq-layout {
    gap: clamp(1.5rem, 4vw, 4.5rem);
}

@media (max-width: 920px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }
}

.sketch-board {
    border-color: var(--line);
}

.sketch-board::before {
    border-color: rgba(231, 184, 74, 0.45);
}

.placeholder-label {
    max-width: min(86%, 30rem);
    border-color: var(--gold);
    background: var(--gold);
    overflow-wrap: anywhere;
}

.portfolio-grid {
    gap: clamp(1rem, 2vw, 1.35rem);
}

.portfolio-art {
    border-bottom-color: var(--line);
    background: #272826;
}

.portfolio-item figcaption {
    padding: 1.15rem 1.2rem 1.35rem;
}

.portfolio-grid + .btn,
.portfolio-grid + .button-row,
.portfolio-item + .btn {
    margin-top: 1.8rem;
}

.contact-layout {
    align-items: start;
}

.contact-card {
    align-self: start;
}

.contact-card,
.contact-form-wrapper {
    border-top: 4px solid var(--gold);
}

.contact-form .form-field {
    margin-bottom: 1.1rem;
}

.contact-form label {
    color: #fffaf0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border-color: rgba(255, 250, 240, 0.24);
    background: #222322;
    color: #fffaf0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 250, 240, 0.48);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(231, 184, 74, 0.35);
    border-color: var(--gold);
}

.contact-extra {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    min-height: 1.4em;
    margin: 0;
    color: rgba(255, 250, 240, 0.78);
    font-weight: 750;
}

.form-status.is-success {
    color: var(--gold);
}

.form-status.is-error {
    color: #ffb4a8;
}

.contact-form button:disabled {
    cursor: wait;
    opacity: 0.7;
    transform: none;
}

.site-footer {
    border-top-color: var(--gold);
}

.site-footer h2 {
    color: var(--gold);
}

.footer-brand p,
.footer-contact p,
.footer-bottom p {
    color: rgba(255, 250, 240, 0.72);
}

.footer-cta,
.social-bubbles a {
    border-color: var(--gold);
    background: var(--gold);
}

.social-bubbles a:hover,
.footer-cta:hover {
    background: transparent;
    border-color: var(--gold);
    color: #fffaf0 !important;
}

h1,
h2,
h3,
p,
li,
a,
button,
label,
figcaption,
.placeholder-label {
    overflow-wrap: break-word;
}

h1,
h2,
h3 {
    overflow-wrap: normal;
    word-break: normal;
}

.contact-card h2,
.contact-form-wrapper h2 {
    font-size: clamp(1.25rem, 1.8vw, 1.45rem);
    white-space: nowrap;
    overflow-wrap: normal;
}

.section.alt-bg .text-panel,
.page-section.alt-bg .text-panel,
.page-section.alt-bg .service-aside,
.section.alt-bg .text-panel h2,
.section.alt-bg .text-panel h3,
.page-section.alt-bg .text-panel h2,
.page-section.alt-bg .text-panel h3,
.page-section.alt-bg .service-aside h3,
.section.alt-bg .text-panel p,
.page-section.alt-bg .text-panel p,
.page-section.alt-bg .service-aside p,
.page-section.alt-bg .service-aside li {
    color: #fffaf0;
}

.section.alt-bg .text-panel p,
.page-section.alt-bg .text-panel p,
.page-section.alt-bg .service-aside p,
.page-section.alt-bg .service-aside li {
    color: rgba(255, 250, 240, 0.78);
}

.nav-toggle {
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.nav-toggle-bar {
    margin: 0;
}

@media (max-width: 820px) {
    .nav-toggle {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 820px) {
    .main-nav {
        border-color: var(--line);
        background: #2a2b29;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    }

    .section-header {
        padding-left: 1rem;
    }

    .hero-inner::after,
    .page-hero-grid::after {
        display: none;
    }

    .hero-actions .btn,
    .button-row .btn {
        flex: 1 1 210px;
    }
}

@media (max-width: 460px) {
    .hero-actions,
    .button-row {
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
    }

    .text-panel,
    .service-aside,
    .contact-form-wrapper,
    .contact-card,
    .faq-item,
    .card {
        padding: 1.15rem;
    }
}
