/*
Theme Name: Ambient Child
Template: project-theme
Author: Agile
Author URI: https://www.agiledigitalagency.com/
Description: Child theme for project-theme. Ambient Solutions live marketing agency.
Version: 1.0.0
Text Domain: ambient
*/

:root {
	/* ---- Colors ---- */
	--color-beige: #D6BFA0;
	--color-dark: #020910;
	--color-dark-blue: #061632;
	--color-gray: #808185;
	--color-light-blue: #8ECAE6;
	--color-mint: #8DC3A5;
	--color-pink: #EB188A;
	--color-pink-dark: #D13A67;
	--color-purple: #7B6090;
	--color-purple-dark: #6E628E;
	--color-teal: #2F6B6E;
	--color-white: #FFFFFF;

	/* ---- Layout ---- */
	--header-height: 8.1875rem;

	/* ---- Gradients ---- */
	--gradient-hero: linear-gradient(135deg, var(--color-light-blue) 0%, var(--color-teal) 35%, var(--color-mint) 65%, var(--color-purple) 100%);
	--gradient-nav: linear-gradient(255deg, rgb(116, 178, 158) 0%, rgb(99, 177, 184) 49%, rgb(110, 98, 142) 100%);

	/* ---- Font Weights ---- */
	--fw-bold: 700;
	--fw-light: 300;
	--fw-medium: 500;
	--fw-regular: 400;
	--fw-semibold: 600;

	/* ---- Spacing (based on 16px root) ---- */
	--space-xs: 0.5rem;   
	--space-sm: 1rem;     
	--space-md: 1.5rem;   
	--space-lg: 2.5rem;   
	--space-xl: 5rem;     

	/* ---- Layout ---- */
	--container-max-width: 78.125rem;
	--container-padding: 5rem;      
	--header-height: 8.1875rem;      

	/* ---- Border Radius ---- */
	--radius-pill: 5rem;            
	--radius-sm: 0.625rem;          

	/* ---- Shadows ---- */
	--shadow-button: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.25);

	/* ---- Transitions ---- */
	--transition-base: 0.3s ease;
	/* Hover states: every property that changes on :hover must be listed in the
	   element's transition, or it snaps while the rest eases — which is what
	   made the buttons look like they were flashing (client note-12 #10). The
	   curve eases out slowly so the colour change arrives gently. */
	--transition-hover: 0.45s cubic-bezier(0.33, 1, 0.68, 1);
	--transition-slow: 0.5s ease;
}

@media (min-width: 120rem) {
	:root {
		--container-max-width: 106.25rem;
	}
}

/* ==========================================================================
   CSS Reset — Josh W Comeau's Custom CSS Reset
   https://www.joshwcomeau.com/css/custom-css-reset/
   ========================================================================== */

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

*:not(dialog) {
	margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
	html {
		interpolate-size: allow-keywords;
	}
}

body {
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-inline-size: 100%;
}

input,
button,
textarea,
select {
	font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

p {
	text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	text-wrap: balance;
}

#root,
#__next {
	isolation: isolate;
}

/* ==========================================================================
   Custom Dot Cursor
   Site-wide dot cursor (see assets/js/cursor.js), swapped for a left/right
   arrow inside the drag carousels. The native cursor is hidden only once the
   script confirmed a fine pointer and added `.has-ambient-cursor`, so touch
   devices and no-JS visitors keep the normal cursor.
   ========================================================================== */

.has-ambient-cursor,
.has-ambient-cursor *,
.has-ambient-cursor *::before,
.has-ambient-cursor *::after {
	cursor: none !important;
}

.ambient-cursor {
	block-size: 5.5rem;
	color: var(--color-white);
	display: grid;
	inline-size: 5.5rem;
	inset-block-start: 0;
	inset-inline-start: 0;
	mix-blend-mode: difference;
	opacity: 0;
	place-items: center;
	pointer-events: none;
	position: fixed;
	transition: opacity 0.15s ease;
	z-index: 9999;
}

