@charset "UTF-8";
/*
Theme Name: One Park
Theme URI: https://www.oneparkresidence.com/
Author: k4media
Author URI: https://k4media.com/
Description: Custom WordPress Theme for One Park Residence
Requires at least: 6.0
Tested up to: 6.2
Requires PHP: 7.4
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: onepark
One Park Theme, (C) 2024 One Park
*/
:root {
	--color-black: #000000;
	--color-dark-gray: #333333;
	--color-gray: #7D7D7D;
	--color-gray-disabled: #C8C8C8;
	--color-onepark-gray: #58595B;
	--color-onepark-gray-10: rgba(88, 89, 91, .1);
	--color-onepark-green: #254F46;
	--color-onepark-cream: #F0E9C8;
	--color-onepark-cream-90: rgba(240, 233, 200, .85);
	--color-onepark-gold: #C6AE82;
	--color-white: #fff;
	--color-error-dark: #ED4337;
	--color-error-light: #FDECEB;
	--font-size-smaller: 12px;
	--font-size-small: 14px;
	--font-size-body: 16px;
	--font-size-large: 18px;
	--font-size-larger: 22px;
	--font-size-big: 28px;
	--font-size-huge: 38px;
	--font-size-jumbo: 52px;
	--font-size-super-jumbo: 72px;
	--setting-silo-max-width: 1376px;
	--setting-narrow-max-width: 1088px;
	--setting-button-padding: .5em 1.2em .5em 1.2em;
	--setting-body-font: Calibri, sans-serif;
	--setting-letter-spacing: 1px;
	--setting-transition-speed: .25s;
}
@font-face{
    font-family:"HelveticaNeueLTW0575Bold";
    src:url("assets/fonts/HelveticaNeueLTW0575Bold.woff2") format("woff2"),
	url("assets/fonts/HelveticaNeueLTW0575Bold.woff") format("woff");
}
@font-face{
    font-family:"HelveticaNeueLTW0555Roman";
    src:url("assets/fonts/HelveticaNeueLTW0555Roman.woff2") format("woff2"),
	url("assets/fonts/HelveticaNeueLTW0555Roman.woff") format("woff");
}
html {
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
}
body {
	font-family: HelveticaNeueLTW0555Roman, sans-serif;
	color: var(--color-dark-gray);
	margin: 0;
	padding: 0;
}
body.noscroll {
	overflow: hidden;
}
.silo {
	margin-left: auto;
	margin-right: auto;
	max-width: var(--setting-silo-max-width);
	padding-left: 16px;
	padding-right: 16px;
}
.narrow {
	margin-left: auto;
	margin-right: auto;
	max-width: var(--setting-narrow-max-width);
}
section {
	overflow: hidden;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 400; margin: 0; padding: 0;
}
fieldset { border: 0;}
#page-hero-copy h1,
#page-header h1,
.page-lead header h1 {
	font-size: clamp(2.375rem, 1.4896rem + 4.4271vw, 4.5rem);
	letter-spacing: var(--setting-letter-spacing);
	margin: auto;
	max-width: 70%;
	text-align: center;
	text-transform: uppercase;
	z-index: 1;
}
p, ul, li {
	line-height: 1.8em;
}
a, .page-lead a.button {
	text-decoration: none;
}
p:empty {
	display: none;
}
#header {
	align-items: center;
	background-color: var(--color-onepark-green);
	display: flex;
	height: 80px;
}
#header .site-name {
	color: var(--color-white);
	display: flex;
	font-size: var(--font-size-huge);
	letter-spacing: var(--setting-letter-spacing);
	margin: 0;
	position: relative;
	text-transform: uppercase;
}
.header-stage {
	align-items: center;
	display: flex;
	flex: 0 0 100%;
	justify-content: space-between;
}
.primary-navigation-stage {
	align-items: center;
	display: flex;
}
.primary-navigation {
	margin-top: 8px;
}
.primary-navigation ul {
	margin:0;
	padding: 0;
	position: relative;
}
.primary-navigation li {
	display: inline;
	padding-left: 1.4em;
	position: relative;
}
.primary-navigation a {
	border-bottom: solid 5px var(--color-onepark-green);
	color: var(--color-onepark-cream);
	display: inline-block;
	font-weight: 600;
	letter-spacing: .5px;
	line-height: 68px;
	text-decoration: none;
	text-transform: uppercase;
}
.primary-navigation a:hover,
.primary-navigation .current-menu-item a,
.primary-navigation .current-menu-parent a {
	border-bottom: solid 4px var(--color-white);
	color: var(--color-white);
	line-height: 68px;
}
.primary-navigation li:hover a {
	border-bottom: solid 4px var(--color-white);
	color: var(--color-white);
}
.primary-navigation .sub-menu {
	background-color: var(--color-onepark-green);
	left: -9999em;
	position: absolute;
	width: 15em;
	z-index: 10;
}
.primary-navigation .sub-menu li {
	padding: 0;
}
.primary-navigation .sub-menu a {
	border: 0;
	color: var(--color-onepark-cream);
	display: block;
	line-height: 2.5em;
	text-indent: 1.25em;
}
.primary-navigation .sub-menu a:hover {
	background-color: rgba(255,255,255,.1);
	border: 0;
	color: var(--color-white);
}
.primary-navigation li:hover > .sub-menu {
	left: 1.4em;
	padding-top: 1em;
}
.primary-navigation li:hover .sub-menu a {
	border: 0;
}
/**
 * Buttons
 */
