/* ==========================================================================
   Developer theme styles
   ========================================================================== */

:root {
	--navy: #2c3e50;
	--navy-dark: #1f2b38;
	--navy-light: #34495e;
	--navy-rgb: 44, 62, 80;
	--teal: #16a085;
	--teal-dark: #138a71;
	--teal-rgb: 22, 160, 133;
	--blue: #2980b9;
	--blue-rgb: 41, 128, 185;
	--gray-accent: #95a5a6;
	--ink: #2c3e50;
	--ink-soft: #6b7a89;
	--ink-faint: #95a5a6;
	--border: #eceff1;
	--bg: #ffffff;
	--bg-alt: #f6f8f9;
	--container: 1120px;
	--font-head: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-body: "Droid Serif", Georgia, "Times New Roman", serif;

	/* Text/icon color and translucency steps used on dark (navy) surfaces. */
	--white: #ffffff;
	--white-a06: rgba(255, 255, 255, 0.06);
	--white-a10: rgba(255, 255, 255, 0.1);
	--white-a12: rgba(255, 255, 255, 0.12);
	--white-a18: rgba(255, 255, 255, 0.18);
	--white-a20: rgba(255, 255, 255, 0.2);
	--white-a35: rgba(255, 255, 255, 0.35);
	--white-a50: rgba(255, 255, 255, 0.5);
	--white-a60: rgba(255, 255, 255, 0.6);
	--white-a62: rgba(255, 255, 255, 0.62);
	--white-a72: rgba(255, 255, 255, 0.72);
	--white-a78: rgba(255, 255, 255, 0.78);
	--white-a85: rgba(255, 255, 255, 0.85);

	/* Fixed dark scrim for text legibility over an arbitrary photo — stays
	   neutral/dark on purpose rather than tracking the brand primary color,
	   which could otherwise become too light to work as an overlay. */
	--scrim: rgba(20, 28, 37, 0.62);

	/* Status colors are intentionally independent of the brand palette. */
	--success-bg: #e7f7f2;
	--success-border: #b6e5d8;
	--success-text: #0f6a55;
	--error-bg: #fdecec;
	--error-border: #f4c7c4;
	--error-text: #a6332b;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.7;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-head);
	font-weight: 700;
	color: var(--ink);
	letter-spacing: 0.02em;
}

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

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 32px;
}

.eyebrow {
	display: block;
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--teal);
	margin-bottom: 10px;
}

.section-heading {
	text-align: center;
	margin: 0 auto 56px;
	max-width: 640px;
}

.section-heading h2 {
	font-size: 30px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0 0 14px;
}

.section-heading p {
	font-family: var(--font-body);
	color: var(--ink-soft);
	font-size: 17px;
	margin: 0;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 15px 34px;
	border-radius: 2px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-teal {
	background: var(--teal);
	color: var(--white);
}

.btn-teal:hover {
	background: var(--teal-dark);
	color: var(--white);
}

.btn-outline {
	border-color: var(--white-a60);
	color: var(--white);
}

.btn-outline:hover {
	background: var(--white-a12);
}

/* ------------------------------ Header ---------------------------------- */

.site-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 40;
	padding: 26px 0;
}

.site-header.is-solid {
	position: relative;
	background: var(--navy);
}

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

.site-branding {
	display: flex;
	align-items: baseline;
	gap: 2px;
	font-family: var(--font-head);
	font-size: 20px;
	font-weight: 700;
	color: var(--white);
	letter-spacing: 0.02em;
}

.site-branding .bracket {
	color: var(--teal);
}

.site-branding img.custom-logo {
	max-height: 34px;
	width: auto;
}

.main-navigation {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}

.main-navigation ul {
	display: flex;
	align-items: center;
	gap: 34px;
}

.main-navigation a {
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--white-a85);
}

.main-navigation a:hover {
	color: var(--teal);
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	color: var(--white);
}

.menu-toggle svg {
	width: 22px;
	height: 22px;
}

/* ------------------------------ Hero -------------------------------------- */

.hero {
	position: relative;
	min-height: 640px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: var(--navy);
	background-image: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 45%, var(--navy-light) 100%);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	padding: 140px 24px 90px;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 25%, rgba(var(--teal-rgb), 0.25), transparent 45%),
		radial-gradient(circle at 82% 70%, rgba(var(--blue-rgb), 0.3), transparent 50%);
}

/* When a custom background photo is set, swap the accent radial gradients
   for a flat dark scrim so the white hero text stays legible over it. */
.hero.has-bg-image::before {
	background: var(--scrim);
}

.hero-inner {
	position: relative;
	z-index: 2;
	max-width: 640px;
}

