/*!
Theme Name: Rzeźbiarz Paweł Andryszewski
Theme URI: http://underscores.me/
Author: HelloDot Bartłomiej Hartuna
Author URI: https://hellodot.pl/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: rzezbiarz-pawel-andryszewski
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* mulish-300 - latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 300;
  src: url('./fonts/mulish-v18-latin-ext-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* mulish-regular - latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/mulish-v18-latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* mulish-500 - latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 500;
  src: url('./fonts/mulish-v18-latin-ext-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* mulish-600 - latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 600;
  src: url('./fonts/mulish-v18-latin-ext-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* outfit-200 - latin-ext */
@font-face {
  font-display: swap;
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 200;
  src: url('./fonts/outfit-v15-latin-ext-200.woff2') format('woff2');
}

/* outfit-300 - latin-ext */
@font-face {
  font-display: swap;
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  src: url('./fonts/outfit-v15-latin-ext-300.woff2') format('woff2');
}

/* outfit-regular - latin-ext */
@font-face {
  font-display: swap;
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/outfit-v15-latin-ext-regular.woff2') format('woff2');
}

/* outfit-500 - latin-ext */
@font-face {
  font-display: swap;
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  src: url('./fonts/outfit-v15-latin-ext-500.woff2') format('woff2');
}

:root {
	--background: rgb(248, 249, 250);
	--background-opacity: rgba(248, 249, 250, 0.6);
	--background-secondary: #F5F6F8;
	--background-secondary-dark: #EFF1F3;

	--primary: #AA8A5B;
	--primary-dark: #6B6358;
	--secondary: rgb(30, 33, 39);
	--secondary-opacity: rgba(30, 33, 39, .15);

	--text-primary: #1E2127;
	--text-secondary: #33373D;
	--text-light-gray: #6B7178;


	/* --text-dark: #1E2224;
	--text-dark-opacity: rgba(30, 34, 36, .4); */

	--text-light: #F5F6F8;
	--text-light-opacity: rgb(245, 246, 248, .6);
	--text-light-opacity-2: rgb(245, 246, 248, .8);
}

* {
	box-sizing: border-box;
	color: var(--text-dark);
	font-family: 'Mulish', sans-serif;
	font-weight: 300;	
	letter-spacing: 1px;
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
}

a:focus-visible, 
button:focus-visible {
	outline: 1px solid var(--primary);
    outline-offset: 4px;
}

::selection {
    background-color: var(--primary);
    color: var(--text-light);
}

::-moz-selection {
    background-color: var(--primary);
    color: var(--text-light);
}

html {
  	scroll-behavior: smooth;
}

body {
	background-color: var(--background);
	overflow-x: hidden;
}

.container {
	inset: 0;
	margin-left: auto;
	margin-right: auto;
	padding-left: 2.125rem;
	padding-right: 2.125rem;
	width: 100%;
}

@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1140px;
	}
}

@media (min-width: 1400px) {
	.container {
		max-width: 1320px;
	}
}


section {
	display: flex;
	flex-direction: column;
	padding: 3rem 0;
	position: relative;
	row-gap: 2.5rem;
	/* margin: auto;
	max-width: 1920px; */
}

@media (min-width: 992px) {
	section {
		padding: 4rem 0;
		row-gap: 3.5rem;
	}
}


@media (min-width: 1200px) {
	section {
		padding: 5rem 0;
		row-gap: 4rem;
	}
}

section:first-of-type {
	/* padding-top: 3rem; */
}

@media (min-width: 768px) {
	.biography-grid .sticky {
		position: sticky;
		top: 8rem;
	}
}

@media (min-width: 992px) {
	.contact-grid .sticky {
		position: sticky;
		top: 8rem;
	}
}


















.hero h1 {
	font-size: 2rem;
	font-weight: 400;
	text-align: left;
}

@media (min-width: 768px) {
	.hero h1 {
		font-size: 2.5rem;
	}
}

@media (min-width: 1200px) {
	.hero h1 {
		font-size: 3rem;
	}
}

.hero .h1-label {
	color: var(--text-light-gray);
	font-weight: 300;
	text-transform: uppercase;
}