.button {
	display: inline-block;
	font-weight: 600;
	padding: var(--setting-button-padding);
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: all var(--setting-transition-speed);
}
.button.cta,
.primary-navigation .cta a {
	border: solid 2px var(--color-white);
	color: var(--color-white);
	line-height: 1.2em;
	padding: var(--setting-button-padding);
}
.button.cta:hover,
.primary-navigation .cta a:hover {
	background-color: var(--color-white);
	border: solid 2px var(--color-white);
	color: var(--color-onepark-green);
	transition: all var(--setting-transition-speed);
}
.with-background {
	background-color: var(--color-onepark-gray-10);
    padding: 64px 0 64px 0;
}
.button.cta.green {
	background-color: var(--color-onepark-green);
	border: solid 2px var(--color-onepark-green);
	color: var(--color-white);
}
.button.cta.green:hover {
	background-color: var(--color-onepark-gold);
	border: solid 2px var(--color-onepark-gold);
	color: var(--color-black);
}
.button.ghost.gray {
	/* background-color: var(--color-white); */
	border: solid 2px var(--color-gray);
	color: var(--color-gray);
}
.button.ghost.gray.transparent {
	background-color: transparent;
}
.button.ghost.gray:hover {
	/* background-color: var(--color-white);*/
	border: solid 2px var(--color-black);
	color: var(--color-black);
}
.button.ghost.gray.transparent:hover {
	background-color: transparent;
}
.button.ghost.black {
	background-color: transparent;
	border: solid 2px var(--color-black);
	color: var(--color-black);
}
.button.ghost.black:hover {
	background-color: var(--color-black);
	border: solid 2px var(--color-black);
	color: var(--color-white);
}
.page-lead .button {
	margin-top: 1em;
}
/**
 * Hamburger
 */
.hamburger {
  padding: 8px 0 0 20px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }
  .hamburger.is-active:hover {
    opacity: 0.7; }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: var(--color-onepark-cream); }
.hamburger-box {
  width: 32px;
  height: 18px;
  display: inline-block;
  position: relative; }
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 32px;
    height: 2px;
    background-color: var(--color-onepark-cream);
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -8px; }
  .hamburger-inner::after {
    bottom: -8px; }
	.hamburger-stage {
		z-index: 99;
	}
