@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;600;700;800&family=Permanent+Marker&display=swap');

:root {
	--ink: #111111;
	--paper: #f9fafb;
	--surface: #ffffff;
	--accent: #ff9900;
	--accent-dark: #d88000;
	--line: #e5e7eb;
	--display: 'Permanent Marker', cursive;
	--body: 'Figtree', sans-serif;
}

* { box-sizing: border-box; }
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--body); font-size: 1.0625rem; line-height: 1.6; }
a { color: var(--accent-dark); }
a:hover { color: var(--accent); }
h1 { font-family: var(--display); line-height: 1.12; }
h2, h3 { line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 8vw, 5.75rem); margin: 0 0 1.5rem; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); margin: 0 0 1.25rem; }
.layout-container { width: min(1120px, calc(100% - 3rem)); margin: 0 auto; }
.site-header { border-bottom: 1px solid rgba(17, 17, 17, .09); position: sticky; top: 0; z-index: 10; }
.site-header::before { background: rgba(249, 250, 251, .92); backdrop-filter: blur(16px); content: ''; inset: 0; position: absolute; z-index: -1; }
.site-header__inner { align-items: center; display: grid; gap: 2rem; grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr); margin: 0 auto; min-height: 88px; padding: .75rem 1.5rem; width: min(1240px, 100%); }
.site-brand { align-items: center; color: var(--ink); display: inline-flex; gap: .7rem; justify-self: start; text-decoration: none; }
.site-brand img { display: block; height: 3.6rem; object-fit: contain; width: 3.6rem; }
.site-brand__copy { display: grid; line-height: 1.05; }
.site-brand__copy strong { font-family: var(--display); font-size: 1.25rem; font-weight: 400; }
.site-brand__copy span { color: #5f6368; font-size: .72rem; font-weight: 800; letter-spacing: .08em; margin-top: .35rem; text-transform: uppercase; }
.site-navigation ul { align-items: center; display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; list-style: none; margin: 0; padding: 0; }
.site-navigation a { border-bottom: 2px solid transparent; color: var(--ink); display: block; font-size: .9rem; font-weight: 800; padding: .55rem .7rem; text-decoration: none; }
.site-navigation a:hover, .site-navigation .current-menu-item > a, .site-navigation .current_page_item > a { border-color: var(--accent); color: var(--ink); }
.site-menu__services { position: relative; }
.site-menu__services summary { border-bottom: 2px solid transparent; cursor: pointer; font-size: .9rem; font-weight: 800; list-style: none; padding: .55rem .7rem; }
.site-menu__services summary::-webkit-details-marker { display: none; }
.site-menu__services summary::after { color: var(--accent); content: '+'; display: inline-block; font-size: 1.2rem; line-height: .8; margin-left: .4rem; }
.site-menu__services details[open] summary { border-color: var(--accent); }
.site-menu__services details[open] summary::after { content: '−'; }
.site-submenu { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 16px 30px rgba(17, 17, 17, .12); display: flex; flex-direction: column; gap: 0; left: 0; list-style: none; margin: .45rem 0 0; min-width: 15rem; padding: .4rem; position: absolute; top: 100%; z-index: 20; animation: site-submenu-in .18s ease; }
@keyframes site-submenu-in { from { opacity: 0; transform: translateY(-.4rem); } to { opacity: 1; transform: translateY(0); } }
.site-submenu li { display: block; width: 100%; }
.site-submenu a { border: 0; color: var(--ink); font-size: .85rem; padding: .65rem .75rem; white-space: nowrap; }
.site-submenu li:first-child a { border-radius: 4px 4px 0 0; }
.site-submenu li:last-child a { border-radius: 0 0 4px 4px; }
.site-submenu a:hover { background: #fff3dc; color: var(--ink); }
.site-header__cta, .site-footer__cta { background: var(--accent); border-radius: 8px; color: var(--ink); font-size: .85rem; font-weight: 800; justify-self: end; padding: .7rem 1rem; text-decoration: none; }
.site-header__cta:hover, .site-footer__cta:hover { background: var(--ink); color: #fff; }
.site-mobile-menu { align-items: center; display: contents; }
.site-menu-toggle { background: none; border: 0; cursor: pointer; display: none; height: 2.75rem; padding: 0; width: 2.75rem; }
.site-menu-toggle__box { display: block; margin: 0 auto; position: relative; width: 1.6rem; }
.site-menu-toggle__box span { background: var(--ink); border-radius: 2px; display: block; height: 2px; margin: 0 0 .4rem; transition: transform .2s ease, opacity .2s ease; width: 100%; }
.site-menu-toggle__box span:last-child { margin-bottom: 0; }
.site-menu-toggle[aria-expanded='true'] .site-menu-toggle__box span:nth-child(1) { transform: translateY(.55rem) rotate(45deg); }
.site-menu-toggle[aria-expanded='true'] .site-menu-toggle__box span:nth-child(2) { opacity: 0; }
.site-menu-toggle[aria-expanded='true'] .site-menu-toggle__box span:nth-child(3) { transform: translateY(-.55rem) rotate(-45deg); }
.site-menu-overlay { background: rgba(17, 17, 17, .45); inset: 0; position: fixed; z-index: 25; }
.site-menu-overlay[hidden] { display: none; }
.hero { background: var(--paper); min-height: min(720px, calc(100vh - 88px)); display: grid; place-items: center; overflow: hidden; padding: 6rem 0; position: relative; }
.hero::before { background: var(--accent); content: ''; height: 28rem; opacity: .12; position: absolute; right: -12rem; top: -14rem; transform: rotate(25deg); width: 35rem; }
.hero__grid { align-items: center; display: grid; gap: 3rem; grid-template-columns: minmax(0, 1.2fr) minmax(220px, .8fr); }
.hero__content { max-width: 760px; position: relative; z-index: 1; }
.hero__logo { filter: drop-shadow(0 15px 15px rgba(255, 153, 0, .65)); transform: rotate(12deg); }
.hero__logo img { display: block; height: auto; margin: auto; max-width: min(100%, 430px); }
.hero__lead { font-size: clamp(1.2rem, 2.5vw, 1.7rem); max-width: 52rem; }
.eyebrow { color: var(--accent-dark); font-size: .75rem; font-weight: 800; letter-spacing: .12em; margin: 0 0 1rem; text-transform: uppercase; }
.hero__actions { align-items: center; display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem; }
.button { background: var(--ink); border-radius: 8px; color: #fff; display: inline-block; font-weight: 800; padding: .9rem 1.3rem; text-decoration: none; transition: background-color .2s ease, color .2s ease, transform .2s ease; }
.button:hover { background: var(--accent); color: var(--ink); transform: translateY(-2px); }
.text-link { color: var(--ink); font-size: .92rem; font-weight: 800; text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: .35rem; }
.text-link:hover { color: var(--accent-dark); }
.content-section { padding: 7rem 0; }
.section-grid { align-items: start; display: grid; gap: 6rem; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); }
.section-heading { max-width: 48rem; }
.section-heading h2, .closing-section h2 { font-size: clamp(2.25rem, 5vw, 4.2rem); letter-spacing: 0; margin-bottom: 0; }
.section-heading--centered { margin: 0 auto 3.5rem; text-align: center; }
.entry-content { max-width: 860px; }
.entry-content > * + * { margin-top: 1.5rem; }
.entry-content img { height: auto; max-width: 100%; }
.entry-content .wp-block-columns { gap: 2rem; }
.intro-section { background: var(--surface); }
.intro-section__content { border-left: 2px solid var(--accent); padding-left: 2rem; }
.services-section { background: #f0f2f4; }
.service-grid { display: grid; gap: 1px; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: hidden; }
.service-card { background: var(--surface); color: var(--ink); display: flex; flex-direction: column; min-height: 19rem; padding: 2rem; text-decoration: none; transition: background-color .2s ease, transform .2s ease; }
.service-card:hover { background: var(--ink); color: #fff; transform: translateY(-4px); }
.service-card__number { color: var(--accent-dark); font-size: .78rem; font-weight: 800; letter-spacing: .1em; }
.service-card h3 { font-size: 1.5rem; margin: 2.6rem 0 .75rem; }
.service-card p { color: #5f6368; font-size: .95rem; margin: 0; }
.service-card > span:last-child { color: var(--accent-dark); font-size: .84rem; font-weight: 800; margin-top: auto; padding-top: 2rem; }
.service-card:hover p { color: #d5d5d5; }
.service-card:hover > span:last-child { color: var(--accent); }
.process-section { background: var(--surface); }
.process-list { counter-reset: process; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; margin: 3.5rem 0 0; padding: 0; }
.process-list li { border-left: 1px solid var(--line); display: grid; gap: .8rem; padding: 1rem 1.5rem 1rem 1.25rem; }
.process-list li:first-child { border-left: 0; padding-left: 0; }
.process-list strong { font-size: 1.2rem; }
.process-list strong::before { color: var(--accent-dark); content: '0' counter(process); counter-increment: process; display: block; font-size: .75rem; letter-spacing: .1em; margin-bottom: .55rem; }
.process-list span { color: #5f6368; font-size: .92rem; }
.closing-section { background: var(--ink); color: #fff; padding: 6rem 0; }
.closing-section__inner { align-items: end; display: flex; gap: 3rem; justify-content: space-between; }
.closing-section .eyebrow { color: var(--accent); }
.button--light { background: var(--accent); color: var(--ink); flex: 0 0 auto; }
.button--light:hover { background: #fff; color: var(--ink); }
.service-hero { background: var(--ink); color: #fff; overflow: hidden; padding: 7rem 0 6rem; position: relative; }
.service-hero::after { border: 4rem solid var(--accent); content: ''; height: 22rem; opacity: .14; position: absolute; right: -10rem; top: -14rem; transform: rotate(24deg); width: 22rem; }
.service-hero__inner { max-width: 900px; position: relative; z-index: 1; }
.service-hero .eyebrow { color: var(--accent); }
.service-hero h1 { font-size: clamp(3rem, 8vw, 6.5rem); max-width: 52rem; }
.service-hero__lead { color: #d5d5d5; font-size: clamp(1.15rem, 2vw, 1.45rem); max-width: 42rem; }
.service-hero .button { background: var(--accent); color: var(--ink); margin-top: 1.5rem; }
.service-hero .button:hover { background: #fff; }
.service-content-section { background: var(--surface); }
.service-layout { align-items: start; display: grid; gap: clamp(3rem, 8vw, 8rem); grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .55fr); }
.service-content { font-size: 1.1rem; max-width: 46rem; }
.service-content h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); margin-top: 3.5rem; }
.service-content h3 { font-size: 1.35rem; margin-top: 2.5rem; }
.service-content ul, .service-content ol { padding-left: 1.3rem; }
.service-content li + li { margin-top: .6rem; }
.service-sidebar { background: #fff3dc; border-top: 4px solid var(--accent); border-radius: 8px; color: var(--ink); padding: 1.75rem; position: sticky; top: 7rem; }
.service-sidebar h2 { font-size: 1.5rem; margin: 0; }
.service-sidebar p:not(.eyebrow) { color: var(--ink); font-size: .95rem; margin: 1rem 0; }
.other-services { background: #f0f2f4; padding: 4rem 0; }
.other-services ul { display: flex; flex-wrap: wrap; gap: .75rem; list-style: none; margin: 1.25rem 0 0; padding: 0; }
.other-services a { background: var(--surface); border-radius: 8px; color: var(--ink); display: block; font-size: .9rem; font-weight: 800; padding: .75rem 1rem; text-decoration: none; }
.other-services a:hover { background: var(--ink); color: var(--accent); }
.projects-section { background: var(--surface); }
.project-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.project-card { background: var(--paper); border-top: 4px solid var(--accent); display: flex; flex-direction: column; overflow: hidden; }
.project-card__image { aspect-ratio: 16 / 10; background: #e8ebee; display: block; overflow: hidden; }
.project-card__image img { display: block; height: 100%; object-fit: cover; transition: transform .3s ease; width: 100%; }
.project-card:hover .project-card__image img { transform: scale(1.03); }
.project-card__body { display: flex; flex: 1; flex-direction: column; padding: 1.75rem; }
.project-card__body h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 0 0 .8rem; }
.project-card__body h2 a { color: var(--ink); text-decoration: none; }
.project-card__excerpt { color: #5f6368; display: -webkit-box; margin: 0 0 1.5rem; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.project-card__excerpt p { margin: 0; }
.project-card__body .text-link { margin-top: auto; width: fit-content; }
.projects-empty { border-left: 2px solid var(--accent); padding-left: 2rem; }
.project-content-section { background: var(--surface); }
.project-layout { align-items: start; display: grid; gap: clamp(3rem, 8vw, 8rem); grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .55fr); }
.project-content { font-size: 1.1rem; max-width: 46rem; }
.project-featured-image { margin-bottom: 2.5rem; }
.project-featured-image img { display: block; height: auto; width: 100%; }
.project-sidebar { display: flex; flex-direction: column; gap: 1.2rem; }
.project-sidebar .button { align-self: flex-start; }
.project-sidebar .text-link { width: fit-content; }
.page-header { border-bottom: 1px solid var(--line); margin-bottom: 2.5rem; padding-bottom: 2rem; }
.devarthys-contact-form { max-width: 680px; }
.devarthys-field { display: grid; gap: .4rem; }
.devarthys-field input:not([type='checkbox']), .devarthys-field textarea { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; color: var(--ink); font: inherit; padding: .8rem; width: 100%; }
.devarthys-field input:focus, .devarthys-field textarea:focus { outline: 3px solid #8ed5cf; outline-offset: 2px; }
.devarthys-field--trap { height: 0; left: -9999px; margin: 0; overflow: hidden; position: absolute; width: 0; }
.devarthys-consent { align-items: start; display: flex; gap: .7rem; }
.devarthys-consent input { margin-top: .35rem; }
.devarthys-notice { border-left: 4px solid var(--accent); padding: 1rem; }
.devarthys-notice--success { background: #dff3e9; }
.devarthys-notice--error { background: #fbe5df; border-color: #a83a1f; }
.site-footer { background: var(--ink); border-top: 5px solid var(--accent); color: #fff; padding-top: 4rem; }
.site-footer__inner { display: grid; gap: 3rem; grid-template-columns: 1.25fr .7fr 1fr; margin: 0 auto; padding: 0 1.5rem 4rem; width: min(1240px, 100%); }
.site-footer__brand p, .site-footer__contact p { color: #c9c9c9; margin: .9rem 0 0; max-width: 25rem; }
.site-footer__logo { align-items: center; color: #fff; display: inline-flex; font-family: var(--display); font-size: 1.5rem; gap: .75rem; text-decoration: none; }
.site-footer__logo img { height: 3rem; width: 3rem; }
.site-footer__label { color: var(--accent) !important; font-size: .75rem; font-weight: 800; letter-spacing: .12em; margin: 0 !important; text-transform: uppercase; }
.site-footer-menu { display: grid; gap: .5rem; list-style: none; margin: .9rem 0 0; padding: 0; }
.site-footer a { color: #fff; font-weight: 700; text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.site-footer__cta { display: inline-block; margin-top: 1.2rem; }
.site-footer__bottom { align-items: center; border-top: 1px solid #343434; color: #a7a7a7; display: flex; font-size: .8rem; justify-content: space-between; margin: 0 auto; padding: 1.25rem 1.5rem; width: min(1240px, 100%); }
.site-footer__bottom p { margin: 0; }
.site-footer__bottom nav { display: flex; gap: 1.25rem; }
.site-footer__bottom a { color: #c9c9c9; font-weight: 600; }
@media (max-width: 900px) { .section-grid { gap: 3rem; } .service-grid, .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .process-list { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; } .process-list li:nth-child(3) { border-left: 0; padding-left: 0; } .service-layout, .project-layout { grid-template-columns: 1fr; } .service-sidebar { position: static; } }
.has-open-menu { overflow: hidden; }
@media (max-width: 800px) {
	.site-header__inner { grid-template-columns: 1fr auto; }
	.site-menu-toggle { display: block; }
	.site-mobile-menu { background: var(--surface); box-shadow: -12px 0 30px rgba(17, 17, 17, .15); display: flex; flex-direction: column; gap: 1.5rem; height: 100vh; overflow-y: auto; padding: 6rem 1.75rem 2rem; position: fixed; right: 0; top: 0; transform: translateX(100%); transition: transform .25s ease; width: min(320px, 85vw); z-index: 30; }
	.site-mobile-menu.is-open { transform: translateX(0); }
	.site-mobile-menu { align-items: stretch; }
	.site-navigation ul { align-items: stretch; flex-direction: column; gap: .1rem; }
	.site-navigation a { padding: .75rem 0; width: 100%; }
	.site-menu__services summary { align-items: center; display: flex; justify-content: space-between; padding: .75rem 0; width: 100%; }
	.site-submenu { background: var(--paper); border: 0; border-radius: 6px; box-shadow: none; margin: .35rem 0 .5rem; min-width: 0; padding: .3rem .5rem; position: static; width: 100%; }
	.site-submenu a { border-radius: 6px; padding: .6rem .75rem; }
	.site-submenu li:first-child a, .site-submenu li:last-child a { border-radius: 6px; }
	.site-header__cta { text-align: center; width: 100%; }
	.site-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .site-brand__copy { display: none; } .hero { min-height: auto; padding: 4.5rem 0 3rem; } .hero__actions { align-items: stretch; flex-direction: column; gap: 1rem; } .hero__actions .button { text-align: center; } .section-grid, .service-grid, .project-grid, .process-list { grid-template-columns: 1fr; } .content-section { padding: 4.5rem 0; } .intro-section__content { padding-left: 1.25rem; } .service-card { min-height: 15rem; } .process-list { gap: 0; margin-top: 2rem; } .process-list li, .process-list li:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); padding: 1.5rem 0; } .process-list li:first-child { border-top: 0; } .closing-section { padding: 4.5rem 0; } .closing-section__inner { align-items: start; flex-direction: column; gap: 2rem; } .service-hero { padding: 5rem 0 4rem; } .service-hero h1 { font-size: clamp(2.8rem, 14vw, 4.5rem); } .other-services ul { display: grid; grid-template-columns: 1fr 1fr; } .hero__grid { grid-template-columns: 1fr; } .hero__logo { margin-top: -2rem; max-width: 220px; } .site-footer { padding-top: 3rem; } .site-footer__inner { grid-template-columns: 1fr; padding-bottom: 3rem; } .site-footer__bottom { align-items: flex-start; flex-direction: column; gap: .75rem; } }