h2 {
	color: var(--text-secondary);
	font-size: 1.25rem;
	font-weight: 400;
}

@media (min-width: 768px) {
	h2 {
		font-size: 1.375rem;
	}
}

@media (min-width: 1200px) {
	h2 {
		font-size: 1.5rem;
	}
}

p.label {
	color: var(--primary);
	font-weight: 400;
}
























p, a {
	color: var(--text-secondary);
	letter-spacing: 0.06em;
	line-height: 1.65;
}

p strong {
	color: inherit;
}

p span {
	position: relative;
}

p span::before {
	background: var(--primary);
	bottom: -10%;
	content: "";
	height: 50%;
	left: -1px;
	opacity: .1;
	position: absolute;
	width: calc(100% + 2px);
	z-index: -10;
}



a {
	text-decoration: none;
	transition: all 250ms ease-in-out;
}

a:hover {
	color: var(--primary);
	cursor: pointer;
}

p strong {
	/* color: var(--primary); */
	font-weight: 400;
}







.btn-primary {
	background-color: var(--secondary);
	color: var(--text-light);
}

.btn-secondary {
	background-color: var(--background);
	border: 1px solid var(--text-primary);
	color: var(--text-primary);
}

.btn-primary, .btn-secondary {
	align-items: center;
	display: flex;
	justify-content: center;
	padding: .675rem 1.5rem;
	transition: all 250ms ease-in-out;
	width: fit-content;
}

@media (min-width: 992px) {
	.btn-primary, .btn-secondary {
		padding: .75rem 2rem;
	}
}

.btn-primary:hover {
	color: var(--text-light);
	cursor: pointer;
	filter: brightness(1.2);
}












header {
	background: var(--background);
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 1000;
}

header::before {
	background: var(--background-secondary);
	content: '';
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	transition: all 250ms ease-in-out;
	width: 100%;
	z-index: 990;
}

header.is-sticky::before {
	opacity: 1;
}

.header-wrapper {
	align-items: center;
	display: flex;
	justify-content: space-between;
	height: 6rem;
	width: 100%;
}

.header-grid {
	align-items: center;
	display: grid;
	grid-template-columns: 1fr auto auto;
	grid-template-rows: auto;
	gap: 1rem;
	position: relative;
	z-index: 1000;
}

@media (min-width: 992px) {
	.header-grid {
		grid-template-columns: 1fr auto 1fr;
		gap: 2rem;
	}
}

.header-logo {
	height: auto;
	width: 1.75rem;
}

.header-grid nav {
	display: none;
}

@media (min-width: 992px) {
	.header-grid nav {
		display: flex;
	}
}

.header-grid nav ul {
	align-items: center;
	column-gap: 4rem;
	display: flex;
	list-style: none;
}

.menu li {
	width: fit-content;
}

.header-grid nav ul li a {
	font-weight: 400;
}

.current_page_item {
	border-bottom: 1px solid var(--text-light-gray);
}

.header-contact {
	display: flex;
	justify-content: end;
}

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

.menu-toggle-open svg {
	fill: var(--text-dark);
	height: 2rem;
	width: 2rem;
}

@media (min-width: 992px) {
	.menu-toggle-open {
		display: none;
	}
}

.background-menu-mobile {
	background-color: var(--background-opacity);
	height: 100lvh;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	transition: all 150ms ease-in-out;
	visibility: hidden;
	width: 100lvw;
	z-index: 1090;
}

.background-menu-mobile.is-visible {
	opacity: 1;
	visibility: visible;
}

.menu-mobile-flex {
	align-items: start;
	background: var(--background-secondary);
	border-left: 1px solid var(--background-secondary-dark);
	display: flex;
	flex-direction: column;
	justify-content: center;
	row-gap: 4rem;
	left: 5%;
	height: 100%;
	position: fixed;
	top: 0;
	transform: translateX(100lvw);
	transition: all 250ms ease-in-out;
	visibility: hidden;
	padding-left: 3rem;
	width: 95%;
	z-index: 1100;
}