.ambient-cursor--visible {
	opacity: 1;
}

/* ---- Idle hover: dot ---- */
.ambient-cursor__dot {
	background-color: currentColor;
	block-size: 1rem;
	border-radius: 50%;
	display: block;
	inline-size: 1rem;
}

/* ---- Drag: arrow replaces the dot ---- */
.ambient-cursor__arrow {
	display: none;
	grid-area: 1 / 1;
}

.ambient-cursor--arrow-left .ambient-cursor__dot,
.ambient-cursor--arrow-right .ambient-cursor__dot {
	display: none;
}

.ambient-cursor--arrow-left .ambient-cursor__arrow {
	display: block;
	transform: rotate(-45deg);
	transform-origin: center;
}

.ambient-cursor--arrow-right .ambient-cursor__arrow {
	display: block;
	transform: rotate(135deg);
	transform-origin: center;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	-moz-osx-font-smoothing: grayscale;
	background-color: var(--color-white);
	color: var(--color-dark);
	font-family: var(--primary-font, sans-serif);
	font-size: 1rem;
	font-weight: var(--fw-regular);
	line-height: 1.6;
}

/* ---- Headings ---- */
h1,
h2,
h3,
h4,
h5,
h6 {

	font-weight: var(--fw-bold);
	line-height: 1.1;
	text-transform: uppercase;
}

h1 {
	font-size: 9.375rem;
	line-height: 1;
}

h2 {
	font-size: 5.625rem;
	line-height: 1.1;
}

h3 {
	font-size: 4.375rem;
	line-height: 1.14;
}

h4 {
	font-size: 3.125rem;
	line-height: 1;
}

h5 {
	font-size: 1.5rem;
	line-height: 1.375;
}

h6 {
	font-size: 1.3125rem;
	line-height: 1.6;
}

/* Titles are 2.2rem/2.5rem on mobile (client note-12). Each block sets this on
   its own title class; this covers headings that only take the base scale.
   h5/h6 are already below that size and stay as they are. */
@media (max-width: 48rem) {
	h1,
	h2,
	h3,
	h4 {
		font-size: 2.2rem;
		line-height: 2.5rem;
	}
}

/* ---- Paragraphs ---- */
p + p {
	padding-block-start: var(--space-sm);
}

/* ---- Links ---- */
a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition-hover);
}

a:hover,
a:focus {
	color: var(--color-teal);
}

/* ---- Lists ---- */
ul,
ol {
	list-style: none;
	padding: 0;
}

/* ---- Images ---- */
img {
	block-size: auto;
}

/* ---- Buttons ---- */
button {
	background: none;
	border: none;
	color: inherit;
	cursor: pointer;
	padding: 0;
}

/* ---- Button Component ---- */
.btn {
	align-items: center;
	border-radius: var(--radius-pill);
	display: inline-flex;

	font-size: 1.5rem;
	font-weight: var(--fw-bold);
	justify-content: center;
	line-height: 1.5rem;
	padding-block: 1.1875rem;
	padding-inline: 1.9375rem;
	text-transform: uppercase;
	transition: background-color var(--transition-hover), border-color var(--transition-hover), box-shadow var(--transition-hover), color var(--transition-hover);
	white-space: nowrap;
}

.btn--primary {
	background-color: var(--color-dark);
	box-shadow: var(--shadow-button);
	color: var(--color-white);
}

.btn--primary:hover {
	background-color: #F20786;
	box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.25);
	color: var(--color-white);
}

.btn--pink {
	background-color: var(--color-pink);
	box-shadow: var(--shadow-button);
	color: var(--color-white);
}

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

.btn--outline {
	border: 0.0625rem solid var(--color-dark);
	color: var(--color-dark);
}

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

/* On narrow screens buttons span the full container width and wrap to 2 lines
   instead of overflowing their pill background. Full width rather than
   shrink-to-fit so no empty space is left beside the pill (client CR note-5). */