/*
* Spin
*/
.hamburger--spin .hamburger-inner {
transition-duration: 0.22s;
transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spin .hamburger-inner::before {
	transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
.hamburger--spin .hamburger-inner::after {
	transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);}
.hamburger--spin.is-active .hamburger-inner {
transform: rotate(225deg);
transition-delay: 0.12s;
transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
.hamburger--spin.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
.hamburger--spin.is-active .hamburger-inner::after {
	bottom: 0;
	transform: rotate(-90deg);
	transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }
/*
 * Feature Blocks
 */
.feature-block header {
    text-align: center;    
}
.feature-block h1 {
    font-size: var(--font-size-huge);
}
.feature-block h2 {
	color: var(--color-onepark-gray);
    font-size: var(--font-size-larger);
}
#page-lead header h2:before,
.feature-block h2:before {
    border-bottom: solid 1px var(--color-onepark-gray);
    content: " ";
    display: block;
    margin: 1em auto 1em auto;
    width: 8%;
}
/*
 * Single Unit
 */
.single-unit #page-hero-overlay.overlay {
	background-color: rgba(0, 0, 0, .15);
}
#onepark-unit {
	display: flex;
	gap: 32px;
	margin: 62px auto 64px auto;
}
#onepark-unit .description {
	color: var(--color-dark-gray);
	width: 42%
}
#onepark-unit .description h4 {
	color: var(--color-onepark-green);
	font-weight: 600;
}
#onepark-unit .highlights {
	width: 58%
}
#onepark-unit figure {
	border: solid 1px rgba(88, 89, 91, .15);
	padding: 32px;
}
#onepark-unit figure img {
	width: 100%;
}
#onepark-unit .links {
	margin-top: 32px;
}
#onepark-unit .links .button {
	margin-top: 8px;
}
#page-slider.slider-stage {
	position: relative;
}
#page-slider.slider-stage div {
	margin: auto;
	max-width: 90%;
}
#page-slider.slider-stage div img {
	width: 100%;
}
#slider-stage {
	display: none;
}
#slider-stage.slider div {
	width: 100%;
}
#slider-stage.slider div img {
	width: 100%;
}
/*
 * Overlay
 */
 #overlay-stage, #overlay-menu-hold {
	display: block;
	background-color: rgba(0,0,0,0);
	height: 100vh;
	left: 0;
	overflow: hidden;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: -1;
	-webkit-overflow-scrolling: touch;
-webkit-transition: background .15s ease-out;
     -moz-transition: background .15s ease-out;
       -o-transition: background .15s ease-out;
          transition: background .15s ease-out;
}
#overlay-stage.show {
	align-items: center;
	background-color: rgba(0,0,0,.8);
	display: flex;
	justify-content: center;
	z-index: 100;