.hero-avatar {
	width: 132px;
	height: 132px;
	border-radius: 50%;
	border: 4px solid var(--white-a85);
	margin: 0 auto 26px;
	overflow: hidden;
	background: var(--navy-light);
}

.hero-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero h1 {
	color: var(--white);
	font-size: 34px;
	letter-spacing: 0.04em;
	margin: 0 0 12px;
}

.hero .hero-tagline {
	font-family: var(--font-body);
	color: var(--white-a78);
	font-size: 18px;
	font-style: italic;
	margin: 0 0 30px;
}

.hero-socials {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-bottom: 34px;
}

.hero-socials a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--white-a35);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
}

.hero-socials a:hover {
	background: var(--teal);
	border-color: var(--teal);
}

.hero-socials svg {
	width: 16px;
	height: 16px;
}

.hero-scroll {
	position: absolute;
	bottom: 26px;
	left: 50%;
	transform: translateX(-50%);
	color: var(--white-a60);
	z-index: 2;
}

.hero-scroll svg {
	width: 20px;
	height: 20px;
	animation: cushion-bounce 1.8s infinite;
}

@keyframes cushion-bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(8px); }
}

.hero-contact {
	min-height: 320px;
	padding-top: 150px;
	padding-bottom: 60px;
	background-color: var(--header-bg-color, var(--navy));
	background-image: var(--header-bg-image, linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 45%, var(--navy-light) 100%));
}

/* The Contact page uses its own per-page background/overlay controls
   (Page Header Appearance meta box) instead of the front page's fixed
   accent-gradient overlay, so it needs its own ::before here — this
   rule comes after .hero::before in source order and wins for .hero-contact. */
.hero-contact::before {
	background: var(--header-overlay-color, transparent);
}

.hero-contact h1 {
	font-size: 30px;
}

/* ------------------------------ Classic post stream ------------------------ */

.post-stream {
	padding: 90px 0;
}

.post-stream-item {
	max-width: 760px;
	margin: 0 auto 90px;
	text-align: center;
}

.post-stream-item:last-child {
	margin-bottom: 0;
}

.post-stream-item .post-thumb {
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 40px;
	aspect-ratio: 16 / 9;
	background: var(--bg-alt);
}

.post-stream-item .post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-meta {
	font-family: var(--font-head);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink-faint);
	margin-bottom: 12px;
}

.post-meta .sep {
	margin: 0 8px;
}

.post-stream-item .post-title {
	font-size: 22px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin: 0 0 18px;
}

.post-stream-item .post-title a {
	color: var(--ink);
}

.post-stream-item .post-title a:hover {
	color: var(--teal);
}

.post-stream-item .post-excerpt {
	font-size: 17px;
	color: var(--ink-soft);
	max-width: 58ch;
	margin: 0 auto 20px;
}

.post-stream-item .read-more {
	display: inline-block;
	font-family: var(--font-head);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--teal);
	border-bottom: 1px solid var(--teal);
	padding-bottom: 3px;
}

.stream-cta {
	text-align: center;
	padding: 20px 0 70px;
}

/* ------------------------------ Portfolio grid ------------------------------ */