@media (max-width: 48rem) {
	.btn {
		inline-size: 100%;
		white-space: normal;
	}
}

/* ---- Utility: Screen Reader Only ---- */
.sr-only {
	block-size: 0.0625rem;
	border: 0;
	clip: rect(0, 0, 0, 0);
	inline-size: 0.0625rem;
	margin: -0.0625rem;
	overflow: hidden;
	padding: 0;
	position: absolute;
}

/* ==========================================================================
   Site Header
   ========================================================================== */

.site-header {
	inset-block-start: 0;
	inset-inline: 0;
	padding-block: 1.875rem;
	padding-inline: var(--container-padding);
	position: fixed;
	transition: all 0.3s ease;
	z-index: 10;
}

.site-header--hidden {
	transform: translateY(-100%);
}

.site-header--scrolled {
	background-color: var(--color-white);
	padding-block: 0.625rem;
	padding-inline: 0.625rem;
	z-index: 12;
}

.site-header--scrolled .site-header__inner {
	align-items: center;
}

.site-header--scrolled .site-header__logo {
	inline-size: 8.5625rem;
}

.site-header--scrolled .site-header__logo .custom-logo,
.has-hero .site-header--scrolled .site-header__logo .custom-logo {
	filter: none;
}

.site-header--scrolled .site-header__toggle {
	background: transparent url("data:image/svg+xml,%3Csvg width='35' height='23' viewBox='0 0 35 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='35' height='3' rx='1.5' fill='%23020910'/%3E%3Crect y='20' width='35' height='3' rx='1.5' fill='%23020910'/%3E%3Crect y='10' width='35' height='3' rx='1.5' fill='%23020910'/%3E%3C/svg%3E") no-repeat center;
	block-size: 1.4375rem;
	gap: 0;
	inline-size: 2.1875rem;
}

.site-header--scrolled .site-header__toggle-bar {
	display: none;
}

.site-header__inner {
	align-items: flex-start;
	display: flex;
	justify-content: space-between;
	margin-inline: auto;
	max-inline-size: var(--container-max-width);
}

/* ---- Logo ---- */
.site-header__logo {
	display: inline-block;
	inline-size: 11.375rem;
	position: relative;
	z-index: 101;
}

.site-header__logo .custom-logo-link {
	display: block;
}

.site-header__logo .custom-logo-link img {
	transition: filter var(--transition-base);
}

/* ---- Hamburger Toggle ---- */
.site-header__toggle {
	align-items: flex-end;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	z-index: 101;
}

.site-header__toggle-bar {
	background-color: var(--color-dark);
	block-size: 0.3125rem;
	border-radius: var(--radius-sm);
	display: block;
	inline-size: 3rem;
	transition: all var(--transition-base);
}

/* ---- Hero Page State (white header over video) ---- */
.has-hero .site-header__logo .custom-logo {
	filter: brightness(0) invert(1);
}

.has-hero .site-header__toggle-bar {
	background-color: var(--color-white);
}

/* ---- Subpage Header: dark logo/toggle ---- */

/* ---- Nav Open State ---- */
.nav-open .site-header__toggle {
	display: none;
}