-webkit-transition: background .15s ease-out;
     -moz-transition: background .15s ease-out;
       -o-transition: background .15s ease-out;
          transition: background .15s ease-out;
}
#overlay-close, #overlay-menu-close {
	cursor: pointer;
	position: absolute;
	top: 20px;
	right: 20px;
	width: 30px;
	z-index: 100000;
}
#overlay-close img, #overlay-menu-close img {
	object-fit: contain;
	width: 100%;
}
#overlay-content-stage {
	background-color: var(--color-settings-overlay);
	/* background-image: url(assets/media/loading2.svg);
	background-position: 50% 50%;
	background-repeat: no-repeat; */
	margin: auto;
	max-height: 60%;
	max-width: 60%;
	position: relative;
}
#overlay, #overlay-content-stage {
	max-width: 1080px;
	width: 100%;
}
#overlay-content-stage .slider {
	height: auto;
}
/*
* Overlay menu 
*/
#overlay-menu-hold {
	align-items: center;
	background-color: var(--color-onepark-green);
	display: none;
	z-index: 0;
}
#overlay-menu-hold.show {
	display: flex;
	z-index: 99;
}
#overlay-menu-wrapper {
	width: 100%;
}
#overlay-menu-header {
	text-align: center;
}
#overlay-menu-header img {
	/* display: block; */
	max-width: 220px;
	/* margin: auto; */
	opacity: .75;
}
#overlay-menu-header a {
	display: inline-block;
	margin-top: 2em;
}
#overlay-menu-stage {
	display: flex;
	flex-shrink: 0;
	justify-content: space-between;
	margin: 2em auto 0 auto;
	max-height: 60%;
	max-width: 60%;
	overflow: hidden;
	position: relative;
	width: 100%;
}
#overlay-menu-stage h4 {
	color: var(--color-onepark-gold);
	font-size: var(--font-size-large);
	font-weight: 600;
	text-transform: uppercase;
}
#overlay-menu-stage a {
	color: var(--color-onepark-cream);
}
#overlay-menu-stage a:hover {
	border-bottom: dotted 1px var(--color-white);
	color: var(--color-white);
}
#overlay-menu-stage .schedule-a-tour a {
	color: var(--color-white);
	font-weight: 600;
}
#overlay-menu-stage ul {
	margin: 0.5em 0 2em 0 ;
	padding: 0;
}
#overlay-menu-stage li {
	list-style-type: none;
}
/*
* Page Content 
*/
.two-column-stage {
	align-items: flex-start;
	display: flex;
	justify-content: space-between;
	margin: 64px auto 64px auto;
}
.two-column-stage.sidebar-left .page-content {
	width: 25%
}
.two-column-stage.sidebar-left aside {
	width: 66%
}
.two-column-stage .page-content,
.two-column-stage.sidebar-right .page-content {
	width: 66%
}
.two-column-stage aside,
.two-column-stage.sidebar-right aside {
	width: 25%
}
.two-column-stage.sidebar-5050 .page-content, 
.two-column-stage.sidebar-5050 aside {
	width: 45%
}
.two-column-stage.sidebar-none {
	justify-content: center;
}
.two-column-stage.sidebar-none .page-content {
	width: 66%
}
.two-column-stage.sidebar-none aside {
	display: none;
}
.two-column-stage aside .logo {
	text-align: center;
}
.two-column-stage aside img {
	margin-bottom: 64px;
}
.page-content h1, .sidebar h1 {
	color: var(--color-onepark-green);
	font-size: var(--font-size-huge);
}
.page-content h2, .sidebar h2 {
	font-size: var(--font-size-big);
}
.page-content h3, .sidebar h3 {
	font-size: var(--font-size-larger);
}
.page-content h4, .sidebar h4 {
	font-size: var(--font-size-large);
}
.sidebar h1, .sidebar h2, .sidebar h3, .sidebar h4 {
	font-weight: 600;
}
.sidebar p {
	color: var(--color-dark-gray);
}
.entry-content .with-background:last-child {
	margin-bottom: 0;
}
.page-lead a {
	color: ;
	text-decoration: underline;
}
.page-content h3,
.page-content h4 {
	font-weight: 600;
}
.page-content h3 + h4 {
	margin-top: 1em;
}
.page-content h4 {
	color: var(--color-onepark-green);
}
.sidebar.event {
	border: solid 1px var(--color-gray-disabled);
	padding: 2em;
}
.sidebar.event h3 {
	margin-bottom: 1em;
}
.sidebar.event h4:first-child {
	margin-top: 0;
}
.event .entry {
	display: flex;
	margin-bottom: 1.5em;
}
.event .entry:last-child {
	margin-bottom: 0;
}
.event .entry .icon {
	flex: 0 0 20%;
	/* min-width: 2em; */
}
.event .entry .icon .dashicons {
	font-size: 1.65em;
}
/*
* Contact Forms
*/
.grecaptcha-badge { visibility: hidden; }
.leadform .error-message,
.leadform .error-banner {
	background: var(--color-error-light);
	background-size: 18px;
	color: var(--color-dark-gray);
	display: none;
	font-variant: initial;
	margin: 5px 0 0 0;
	max-width: 24em;
	padding: 1em;
	width: 100%;
}
.sidebar .leadform .error-message {
	line-height: 1.2em;
	padding: .75em;
}
.leadform .error-banner ul {
	padding-left: 1em;
}
.leadform .dirty.invalid .error-message,
.leadform .error-banner {
	display: block;
}
.leadform input[type=text],
.leadform input[type=email],
.leadform textarea {
	border: solid 1px var(--color-gray-disabled);
	display: block;
	font-size: var(--font-size-body);
	max-width: 24em;
	outline: none;
	padding: .5em;
	width: 100%;
}
.leadform textarea {
	font-family:Arial, Helvetica, sans-serif;
	height: 12em;
}
.leadform input[type=text]:hover,
.leadform input[type=email]:hover,
.leadform textarea:hover {
	border: solid 1px var(--color-black);
}
.leadform input[type=text]:focus,
.leadform input[type=email]:focus,
.leadform textarea:focus,
.leadform .dirty.invalid input[type=text]:focus,
.leadform .dirty.invalid input[type=email]:focus,
.leadform .dirty.invalid textarea:focus {
	border: solid 1px var(--color-black);
}
.leadform .dirty.valid,
.leadform .dirty.valid h4,
.leadform .dirty.valid textarea {
	color: var(--color-onepark-green)
}
.leadform .dirty.valid input,
.leadform .dirty.valid textarea {
	border: solid 1px var(--color-onepark-green);
}
.leadform .dirty.invalid,
.leadform .dirty.invalid h4 {
	color: var(--color-error-dark)
}
.leadform .dirty.invalid input,
.leadform .dirty.invalid textarea {
	border: solid 1px var(--color-error-dark);
}
.leadform button {
	cursor: pointer;
}
.disabled {
	opacity: .5;
	pointer-events: none;
}
.contact-form.submitted {
	border: solid 1px var(--color-gray);
	margin-top: 1em;
	padding: 32px;
}
.contact-form.submitted p {
	margin-bottom: 0;
}
.form-ref {
	background: var(--color-onepark-green);
	color: var(--color-white);
	margin-bottom: 2em;
	padding: .5em;
	text-align: center;
}
/*
 * Footer
 */
