/* ========================================
   CSS RESET & BASE STYLES */

html, body, div, span, h1, h2, h3, h4, p, a, img, figure, figcaption, footer, header, main {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

figure, figcaption, footer, header, main {
	display: block;
}

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

/* ========================================
   FONT DECLARATIONS - SIMPLIFIED */

@font-face {
	font-family: 'NB International Regular';
	src: url('../fonts/nb-int-regular.woff2') format('woff2'),
		 url('../fonts/nb-int-regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	text-rendering: optimizeLegibility;
}

@font-face {
	font-family: 'NB International Light';
	src: url('../fonts/nb-int-light.woff2') format('woff2'),
		 url('../fonts/nb-int-light.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

/* ========================================
   COLOR VARIABLES */

:root {
	--bg-color: #cdcdcd;
	--text-color: #2b2b2b;
	--text-light: #b4b4b4;
	--text-hover: #2b2b2b;
	--card-hover: rgba(180, 180, 180, 0.5);
}

::selection {
	background-color: #101010;
	 color: #cdcdcd;
}

/* ========================================
   ANIMATIONS - CONSOLIDATED */

@keyframes fade-in {
	0%, 10% { opacity: 0; }
	90% { opacity: 1; }
}

/* ========================================
   LAYOUT HELPERS & CONTAINERS */

.inner-styles {
	display: block;
	width: 100%;
	padding-left: 1%;
	padding-right: 0;
}

.inner-styles:after {
	content: "";
	display: table;
	clear: both;
}

.waterfall.inner-styles {
	display: flex;
	flex-wrap: wrap;
}

.waterfall.inner-styles:before, 
.waterfall.inner-styles:after {
	display: none;
}

.card figure {
	margin: 0;
	padding: 0;
}

@media (max-width:800px) {
	.inner-styles {
		padding-left: 8px;
		padding-right: -30px;
	}
}

/* ========================================
   BASE HTML & BODY STYLES */

html, body {
	max-width: 100%;
	width: 100%;
	min-height: 100%;
	overflow-x: hidden;
}

html {
	font-size: 22px;
	
}

body {
	background-color: var(--bg-color);
	font-family: "NB International Regular", Helvetica, Arial, sans-serif;
	color: var(--text-color);
	font-weight: normal;
	font-size: 1rem;
	letter-spacing: -0.035em;
	word-spacing: -0.025em;
	-webkit-font-smoothing: antialiased;
}

body.page-photos {
	font-size: 1rem;
}

body.page-photos main {
	margin-top: 0;
	padding-top: 2rem;
}

/* ========================================
   TYPOGRAPHY STYLES */

h1, h2, h3 {
	font-weight: 400;
}

p {
	margin: 0;
}

.text-large {
	font-size: 1.7rem;
	line-height: 1;
	letter-spacing: -0.035em;
	word-spacing: -0.025em;
}

.sub-title {
	color: var(--text-color);
	animation: fade-in 1.25s;
}

/* ========================================
   LINK STYLES */

a {
	color: var(--text-color);
	text-decoration: none;
}

a:hover {
	color: var(--text-hover);
}

/* ========================================
   MEDIA & IMAGES */

figure {
	margin: 0;
	padding: 0;
}

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

/* ========================================
   MAIN LAYOUT & SECTIONS */

main.waterfall {
	margin-top: 3vh;
}

/* ========================================
   HEADER STYLES */

.site-header {
	height: 4.86rem;
	padding: 0.79rem 0 1.18rem;
	background: transparent;
	position: relative;
	z-index: 100;
	transition: all 0.3s ease;
}

.site-header a {
	transition: color 0.3s ease;
}

.site-header a:hover {
	color: var(--text-hover);
}

.site-header.-placeholder {
	position: static;
	height: 0;
	padding: 0;
	visibility: hidden;
}

.header-title {
	width: 100%;
	margin-right: 50px;
	float: left;
	padding-left: 2.2vw;
	padding-top: 22px;
}

.mobile-header {
	top: 0;
	left: 0;
	right: 0;
	padding: 10px 0;
	z-index: 110;
	margin-bottom: 3vh;
	transition: all 0.3s ease;
}

/* ========================================
   FOOTER STYLES */

.site-footer {
	margin-bottom: 50px;
	margin-top: 0rem;
}

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

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

.footer-contact-prompt {
	margin-bottom: 3rem;
	display: none;
	padding-left: 36px;
	margin-top: 8rem;
}

[data-template="home"] .footer-contact-prompt {
	display: block;
}

.col-full {
	width: calc(100% - 50px);
	margin-right: 50px;
	float: left;
}

.col-split-half {
	width: calc(50% - 50px);
	margin-right: 50px;
	float: left;
	padding-left: 36px;
	padding-top: 30px;
}

/* ========================================
   CARD SYSTEM */

.card {
	width: 33%;
	margin-right: 1%;
	margin-bottom: 8%;
	position: relative;
}

.card figcaption {
	position: relative;
}


.card .card-image:after {
	content: '';
	width: 7rem;
	height: 7rem;
	background: var(--card-hover);
	position: absolute;
	bottom: 3rem;
	left: -0.9rem;
	border-radius: 50%;
	opacity: 0;
	transform: scale(0.33);
	transition: all 0.3s ease;
}

.card:hover .card-image:after {
	transform: scale(1);
	opacity: 1;
}

.card.-full {
	width: 76%;
	margin-right: 3%;
}

.card-image {
	margin-bottom: -1.2rem;
}

.card-image .home-media-sizer {
	padding-bottom: 66.67%;
	position: relative;
	width: 100%;
	height: 0;
	overflow: hidden;
}

.card-image[data-orientation="portrait"] .home-media-sizer {
	padding-bottom: 133.33%;
}

.card-image[data-orientation="landscape"] .home-media-sizer {
	padding-bottom: 73%;
}

.card-image[data-orientation="square"] .home-media-sizer {
	padding-bottom: 100%;
}

.card-image .home-media-sizer > * {
	border-radius: 6px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card.-full .card-image {
	margin-bottom: -1.2rem;
}

.card.-full .card-image .home-media-sizer {
	padding-bottom: 70%;
}

/* ========================================
   titleS */

.title {
	font-family: 'NB International Regular';
	letter-spacing: -0.05em;
	font-size: 40px;
	line-height: 1;
	padding-left: 2.2vw;
	padding-top: 40px;
	margin-right: 30px;
}

/* ========================================
   PHOTO GALLERY STYLES */

.page-photos .content {
	display: block;
	max-width: 1200px !important;
	padding-left: 1%;
	margin-right: 1%;
	float: left;
	clear: both;
	text-align: left;
}

.page-photos img {
	max-width: 100v;
	max-height: 80vh;
	border-radius: 6px;
	margin-top: 8em;
	transition: background 0.25s ease-in-out;
	display: block;

}

.page-photos .site-footer {
	margin-top: 4rem;
}

.page-photos h1 {
	font-family: 'NB International Regular';
	font-size: 120px;
	letter-spacing: -0.05em;
	padding-left: 12px;
	line-height: 0.85em;
	margin-bottom: 1.3rem;
	text-rendering: optimizeLegibility;
	animation: fade-in 1.25s;
}

.page-photos h2 {
	font-family: 'NB International Regular';
	font-size: 40px;
	letter-spacing: -0.03em;
	line-height: 1em;
	margin-bottom: 0.5rem;
	padding-left: 20px;
	font-weight: normal;
	text-rendering: optimizeLegibility;
	animation: fade-in 1.25s;
}

.page-photos h3 {
	font-family: 'NB International Regular';
	font-size: 28px;
	letter-spacing: -0.03em;
	line-height: 1em;
	margin: 34px 0 50px 0;
	padding-left: 20px;
	text-rendering: optimizeLegibility;
	animation: fade-in 1.25s;
}

.page-photos h4 {
	font-family: 'NB International Light';
	font-size: 28px;
	letter-spacing: -0.03em;
	line-height: 1.3em;
	margin-bottom: 0.5rem;
	padding-left: 20px;
	padding-right: 5em;
	font-weight: normal;
	text-rendering: optimizeLegibility;
	animation: fade-in 1.25s;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

@media (min-width:801px) {
	.mq-md-down-only {
		display: none !important;
	}
}

@media (max-width:800px) {
	.mq-lg-up-only {
		display: none !important;
	}
}

@media (max-width:540px) {
	.mq-md-up-only {
		display: none !important;
	}
}

@media (min-width:541px) {
	.mq-sm-down-only {
		display: none !important;
	}
}

/* ========================================
   RESPONSIVE BREAKPOINTS */

/* Extra Large Screens */
@media (min-width:1801px) {
	html {
		font-size: 24px;
	}
	.title {
		font-size: 134px;
		line-height: 1.2;
	}
}

/* Large Desktop */
@media (min-width:1200px) {
	html {
		font-size: 20px;
	}
	.title {
		font-family: 'NB International Regular';
		letter-spacing: -0.05em;
		font-size: 40px;
		line-height: 1;
		padding-left: 2.2vw;
		padding-top: 40px;
		margin-right: 30px;
	}
	.sub-title {
		font-size: 28px;
		font-family: 'NB International Regular';
		letter-spacing: -0.04em;
		line-height: 1;
		padding-top: 10px;
	}
}

/* Below Large Desktop */
@media (max-width:1200px) {
	html {
		font-size: 20px;
	}
	.title {
		font-family: 'NB International Regular';
		letter-spacing: -0.055em;
		font-size: 1.8rem;
		line-height: 0.90em;
		padding-left: 2.2vw;
		margin-top: 0px;
	}
	.sub-title {
		font-size: 1.4rem;
		font-family: 'NB International Regular';
		letter-spacing: -0.035em;
		line-height: 1em;
		margin-top: 10px;
	}
}

/* Tablet & Below */
@media (max-width:800px) {
	html {
		font-size: 22px;
	}
	
	.card {
		width: 49%;
		margin-right: 1%;
	}
	
	.card.-full {
		width: calc(100% - 20px);
		margin-right: 20px;
	}
	
	.card-image .home-media-sizer > * {
		border-radius: 6px;
	}
	
	main {
		padding-bottom: 3.55rem;
	}
	
	main.waterfall {
		padding-bottom: 0;
		margin-top: 0;
	}
	
	.title {
		font-size: 28px;
		line-height: 1.1;
		margin-right: 28px;
	}
	
	.mobile-text-3 {
		font-size: 1rem !important;
		line-height: 1.25 !important;
		padding-bottom: 40px;
	}
	
	.text-large {
		font-size: 1.7rem;
	}
	
	.sub-title {
		font-size: 22px;
		font-family: 'NB International Regular';
		line-height: 1.1;
	}
	
	.mobile-text-2 {
		font-size: 1.3rem !important;
		line-height: 1 !important;
	}
	
	.header-title {
		width: 100%;
		margin-right: 20px;
	}
	
	.site-footer {
		margin-bottom: 20px;
		margin-top: 1rem;
		padding-left: 2.2vw;
	}
	
	.footer-contact-prompt {
		margin-bottom: 2.5rem;
		margin-top: 2rem;
		padding-left: 2.2vw;
	}
	
	.col-full {
		width: calc(100% - 20px);
		margin-right: 20px;
		padding-left: 2.2vw;
	}
	
	.col-split-half {
		width: calc(100% - 50px);
		margin-right: 50px;
		padding-left: 2.2vw;
	}
}

/* Mobile */
@media (max-width:540px) {
	html {
		font-size: 21px;
	}
	
	.card {
		width: calc(100% - 50px);
		margin-right: 50px;
		margin-bottom: 0.5rem;
	}
	
	.card.-full {
		width: calc(100% - 50px);
		margin-right: 50px;
	}
	
	.title {
		font-size: 30px;
		line-height: 1.0;
		margin-top: 0px;
	}
	
	.text-large {
		font-size: 1.25rem;
	}
	
	.sub-title {
		font-size: 17px;
		font-family: 'NB International Regular';
		line-height: 1.3;
		letter-spacing: -0.03em;
		margin-top: 3px;
	}
	
	.header-title {
		width: calc(100% - 50px);
		margin-right: 50px;
	}
	.page-photos img {
		margin-top: 5em;
	
	}
	.page-photos h1 {
		font-size: 15vw;
		padding-left: 16px;
	}
	
	.page-photos h2 {
		font-size: 5vw;
		line-height: 0.85em;
	}
	
	.page-photos h3 {
		font-size: 1rem;
		line-height: 0.85em;
	}

	.page-photos h4 {
		font-size: 5vw;
		line-height: 1.2em;
		padding-right: 3em;
	}}

/* Mobile Overlap */
@media (max-width:540px) and (max-width:800px) {
	.card {
		width: calc(100% - 8px);
		margin-right: 8px;
	}
	
	.card.-full {
		width: calc(100% - 8px);
		margin-right: 8px;
	}
	
	.card-image {
		margin-bottom: -1.2rem;
	}
	
	.header-title {
		width: calc(100% - 20px);
		margin-right: 20px;
	}
	
	.col-split-half {
		width: calc(100% - 20px);
		margin-right: 20px;
	}
}

/* Small Mobile */
@media (max-width:320px) {
	html {
		font-size: 18px;
	}
}



html {
	scroll-behavior: smooth;
}