/* ---- Header Responsive ---- */
@media (max-width: 48rem) {
	.site-header {
		background-color: var(--color-white);
		padding-block: 1.25rem;
		padding-inline: var(--space-md);
	}

	.site-header__inner {
		align-items: center;
	}

	.site-header__logo {
		inline-size: 7.4375rem;
	}

	.has-hero .site-header {
		background-color: transparent;
	}

	.has-hero .site-header__logo .custom-logo {
		filter: brightness(0) invert(1);
	}

	.has-hero .site-header__toggle-bar {
		background-color: var(--color-white);
	}

	.has-hero .site-header--scrolled {
		background-color: var(--color-white);
	}

	.has-hero .site-header--scrolled .site-header__logo .custom-logo {
		filter: none;
	}

	.has-hero .site-header--scrolled .site-header__toggle-bar {
		background-color: var(--color-dark);
	}

	.site-header__toggle {
		align-items: center;
		gap: 0.3125rem;
	}

	.site-header__toggle-bar {
		block-size: 0.1875rem;
		inline-size: 1.5rem;
	}

	.site-header--scrolled {
		padding-block: 1.25rem;
		padding-inline: var(--space-md);
	}

	.site-header--scrolled .site-header__logo {
		inline-size: 7.4375rem;
	}

	.site-header--scrolled .site-header__toggle {
		background-image: none;
		block-size: auto;
		gap: 0.3125rem;
		inline-size: auto;
	}

	.site-header--scrolled .site-header__toggle-bar {
		display: block;
	}
}

/* ==========================================================================
   Primary Navigation Overlay
   ========================================================================== */

.primary-nav {
	font-family: var(--primary-font, sans-serif);
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	transition: opacity var(--transition-slow);
	z-index: 99;
}

.primary-nav[aria-hidden="false"] {
	opacity: 1;
	pointer-events: auto;
}

/* ---- Gradient Overlay Background ---- */
.primary-nav__overlay {
	background: var(--gradient-nav);
	block-size: 100%;
	inline-size: 100%;
	inset: 0;
	position: absolute;
}

/* ---- Nav Header (Logo + Close) ---- */
.primary-nav__header {
	align-items: flex-start;
	display: flex;
	justify-content: space-between;
	margin-inline: auto;
	max-inline-size: var(--container-max-width);
	padding-block: 1.875rem;
	position: relative;
	z-index: 2;
}

.primary-nav__logo {
	display: inline-block;
}

.primary-nav__logo-img {
	block-size: auto;
	max-inline-size: 100%;
}

.primary-nav__logo-img {
	filter: brightness(0) invert(1);
}

/* ---- Close Button ---- */
.primary-nav__close {
	cursor: pointer;
}

.primary-nav__close svg {
	block-size: 2.3125rem;
	inline-size: 2.3125rem;
}

/* ---- Content Container ---- */
.primary-nav__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-inline: auto;
	max-inline-size: var(--container-max-width);
	padding-block-end: 1.875rem;
	padding-block-start: 1.25rem;
	padding-inline: 1.375rem;
	position: relative;
	z-index: 1;
}

/* ---- Navigation Columns ---- */
.primary-nav__columns {
	display: grid;
	gap: var(--space-xl);
	grid-template-columns: repeat(2, 1fr);
}

.primary-nav__heading {
	color: var(--color-white);

	font-size: 3.125rem;
	font-weight: var(--fw-semibold);
	line-height: 3.3125rem;
	text-transform: uppercase;
}

.primary-nav__menu {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	padding-block-start: 1.25rem;
}

.primary-nav__link {
	color: var(--color-white);
	display: inline-block;
	font-family: var(--h2-font-family, inherit);
	font-size: 3.125rem;
	font-weight: var(--fw-light);
	line-height: 3.3125rem;
	text-decoration: none;
	text-transform: uppercase;
	transition: all var(--transition-base);
}

.primary-nav__link:hover {
	color: var(--color-white);
	text-decoration: underline;
	text-decoration-thickness: 0.0625rem;
	text-underline-offset: 0.5rem;
}

.primary-nav__link:visited,
.primary-nav__link:active {
	color: var(--color-white);
	opacity: 1;
}

.primary-nav__item.current-menu-item .primary-nav__link {
	opacity: 0.6;
}

/* ---- Bottom Contact Section ---- */
/* 50px above the contact details (client note-7 #13) so the whole overlay
   still fits on a small laptop screen. */
.primary-nav__bottom {
	column-gap: var(--space-xl);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding-block-start: 3.125rem;
}

.primary-nav__social {
	grid-column: 1 / -1;
	order: 4;
	padding-block-start: 0.875rem;
}