#colophon {
	background-color: var(--color-onepark-green);
	padding: 64px 0 64px 0;
	position: relative;
}
#palm-leaf {
	opacity: .05;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}
.site-footer .top,
.fineprint,
.social-links {
	display: flex;
	position: relative;
	z-index: 2;
}
.social-links {
	justify-content: space-between;
	max-width: 380px;
	width: 100%;
}
.social-links a {
	display: inline-block;
}
.site-footer .top > div,
.site-footer .about-onepark,
.fineprint {
	color: var(--color-white);
}
.site-footer .top a {
	border-bottom: solid 1px transparent;
	color: var(--color-white);
}
.site-footer .top a:hover {
	border-bottom: dotted 1px var(--color-white);
}
.site-footer .site-info {
	width: 25%;
}
.site-footer .footer-nav-stage {
	display: flex;
	justify-content: space-around;
	padding-top: 4em;
	width: 75%;
}
.site-footer .about-onepark {
	text-align: center;
}
.site-footer .address p {
	font-size: var(--font-size-small);
	line-height: 1.3em;
}
.site-footer .top h4 {
	color: var(--color-onepark-cream);
	font-weight: bold;
	text-transform: uppercase;
}
.footer-nav-stage ul {
	margin: 0.75em 0;
	padding: 0 1em;
	list-style: none;
}
.footer-nav-stage ul li {
	line-height: 1em;
}
.footer-nav-stage ul li::before {
	content: "";
	border-color: transparent #fff;
	border-style: solid;
	border-width: 0.35em 0 0.35em 0.45em;
	display: block;
	height: 0;
	width: 0;
	left: -1em;
	top: 0.7em;
	position: relative;
  }