.header-logo-mobile {
	height: auto;
	width: 3rem;
}

.menu-mobile-flex .menu-toggle-close {
	cursor: pointer;
	height: 2.5rem;
	padding: .25rem;
	position: absolute;
	right: 2rem;
	top: 2rem;
	width: 2.5rem;
}

.menu-mobile-flex .menu-toggle-close svg {
	fill: var(--secondary);
	height: 100%;
	width: 100%;
}

.menu-mobile-flex.is-visible {
	transform: translateX(0);
	visibility: visible;
}

@media (min-width: 1200px) {
	.menu-mobile-flex {
		display: none;
	}
}

.menu-mobile-flex .logo-wrapper a {
	width: 15rem;
}

.menu-mobile-flex nav ul {
	display: flex;
	flex-direction: column;
	list-style-type: none;
	height: 100%;
	justify-content: center;
	row-gap: 2rem;	
}

@media (orientation: landscape) {
	.menu-mobile-flex nav ul {
		column-gap: 2rem;
		flex-direction: row;
		flex-wrap: wrap;
		row-gap: 1rem;	
	}
}

.menu-mobile-flex nav ul li a {
	color: var(--color-light);
	font-size: 1.25rem;
	font-weight: 300;
}








/* STRONA GŁÓWNA */

.hero.home {
	height: calc(100svh - 6rem);
	max-height: 800px;
	min-height: 640px;
	overflow: hidden;
	padding-bottom: 2rem;
	padding-top: 0;
	position: relative;
	width: 100%;
}

/* .hero.home:before {
	content: "";
	background: url('./assets/images/543.jpg');
	height: 100%;
	inset: 0;
	opacity: 0;
	position: absolute;
	width: 100%;
	z-index: -2;
	animation: hero-bg-fade-in 250ms ease-in-out forwards;
}

@keyframes hero-bg-fade-in {
	to {
		opacity: .3;
	}
}

.hero.home:after {
	content: "";
	background: linear-gradient(0deg, var(--background) 5%, transparent 30%, transparent 70%, var(--background) 95%),
		linear-gradient(90deg, var(--background) 5%, transparent 30%, transparent 70%, var(--background) 95%);
	height: 100%;
	inset: 0;
	position: absolute;
	width: 100%;
	z-index: -1;
} */

@media (min-width: 768px) {
	.hero.home {
		max-height: 880px;
		min-height: 680px;
	}
}

@media (min-width: 1200px) {
	.hero.home {
		max-height: 960px;
		min-height: 720px;
	}
}

.hero.home .container {
	height: 100%;
}

.hero-home-grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr auto auto;
	height: 100%;
	row-gap: 2rem;
}

.hero-home-grid > div:first-of-type {
	background: url('./assets/images/hero-background.jpg');
	background-size: cover;
	background-position: 30% center;
	height: 100%;
	margin: auto;
	max-width: 2160px;
	width: 100%;
	display: grid;
	grid-template-rows: 30% 1fr;
	
	
/* 	align-items: end;
	display: grid;
	flex-direction: column;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr 2fr;
	min-height: 0; */
}

@media (max-width: 374px) {
	.hero-home-grid > div:first-of-type {
		grid-template-rows: 25% 1fr;	
	}
}

@media (min-width: 768px) {
	.hero-home-grid > div:first-of-type {
		background-position: center center;	
		grid-template-rows: 35% 1fr;
	}
}

@media (min-width: 1200px) {
	.hero-home-grid > div:first-of-type {
		background-position: center center;	
		grid-template-rows: 30% 1fr;
	}
}

.hero-home-grid > div:first-of-type .container {
	height: 100%;
	position: relative;
}

.hero-home-grid > div:first-of-type .container:first-of-type {
	align-items: center;
	display: flex;
	justify-content: end;
}

.hero-home-grid > div:first-of-type .angel {
	bottom: 0;
	height: 100%;
	left: -6rem;
	position: absolute;
}

@media (max-width: 374px) {
	.hero-home-grid > div:first-of-type .angel {	
		left: -12rem;	
	}
}

@media (min-width: 768px) {
	.hero-home-grid > div:first-of-type .angel {
		left: -1rem;
		position: absolute;
	}
}