.primary-nav__contact-title {
	color: var(--color-white);

	font-size: 1.5rem;
	font-weight: var(--fw-semibold);
	line-height: 2.0625rem;
	text-transform: uppercase;
}

.primary-nav__address {
	color: var(--color-white);
	font-family: var(--primary-font, inherit);
	font-size: 1.25rem;
	font-style: normal;
	font-weight: var(--fw-regular);
	line-height: 2.0625rem;
	padding-block-start: 0.25rem;
}

.primary-nav__address p {
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	margin: 0;
}

.primary-nav__address a {
	color: var(--color-white);
	transition: opacity var(--transition-base);
}

.primary-nav__address a:hover {
	opacity: 0.7;
}

/* ---- Navigation Social Icons ---- */
.primary-nav__social {
	display: flex;
	gap: 1.125rem;
	padding-block-start: 0.875rem;
}

.primary-nav__social-link {
	align-items: center;
	block-size: 2.75rem;
	border: 0.0625rem solid var(--color-white);
	border-radius: 50%;
	color: var(--color-white);
	display: flex;
	inline-size: 2.75rem;
	justify-content: center;
	transition: all var(--transition-base);
}

.primary-nav__social-link:hover {
	background-color: var(--color-white);
	border-color: var(--color-white);
	color: var(--color-purple-dark);
}

.primary-nav__social-link svg {
	block-size: 1rem;
	inline-size: 1rem;
}

/* ---- Navigation Responsive ---- */
@media (max-width: 64rem) {
	.primary-nav__content {
		padding-inline: var(--space-lg);
	}

	.primary-nav__header {
		padding-inline: var(--space-lg);
	}

	.primary-nav__heading,
	.primary-nav__link {
		font-size: 2.5rem;
		line-height: 2.8125rem;
	}
}

@media (max-width: 48rem) {
	.primary-nav {
		display: flex;
		flex-direction: column;
	}

	.primary-nav__header {
		flex-shrink: 0;
		inline-size: 100%;
		padding-inline: 1.875rem;
	}

	.primary-nav__content {
		flex: 1;
		inline-size: 100%;
		justify-content: flex-start;
		margin-block-start: 0;
		min-block-size: 0;
		overflow-y: auto;
		padding-block-end: 2.5rem;
		padding-block-start: 0.625rem;
		padding-inline: 1.875rem;
		scrollbar-width: none;
	}

	.primary-nav__content::-webkit-scrollbar {
		display: none;
	}

	.primary-nav__close svg {
		block-size: 1.5rem;
		inline-size: 1.5rem;
	}

	.primary-nav__columns {
		gap: 1.25rem;
		grid-template-columns: 1fr;
	}

	.primary-nav__heading,
	.primary-nav__link {
		font-size: 2.0625rem;
		line-height: 3.3125rem;
	}

	.primary-nav__menu {
		gap: 0;
		padding-block-start: 0;
	}

	.primary-nav__bottom {
		gap: 0;
		grid-template-columns: 1fr;
		padding-block-start: 1.875rem;
	}

	.primary-nav__bottom .primary-nav__contact {
		padding-block-start: 2.5rem;
	}

	.primary-nav__bottom .primary-nav__contact:nth-child(2) {
		order: 1;
		padding-block-start: 0;
	}

	.primary-nav__social {
		grid-column: auto;
		order: 2;
		padding-block-start: 0.875rem;
	}

	.primary-nav__bottom .primary-nav__contact:nth-child(3) {
		order: 3;
	}

	.primary-nav__bottom .primary-nav__contact:nth-child(4) {
		order: 4;
	}
}

/* ==========================================================================
   404 Page
   ========================================================================== */