.portfolio-section {
	background: var(--bg-alt);
	padding: 90px 0;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.portfolio-item {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.portfolio-item .portfolio-media {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.portfolio-item .portfolio-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.portfolio-item .portfolio-media svg {
	width: 46px;
	height: 46px;
	color: var(--white-a85);
}

.portfolio-item .portfolio-overlay {
	position: absolute;
	inset: 0;
	background: rgba(var(--navy-rgb), 0.82);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.portfolio-item:hover .portfolio-overlay {
	opacity: 1;
}

.portfolio-overlay .portfolio-title {
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 8px;
}

.portfolio-overlay .portfolio-cat {
	font-family: var(--font-head);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--teal);
}

.portfolio-swatch-0 { background: var(--navy); }
.portfolio-swatch-1 { background: var(--teal); }
.portfolio-swatch-2 { background: var(--blue); }
.portfolio-swatch-3 { background: var(--gray-accent); }

/* ------------------------------ Single portfolio ---------------------------- */

.single-portfolio-header {
	position: relative;
	overflow: hidden;
	background-color: var(--header-bg-color, var(--navy));
	background-image: var(--header-bg-image, none);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 150px 0 70px;
	text-align: center;
}

.single-portfolio-header .container {
	position: relative;
	z-index: 2;
}

.single-portfolio-header h1 {
	color: var(--white);
	font-size: 30px;
	margin: 0 0 10px;
}

.single-portfolio-header .portfolio-cat {
	font-family: var(--font-head);
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--teal);
}

.single-portfolio-media {
	max-width: var(--container);
	margin: -40px auto 50px;
	border-radius: 4px;
	overflow: hidden;
	position: relative;
	z-index: 5;
	text-align: center;
}

.single-portfolio-media img {
	margin: 0 auto;
}

/* ------------------------------ About / story ------------------------------- */

.page-hero {
	position: relative;
	overflow: hidden;
	background-color: var(--header-bg-color, var(--navy));
	background-image: var(--header-bg-image, none);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 150px 0 70px;
	text-align: center;
}

.page-hero .container {
	position: relative;
	z-index: 2;
}

.page-hero h1 {
	color: var(--white);
	font-size: 30px;
	margin: 0;
}

.page-wrap {
	padding: 70px 0 100px;
}

.page-wrap-flush {
	padding-top: 0;
}

.single-post-meta {
	text-align: center;
	margin-bottom: 34px;
}

.entry-content {
	max-width: 720px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.85;
}

.entry-content > * + * {
	margin-top: 1.3em;
}

.entry-content h2 {
	font-size: 24px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	margin-top: 2em;
}

.entry-content h3 {
	font-family: var(--font-head);
	font-size: 19px;
	margin-top: 1.8em;
}

.entry-content a {
	color: var(--teal);
	text-decoration: underline;
}

.entry-content img {
	border-radius: 4px;
}

.entry-content blockquote {
	margin: 0;
	padding-left: 22px;
	border-left: 3px solid var(--teal);
	color: var(--ink-soft);
	font-style: italic;
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.4em;
	list-style: revert;
}

/* ------------------------------ Contact form -------------------------------- */

.contact-section {
	padding: 90px 0 100px;
}

.contact-form {
	max-width: 680px;
	margin: 0 auto;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.contact-form label {
	display: block;
	font-family: var(--font-head);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-soft);
	margin-bottom: 8px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
	width: 100%;
	padding: 13px 16px;
	border-radius: 2px;
	border: 1px solid var(--border);
	background: var(--bg-alt);
	font-family: var(--font-body);
	font-size: 15px;
	margin-bottom: 20px;
}

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

.contact-form .form-field {
	min-width: 0;
}

.contact-form .hp-field {
	position: absolute;
	left: -9999px;
}

.form-notice {
	padding: 14px 18px;
	border-radius: 2px;
	font-size: 15px;
	margin-bottom: 28px;
}

.form-notice.success {
	background: var(--success-bg);
	color: var(--success-text);
	border: 1px solid var(--success-border);
}

.form-notice.error {
	background: var(--error-bg);
	color: var(--error-text);
	border: 1px solid var(--error-border);
}

.contact-meta {
	text-align: center;
	margin-top: 40px;
	color: var(--ink-soft);
	font-size: 15px;
}

/* ------------------------------ Footer -------------------------------------- */

.site-footer {
	background: var(--navy);
	color: var(--white-a72);
}

.footer-columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px;
	padding: 80px 0 50px;
}

.footer-col h3 {
	color: var(--white);
	font-size: 14px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin: 0 0 22px;
}

.footer-col p {
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.75;
	color: var(--white-a62);
	margin: 0 0 20px;
}

.footer-subscribe {
	display: flex;
	margin-bottom: 22px;
}

.footer-subscribe input[type="email"] {
	flex: 1;
	min-width: 0;
	padding: 12px 14px;
	border: 1px solid var(--white-a18);
	background: var(--white-a06);
	color: var(--white);
	font-size: 14px;
	border-radius: 2px 0 0 2px;
}

.footer-subscribe button {
	border: none;
	background: var(--teal);
	color: var(--white);
	padding: 0 18px;
	border-radius: 0 2px 2px 0;
	cursor: pointer;
}

.footer-subscribe button svg {
	width: 16px;
	height: 16px;
}

.footer-socials {
	display: flex;
	gap: 10px;
}

.footer-socials a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--white-a20);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.footer-socials a:hover {
	background: var(--teal);
	border-color: var(--teal);
}

.footer-socials svg {
	width: 15px;
	height: 15px;
}

.footer-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.footer-gallery div {
	aspect-ratio: 1;
	border-radius: 2px;
	overflow: hidden;
}

.footer-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.footer-bottom {
	border-top: 1px solid var(--white-a10);
	background: var(--navy-dark);
	padding: 22px 0;
}

.footer-bottom .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 13px;
	color: var(--white-a50);
}

.back-to-top {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--white-a60);
}

.back-to-top:hover {
	color: var(--white);
}

.back-to-top svg {
	width: 14px;
	height: 14px;
}

/* ------------------------------ Archive / search default --------------------- */

.archive-header,
.search-header {
	background: var(--navy);
	padding: 150px 0 60px;
	text-align: center;
}

.archive-header h1,
.search-header h1 {
	color: var(--white);
	font-size: 28px;
	margin: 0;
}

.archive-list {
	padding: 80px 0 40px;
}