@media (min-width: 992px) {
	.hero-home-grid > div:first-of-type .angel {
		left: 4rem;
		position: absolute;
	}
}

@media (min-width: 1200px) {
	.hero-home-grid > div:first-of-type .angel {
		left: 10rem;
		position: absolute;
	}
}

@media (min-width: 992px) {
	.hero-home-grid > div:first-of-type {
/* 		grid-template-rows: 1fr 3fr; */
	}
}

.hero-home-grid > div:first-of-type > * {
	min-height: 0;
	min-width: 0;
}

.hero-home-grid > div:last-of-type {
	align-items: end;
	display: flex;
	justify-content: center;
}


.hero.home h1 {
	color: var(--text-light-opacity-2);
	display: flex;
	flex-direction: column;
	font-size: clamp(1.125rem, 6vw, 2rem);
	font-weight: 600;
	position: absolute;
	row-gap: .25rem;
	text-align: right;
}

.hero.home h1 span {
	font-size: 1rem;
	font-weight: 400;
}

@media (min-width: 576px) {
	.hero.home h1 {
		font-size: clamp(2rem, 6vw, 2.375rem);
/* 		margin-right: -1rem; */
	}

	.hero.home h1 span {
		font-size: 1.125rem;
	}
}

@media (min-width: 768px) {
	.hero.home h1 {
		font-size: 2.75rem;
/* 		margin-right: 2rem; */
	}

	.hero.home h1 span {
		font-size: 1.125rem;
	}
}

@media (min-width: 992px) {
	.hero.home h1 {
		font-size: 2.875rem;
		margin-right: 2rem;
	}
}

@media (min-width: 1200px) {
	.hero.home h1 {
		font-size: 3rem;
		margin-right: 8rem;
	}

	.hero.home h1 span {
		font-size: 1.25rem;
	}
}

/* .hero.home h1 {
	color: var(--text-secondary);
	font-size: clamp(2rem, 9vw, 2.75rem);
	line-height: 1.25;
	text-align: center;
}

.hero.home h1 .label {
	font-size: 1rem;
}

.hero.home h1 .gold {
	color: var(--primary);
	font-size: clamp(2rem, 9vw, 2.75rem);
	font-weight: 400;
}

@media (min-width: 576px) {
	.hero.home h1 {
		font-size: 1.625rem;
	}
	.hero.home h1 .label {
		font-size: 1.25rem;
	}
	.hero.home h1 .gold {
		font-size: 2.5rem;
	}
}

@media (min-width: 768px) {
	.hero.home h1 .gold {
		font-size: 3.5rem;
	}
}

@media (min-width: 992px) {
	.hero.home h1 {
		font-size: 1.875rem;
	}
	.hero.home h1 .gold {
		font-size: 5.25rem;
	}
}

@media (min-width: 1200px) {
	.hero.home h1 {
		font-size: 2.125rem;
	}
	.hero.home h1 .gold {
		font-size: 6rem;
	}
}

@media (min-width: 1400px) {
	.hero.home h1 {
		font-size: 2.375rem;
	}
	.hero.home h1 .gold {
		font-size: 7rem;
	}
} */

.hero-home-grid > div:last-of-type {
	align-items: center;
	display: flex;
	justify-content: center;
}

.hero-home-grid > div:last-of-type p {
	display: flex;
	justify-content: center;
	width: 6rem;
}

.hero-home-grid > div:last-of-type div {
	background-color: var(--text-primary);
	height: 1px;
	width: .5rem;
}

@media (min-width: 576px) {
	.hero-home-grid > div:last-of-type p {
		width: 7rem;
	}

	.hero-home-grid > div:last-of-type div {
		width: 2rem;
	}
}

@media (min-width: 768px) {
	.hero-home-grid > div:last-of-type p {
		width: 8rem;
	}

	.hero-home-grid > div:last-of-type div {
		width: 3rem;
	}
}

@media (min-width: 992px) {
	.hero-home-grid > div:last-of-type p {
		width: 10rem;
	}

	.hero-home-grid > div:last-of-type div {
		width: 4rem;
	}
}