.error-404 {
	align-items: center;
	block-size: 100vh;
	display: flex;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

.error-404__background {
	background-image: linear-gradient(255deg, rgb(116, 178, 158) 0%, rgb(99, 177, 184) 49%, rgb(110, 98, 142) 100%);
	block-size: 100%;
	inline-size: 100%;
	inset: 0;
	position: absolute;
	z-index: 0;
}

.error-404__content {
	position: relative;
	text-align: center;
	z-index: 1;
}

.error-404__heading {
	color: var(--color-white);
	font-family: var(--h1-font-family, "Josefin Sans"), sans-serif;
	font-size: 27.5rem;
	font-weight: 600;
	line-height: 22.5rem;
	margin: 0;
	text-transform: uppercase;
}

.error-404__subheading {
	color: var(--color-white);
	font-family: var(--h1-font-family, "Josefin Sans"), sans-serif;
	font-size: 3.125rem;
	font-weight: var(--fw-bold);
	line-height: 3.75rem;
	margin: 0;
	text-transform: uppercase;
}

.error-404 .error-404__button {
	background-color: #020910;
	border: none;
	border-radius: 5rem;
	box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.25);
	color: var(--color-white);
	display: inline-block;
	font-size: 1.5rem;
	font-weight: var(--fw-bold);
	line-height: 1.5rem;
	padding-block: 1.1875rem;
	padding-inline: 1.9375rem;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color var(--transition-base);
	white-space: nowrap;
}

.error-404 .error-404__button:hover {
	background-color: #F20786;
	color: var(--color-white);
}

.error-404__content .error-404__button {
	margin-block-start: 2.1875rem;
}

@media (max-width: 48rem) {
	.error-404__heading {
		font-size: 9.375rem;
		line-height: 9.375rem;
	}

	.error-404__subheading {
		font-size: 2.5rem;
		line-height: 2.5rem;
		margin-inline: auto;
		max-inline-size: 23.125rem;
	}

	.error-404__content .error-404__button {
		margin-block-start: 1.875rem;
	}

	.error-404__button {
		max-inline-size: 100%;
		white-space: normal;
	}
}

/* ==========================================================================
   Site Footer
   ========================================================================== */

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

.site-footer__inner {
	margin-inline: auto;
	max-inline-size: var(--container-max-width);
}

/* ---- Footer Top: Logo + Nav + Social ---- */
.site-footer__top {
	padding-block: 7.5rem;
}

.site-footer__top .site-footer__inner {
	display: grid;
	gap: var(--space-xl);
	grid-template-columns: repeat(3, 1fr);
}

.site-footer__logo {
	color: var(--color-white);
	display: block;
	inline-size: 15rem;
}

.site-footer__logo img {
	filter: brightness(0) invert(1);
	inline-size: 100%;
}

.site-footer__heading {
	color: var(--color-white);

	font-size: 1.5rem;
	font-weight: var(--fw-semibold);
	line-height: 2.0625rem;
	text-transform: uppercase;
}

.site-footer__menu {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
	padding-block-start: 1.875rem;
}

.site-footer__menu li a,
.site-footer__link {
	color: var(--color-white);

	font-size: 1.5rem;
	font-weight: var(--fw-light);
	line-height: 2.0625rem;
	text-transform: uppercase;
	transition: opacity var(--transition-base);
}

.site-footer__menu li a:hover,
.site-footer__link:hover {
	color: var(--color-white);
	opacity: 0.7;
}

/* ---- Footer Social Icons ---- */
.site-footer__social {
	display: flex;
	gap: 1.125rem;
	padding-block-start: 2.6875rem;
}

.site-footer__social-link {
	align-items: center;
	block-size: 2.75rem;
	border: 0.0625rem solid var(--color-white);
	border-radius: 50%;
	color: var(--color-white);
	display: flex;
	inline-size: 2.75rem;
	justify-content: center;
	transition: all var(--transition-base);
}

.site-footer__social-link:hover {
	background-color: var(--color-white);
	border-color: var(--color-white);
	color: var(--color-dark);
}

.site-footer__social-link svg {
	block-size: 1rem;
	inline-size: 1rem;
}