.blog-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 40px;
}

.blog-pagination a,
.blog-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border-radius: 2px;
	font-family: var(--font-head);
	font-size: 13px;
	font-weight: 700;
	color: var(--ink-soft);
	background: var(--bg-alt);
	border: 1px solid var(--border);
}

.blog-pagination a:hover {
	background: var(--teal);
	color: var(--white);
	border-color: var(--teal);
}

.blog-pagination .current {
	background: var(--navy);
	color: var(--white);
	border-color: var(--navy);
}

.search-form-wrap {
	max-width: 480px;
	margin: 0 auto;
}

/* ------------------------------ Sidebar / two-column layout ------------------ */

.container.with-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 64px;
	align-items: start;
}

.with-sidebar .entry-content,
.with-sidebar .comments-area,
.with-sidebar .post-stream-item {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

.widget-area .widget {
	margin-bottom: 46px;
}

.widget-area .widget:last-child {
	margin-bottom: 0;
}

.widget-area .widget-title {
	font-family: var(--font-head);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink);
	margin: 0 0 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--teal);
}

.widget-area ul li {
	margin-bottom: 12px;
	font-size: 15px;
	line-height: 1.5;
}

.widget-area a {
	color: var(--ink-soft);
}

.widget-area a:hover {
	color: var(--teal);
}

.widget-area p {
	font-size: 15px;
	color: var(--ink-soft);
}

.widget-area .tagcloud a {
	display: inline-block;
	font-size: 12px !important;
	padding: 5px 12px;
	margin: 0 6px 8px 0;
	border: 1px solid var(--border);
	border-radius: 999px;
}

.widget-area .search-form {
	display: flex;
}

.widget-area .search-form input[type="search"] {
	flex: 1;
	min-width: 0;
	padding: 10px 12px;
	border: 1px solid var(--border);
	border-radius: 2px 0 0 2px;
	background: var(--bg-alt);
}

.widget-area .search-form button {
	border: none;
	background: var(--teal);
	color: var(--white);
	padding: 0 14px;
	border-radius: 0 2px 2px 0;
	cursor: pointer;
}

/* ------------------------------ Comments ------------------------------------ */

.comments-area {
	max-width: 720px;
	margin: 70px auto 0;
}

.comments-title {
	font-size: 20px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 26px;
}

.comment-list {
	margin: 0 0 32px;
}

.comment-body {
	padding: 22px 0;
	border-top: 1px solid var(--border);
}

.comment-author {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 14px;
}

.comment-metadata {
	font-size: 12px;
	color: var(--ink-faint);
	margin-bottom: 10px;
}

.comment-respond label {
	display: block;
	font-family: var(--font-head);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-soft);
	margin-bottom: 8px;
}

.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
	display: block;
	width: 100%;
	padding: 13px 16px;
	border-radius: 2px;
	border: 1px solid var(--border);
	background: var(--bg-alt);
	font-family: var(--font-body);
	font-size: 15px;
	margin-bottom: 20px;
}

.comment-respond textarea {
	min-height: 150px;
	resize: vertical;
}

.comment-respond .comment-form-cookies-consent {
	display: flex;
	align-items: center;
	gap: 8px;
}

.comment-respond .comment-form-cookies-consent label {
	display: inline;
	margin-bottom: 0;
	text-transform: none;
	letter-spacing: normal;
	font-weight: 400;
	font-size: 14px;
}

/* ------------------------------ 404 ------------------------------------------ */

.error-404 {
	padding: 160px 0 120px;
	text-align: center;
}

.error-404 .error-code {
	font-family: var(--font-head);
	font-size: 90px;
	font-weight: 800;
	color: var(--border);
	margin: 0;
}

.error-404 .error-title {
	font-size: 24px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin: 6px 0 28px;
}

/* ------------------------------ Responsive ------------------------------------ */

@media (max-width: 960px) {
	.portfolio-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-columns {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.footer-columns .footer-col:last-child {
		grid-column: 1 / -1;
	}

	.container.with-sidebar {
		grid-template-columns: 1fr;
		gap: 50px;
	}
}

@media (max-width: 780px) {
	.container {
		padding: 0 20px;
	}

	.main-navigation {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--navy);
		padding: 100px 30px 30px;
		display: none;
		z-index: 60;
	}

	.main-navigation.is-open {
		display: block;
	}

	.main-navigation ul {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}

	.main-navigation a {
		font-size: 15px;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.hero h1 {
		font-size: 26px;
	}

	.post-stream-item .post-title {
		font-size: 19px;
	}

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

	.footer-columns {
		grid-template-columns: 1fr;
		padding: 60px 0 30px;
	}

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

	.entry-content,
	.page-hero h1,
	.hero h1 {
		font-size: 17px;
	}
}