@media (min-width: 1200px) {
	.hero-home-grid > div:last-of-type p {
		width: 15rem;
	}

	.hero-home-grid > div:last-of-type div {
		width: 5rem;
	}
}

.hero-home-grid a {
	margin: auto;
}

.hero-home-image-wrapper {
	align-items: start;
	display: flex;
	height: 100%;
	justify-content: center;
	width: 100%;
}

.hero-home-image-wrapper img {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    object-fit: contain;
    object-position: top;
	transform: translateY(-.875rem);
	opacity: 0;
	animation: hero-image-fade-in 500ms ease-in-out forwards;
	animation-delay: .3s;
}

@keyframes hero-image-fade-in {
	to {
		opacity: 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero.home:before {
		animation: none;
		opacity: .3;
	}

	.hero-home-image-wrapper img {
		animation: none;
		opacity: 1;
	}
}

@media (min-width: 576px) {
	.hero-home-image-wrapper img {
		transform: translateY(-1rem);
	}
}

@media (min-width: 768px) {
	.hero-home-image-wrapper img {
		transform: translateY(-1.125rem);
	}
}

@media (min-width: 992px) {
	.hero-home-image-wrapper img {
		transform: translateY(-1.375rem);
	}
}

@media (min-width: 1200px) {
	.hero-home-image-wrapper img {
		transform: translateY(-1.625rem);
	}
}

@media (min-width: 1400px) {
	.hero-home-image-wrapper img {
		transform: translateY(-1.875rem);
	}
}

.center-home-grid, .current-home-grid {
	display: grid;
	gap: 3rem 6rem;
	grid-template-columns: 1fr;
	grid-template-rows: 20rem auto;
}

@media (min-width: 992px) {
	.center-home-grid, .current-home-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
	}
}

@media (min-width: 1200px) {
	.center-home-grid, .current-home-grid { 
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
	}
}

.center-image-wrapper, .current-image-wrapper {
	position: relative;
	height: 100%;
	min-height: 16rem;
	max-height: 32rem;
	overflow: hidden;
}