/* ---- Footer Locations ---- */
.site-footer__locations-row {
	padding-block-end: 2.5rem;
}

.site-footer__locations-row .site-footer__inner {
	display: grid;
	gap: var(--space-xl);
	grid-template-columns: repeat(3, 1fr);
}

.site-footer__location-title {
	color: var(--color-white);

	font-size: 1.5rem;
	font-weight: var(--fw-semibold);
	line-height: 2.0625rem;
	text-transform: uppercase;
}

.site-footer__address {
	padding-block-start: 0.875rem;
	color: var(--color-white);

	font-size: 1.25rem;
	font-style: normal;
	font-weight: var(--fw-light);
	line-height: 2.0625rem;
}

.site-footer__address p {
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	margin: 0;
}

.site-footer__address a {
	color: var(--color-white);
}

.site-footer__address a:hover {
	opacity: 0.7;
}

/* ---- Footer Legal Bar ---- */
.site-footer__legal {
	padding-block-end: 5rem;
	padding-block-start: 5rem;
}

.site-footer__legal .site-footer__inner {
	display: flex;
	flex-direction: column;
}

.site-footer__legal-links {
	border-block-end: 0.0625rem solid var(--color-white);
	display: flex;
	gap: var(--space-md);
	padding-block-end: 1.25rem;
}

.site-footer__legal-links li a,
.site-footer__legal-link {
	color: var(--color-white);

	font-size: 1.25rem;
	font-weight: var(--fw-light);
	line-height: 2.0625rem;
	text-transform: uppercase;
	transition: opacity var(--transition-base);
}

.site-footer__legal-links li a:hover,
.site-footer__legal-link:hover {
	color: var(--color-white);
	opacity: 0.7;
}

.site-footer__copyright {
	color: var(--color-white);

	font-size: 1.25rem;
	font-weight: var(--fw-light);
	line-height: 2.0625rem;
	padding-block-start: 1.25rem;
}

/* ---- Footer Responsive ---- */
@media (max-width: 64rem) {
	.site-footer__top .site-footer__inner {
		grid-template-columns: repeat(2, 1fr);
	}

	.site-footer__locations-row .site-footer__inner {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 48rem) {
	.site-footer__inner {
		padding-inline: 1.25rem;
	}

	/* 1. Footer top/bottom padding: 50px top, 30px bottom */
	.site-footer__top {
		padding-block-end: 0;
		padding-block-start: 3.125rem;
	}

	.site-footer__top .site-footer__inner {
		gap: 0;
		grid-template-columns: 1fr;
	}

	/* 2. Social to logo: 43px */
	.site-footer__social {
		padding-block-start: 2.6875rem;
	}

	/* 3. Menus to social: 60px */
	.site-footer__top .site-footer__col:nth-child(2) {
		padding-block-start: 3.75rem;
	}

	/* 4. Menu label to links + between links: 30px */
	.site-footer__menu {
		gap: 1.875rem;
		padding-block-start: 1.875rem;
	}

	/* Between menu groups: 40px */
	.site-footer__top .site-footer__col:nth-child(3) {
		padding-block-start: 2.5rem;
	}

	/* 5. Locations to menus: 60px */
	.site-footer__locations-row {
		padding-block-end: 0;
		padding-block-start: 3.75rem;
	}

	.site-footer__locations-row .site-footer__inner {
		gap: 0;
		grid-template-columns: 1fr;
	}

	/* 6. Between addresses: 50px */
	.site-footer__location {
		padding-block-start: 3.125rem;
	}

	.site-footer__location:first-child {
		padding-block-start: 0;
	}

	/* 7. Legal to addresses: 50px */
	.site-footer__legal {
		padding-block-end: 1.875rem;
		padding-block-start: 3.125rem;
	}

	.site-footer__legal .site-footer__inner {
		flex-direction: column;
	}

	.site-footer__legal-links {
		justify-content: space-between;
	}
}