.footer-nav-stage ul li:marker {
	content: "▶";
}
.fineprint {
	align-items: center;
	border-top: solid 1px var(--color-white);
	display: flex;
	font-size: var(--font-size-small);
	margin-top: 1.5em;
	padding-top: 1.5em;
	justify-content: space-between;
}
@media screen and ( max-width: 1240px ) {
	#site-navigation {
		font-size: smaller;
	}
}
@media screen and ( max-width: 1160px ) {
	.narrow,
	#onepark-unit,
	#onepark-gallery {
		margin-left: 2em;
		margin-right: 2em;
	}
}
@media screen and ( max-width: 1100px ) {
	#site-navigation li:not(.cta) {
		display: none;
	}
	.primary-navigation {
		margin-top: 4px;
	}
	.units-by-type a {
		width: 40%;
	}
}
@media screen and ( max-width: 1000px ) {
	.site-footer .top {
		flex-direction: column;
	}
	.site-footer .site-info {
		width: 100%;
	}
	.site-footer .footer-nav-stage {
		padding-top: 1em;
		width: 100%;
	}
}
@media screen and ( max-width: 900px ) {
	#overlay-menu-stage h4,
	#overlay-menu-stage a {
		font-size: smaller;
	}
	#page-hero,
	#page-hero-background {
		height: 550px;
	}
	.page-lead article {
		flex-direction: column;
		margin-top: 32px;
	}
	.page-lead.with-background article {
		flex-direction: column-reverse;
	}
	.page-lead.amenities.with-background article {
		flex-direction: column;
	}
	.page-lead article figure {
		text-align: center;
		width: auto;
	}
	.page-lead .copy-stage,
	.page-lead .copy-flow {
		width: 100%;
	}
	.page-lead .copy,
	.page-lead .leadform {
		margin: auto;
		max-width: 536px;
		width: 100%;
	}
	.sidebar.event {
		padding: 1em;
	}
	#page-gallery div {
		width: 25%;
	}
}
@media screen and ( max-width: 800px ) {
	#page-hero-copy h1,
	#page-header h1,
	.page-lead header h1 {
		max-width: 100%;
	}
	#page-hero-copy h2 {
		font-size: var(--font-size-big);
	}
	.page-lead header h2 {
		font-size: var(--font-size-larger);
	}
	.units-callout .stage {
		height: 280px;
	}
	.units-callout img {
		top: -25%;
	}
	.feature-block.with-background {
		margin: 64px 0 32px 0;
		padding: 64px 0 64px 0;
	}
	.feature-block header {
		margin-bottom: 32px;
	}
	.feature-block article {
		display: block;
	}
	.feature-block article .main {
		margin-bottom: 20px;
	}
	.feature-block article .main,
	.feature-block .block {
		height: 230px;
		width: 100%;
	}
	.feature-block article .secondary,
	.two-column-stage aside {
		width: 100%;
	}
	.feature-block .button {
		margin-top: 32px
	}
	.fineprint {
		flex-direction: column;
		text-align: center;
	}
	.social-links {
		flex-wrap: wrap;
		margin-bottom: 1em;
		width: 66%;
	}
	.events.archive .events-stage {
		grid-template-columns: repeat(2, 1fr);
	}
	.two-column-stage,
	.two-column-stage.sidebar-right {
		flex-direction: column;
		gap: 32px;
	}
	.two-column-stage .page-content,
	.two-column-stage.sidebar-right .page-content,
	.two-column-stage aside,
	.two-column-stage.sidebar-right aside,
	.two-column-stage.sidebar-none .page-content {
		width: 100%;
	}
	.two-column-stage.sidebar-none {
		flex-direction: inherit
	}
	.event .entry .icon {
		flex: 0;
		min-width: 2.5em;
	}
	.sidebar.event {
		padding: 2em;
	}
	.units-by-type a {
		width: 48%;
	}
	#onepark-unit {
		gap: 32px;
	}
}
@media screen and ( max-width: 700px ) {
	#overlay-menu-stage {
		flex-direction: column;
		text-align: center;
	}
}
@media screen and ( max-width: 600px ) {
	#header .site-name {
		overflow: hidden;
		width: 70px;
	}
	#page-hero-copy h2 {
		font-size: var(--font-size-larger);
	}
	#page-hero,
	#page-hero-background {
		height: 420px;
	}
	.site-footer .footer-nav-stage {
		display: none;
	}
	.social-links,
	.units-by-type a,
	#onepark-unit .description,
	#onepark-unit .highlights {
		width: 100%;
	}
	.social-links img {
		width: 80%;
		height: auto;
	}
	#events-callout .events-stage {
		grid-template-columns: repeat(1, 1fr);
		row-gap: 20px;
	}
	.leadform input[type=text],
	.leadform input[type=email],
	.leadform textarea,
	#events-callout .events-stage a,
	.events.archive .events-stage a {
		max-width: 100%;
	}
	#onepark-unit {
		flex-direction: column;
	}
}
@media screen and ( max-width: 500px ) {
	.events.archive .events-stage {
		grid-template-columns: repeat(1, 1fr);
	}
	#onepark-gallery > div {
		height: 150px;
		width: 150px;
	}
}
@media screen and ( max-width: 400px ) {
	#site-navigation {
		display: none;
	}
	#onepark-gallery > div {
		height: 200px;
		width: 200px;
	}
}