.center-image-wrapper img, .current-image-wrapper img {
	position: absolute;
	inset: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.center-home-grid > div:last-of-type, .current-home-grid > div:last-of-type {
	display: flex;
	flex-direction: column;
	row-gap: 2rem;
}

.stages {
	display: flex;
	flex-direction: column;
	row-gap: .25rem;
}

.stages > div:first-of-type {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
}

.stages > div:first-of-type > div {
	align-items: center;
	display: grid;
	grid-template-columns: .75rem 1fr;
	grid-template-rows: auto;
}

.stages > div:first-of-type > div > div:first-of-type {
	background: var(--secondary-opacity);
	border-radius: 1rem;
	height: .75rem;
	width: .75rem;	
}

.stages > div:first-of-type > div > div:last-of-type {
	background: var(--secondary-opacity);
	height: 2px;
	width: 100%;
}

.stages > div:first-of-type > div:last-of-type > div:last-of-type {
	display: none;
}

.stages > div:last-of-type {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
}

.stages > div:last-of-type > p {
	color: var(--text-light-gray);
	font-size: .875rem;
	font-weight: 400;
	/* text-transform: uppercase; */
}

.stage-active > div {
	background: var(--primary) !important;
}

.stage-active:not(:has(~ .stage-active)) div:last-child {
	background: var(--secondary-opacity) !important;
}






















.work-text {
	display: flex;
	flex-direction: column;
}

.work-text > p {
	color: var(--text-primary);
	font-size: 1.125rem;
	font-weight: 400;
}

.work-text > div {
	align-items: center;
	column-gap: .5rem;
	display: flex;
	flex-wrap: wrap;
}

.work-text > div > p {
	color: var(--text-light-gray);
	font-size: .875rem;
	font-weight: 400;
	text-transform: uppercase;
}

.work-text > div > div {
	background: var(--text-light-gray);
	border-radius: .25rem;
	height: .125rem;
	width: .125rem;
}

















.hero .hero-grid {
	align-items: end;
	display: grid;
	gap: 3rem 6rem;
	grid-template-columns: 1fr;
	grid-template-rows: auto;
}

@media (min-width: 992px) {
	.hero .hero-grid {
		grid-template-columns: 1fr 2fr;
	}
}

@media (min-width: 1200px) {
	.hero .hero-grid {
		grid-template-columns: 1fr 2fr;
	}
}

.hero .hero-grid > div {
	display: flex;
	flex-direction: column;
	/* gap: 1rem; */
}

.hero .hero-grid > div img {
	height: auto;
	max-height: 16rem;
	object-fit: cover;
	width: 100%;
}

@media (min-width: 768px) {
	.hero .hero-grid > div img {
		max-height: 20rem;
	}
}

@media (min-width: 1200px) {
	.hero .hero-grid > div img {
		max-height: 24rem;
	}
}

.hero .hero-grid .hero-content--hidden {
	display: none;
}

[data-hero-content] {
	animation: workFadeIn 250ms ease-in-out both;
}

@keyframes workFadeIn {
	from {
		opacity: 0;
		/* transform: translateY(.25rem); */
	}
	to {
		opacity: 1;
		/* transform: translateY(0); */
	}
}















.text {
	display: flex;
	flex-direction: column;
	row-gap: 1.5rem;
}

.heading-text {
	display: flex;
	flex-direction: column;
	row-gap: .75rem;
}

/* O mnie */
.biography-grid {
	align-items: start;
	display: grid;
	gap: 3rem 6rem;
	grid-template-columns: 1fr;
	grid-template-rows: auto;
}

@media (min-width: 768px) {
	.biography-grid {
		grid-template-columns: 1fr 2fr;
	}
} 

@media (min-width: 1200px) {
	.biography-grid {
		grid-template-columns: 1fr 2fr;
	}
}


.images-grid {
	display: grid;
	gap: 3rem 6rem;
	grid-template-columns: 1fr;
	grid-template-rows: auto;
}

@media (min-width: 992px) {
	.images-grid {
		grid-template-columns: 1fr 2fr;
	}
}

.images-grid > img {
	height: 16rem;
	object-fit: cover;
	width: 100%;
}

@media (min-width: 768px) {
	.images-grid > img {
		height: 20rem;
	}
}

@media (min-width: 1200px) {
	.images-grid > img {
		height: 24rem;
	}
}



















.gallery-grid {
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.gallery-grid {
		gap: 3rem;
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 1200px) {
	.gallery-grid {
		gap: 6rem;
	}
}

.work {
	display: flex;
	flex-direction: column;
	row-gap: .75rem;
}

.work .line {
	background-color: var(--secondary-opacity);
	height: 1px;
	width: 100%;
}

.work .info {
	display: flex;
	flex-direction: column;
	row-gap: .25rem;
}

.work .info > div:first-of-type {
	align-items: last baseline;
	column-gap: .5rem;
	display: flex;
}

.work .info > div:first-of-type > p:first-of-type {
	color: var(--primary);
	font-size: .875rem;
	font-weight: 400;
}

.work .info > div:first-of-type > p:last-of-type {
	color: var(--text-dark);
	font-size: 1.375rem;
	font-weight: 400;
}

.work .info > div:last-of-type {
	align-items: center;
	column-gap: .75rem;
	display: flex;
	flex-wrap: wrap;
}

.work .info > div:last-of-type > p {
	color: var(--primary-dark);
	font-size: .875rem;
	/* text-transform: uppercase; */
}

.work .info > div:last-of-type > div {
	background: var(--primary-dark);
	height: 1px;
	width: .25rem;
}

.gallery-grid.home-gallery {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.gallery-grid.home-gallery {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1200px) {
	.gallery-grid.home-gallery {
		grid-template-columns: repeat(3, 1fr);
	}
}

.gallery-grid.home-gallery .glightbox > img {
	height: 18em;
	object-fit: cover;
	width: 100%;
}






.glightbox > img {
	height: 20em;
	object-fit: cover;
	width: 100%;
}

@media (min-width: 576px) {
	.glightbox > img {
		height: 24em;
	}
}

@media (min-width: 768px) {
	.glightbox > img {
		height: 20em;
	}
}

@media (min-width: 992px) {
	.glightbox > img {
		height: 24em;
	}
}

@media (min-width: 1200px) {
	.glightbox > img {
		height: 28em;
	}
}

@media (min-width: 1400px) {
	.glightbox > img {
		height: 32em;
	}
}

.gallery-tabs {
	display: flex;
	column-gap: 2rem;
	margin-top: 3rem;
}

.gallery-tab {
	background: none;
	border: none;
	border-bottom: 1px solid transparent;
	
	color: var(--text-light-gray);
	font-weight: 400;
	text-transform: uppercase;
	cursor: pointer;
	/* font-size: 0.875rem; */
	letter-spacing: 0.1em;
	padding: 0.125rem 0;
	text-transform: uppercase;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.gallery-tab.is-active {
	border-bottom-color: var(--text-light-gray);
	/* color: var(--text-secondary); */
	font-weight: 500;
}

.work {
	animation: workFadeIn 500ms ease-in-out both;
	animation-delay: calc(var(--i, 0) * 100ms);
}

.work--hidden {
	display: none;
}
























.contact-grid {
	align-items: start;
	display: grid;
	gap: 3rem 6rem;
	grid-template-columns: 1fr;
	grid-template-rows: auto;
}

@media (min-width: 992px) {
	.contact-grid {
		grid-template-columns: 1fr 1fr;
	}
} 

@media (min-width: 1200px) {
	.contact-grid {
		grid-template-columns: 1fr 2fr;
	}
}

.contact-info {
	margin-top: 2rem;
}

.contact-info p strong {
	font-weight: 600;
}

.contact-info a {
	font-weight: 500;
}

.contact-info > div:first-of-type { 
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: end;
}

.contact-info > div:first-of-type > div {
	display: flex;
	gap: .75rem;
}

.contact-info > div:first-of-type > div svg {
	fill: var(--primary);
	height: 1.5rem;
	transform: translateY(.125rem);
	width: 1.5rem;
}

.not-found-grid {
	align-items: center;
	display: grid;
	height: 40rem;
}

footer {
	background-color: var(--secondary);
	padding-bottom: 4rem;
	padding-top: 4rem;
}

footer p, footer a {
	color: var(--text-light-opacity);
	font-size: clamp(.875rem, 3.5vw, 1rem);
	/* line-height: 2rem; */
}

footer a {
	color: var(--text-light);
}

footer p strong {
	color: var(--text-light);
	font-weight: 600;
}

footer a {
	text-decoration: none;
}

.footer-flex {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.footer-info {
	align-items: end;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto 1px auto;
	gap: 2rem;
}

@media (min-width: 768px) {
	.footer-info {
		grid-template-columns: auto 1px 1fr;
		grid-template-rows: auto;
		gap: 3rem;
	}
}

.footer-logo {
	height: auto;
	width: 3rem;
}

@media (min-width: 768px) {
	.footer-logo {
		width: 3rem;
	}
}

.footer-info > div:nth-of-type(2) {
	background-color: var(--background);
	height: 100%;
	opacity: .2;
	width: 100%;
}

.footer-info > div:last-of-type { 
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: end;
}

.footer-info > div:last-of-type > div {
	display: flex;
	gap: .75rem;
}

.footer-info > div:last-of-type > div svg {
	fill: var(--text-light);
	height: 1.375rem;
	transform: translateY(.125rem);
	width: 1.375rem;
}

.footer-line {
	background-color: var(--background);
	height: 1px;
	opacity: .2;
	width: 100%;
}

.footer-copyright {
	display: flex;
	flex-direction: column;
	gap: .25rem;	
}

.footer-copyright > div:first-of-type {
	display: flex;
	flex-direction: column;
	gap: .25rem;	
	justify-content: space-between;
}

@media (min-width: 768px) {
	.footer-copyright > div:first-of-type {
		flex-direction: row;	
	}
}





.break-line {
	background-color: var(--secondary-opacity);
	height: 1px;
	width: 100%;
}