/* ==========================================================================
OURLIVING Corporate Site - Main Stylesheet
========================================================================== */

/* --------------------------------------------------------------------------
1. Reset & Base
-------------------------------------------------------------------------- */

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

html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: 'YuGothic', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
	font-size: 14px;
	line-height: 2;
	letter-spacing: 0.72px;
	color: #000;
	background: #fff;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
	list-style: none;
}

button {
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
}

input,
textarea,
select {
	font-family: inherit;
	font-size: inherit;
}

/* English text utility */
.en,
.font-en {
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
}

.sp-none {
	display: block;
}

/* --------------------------------------------------------------------------
2. Layout
-------------------------------------------------------------------------- */

.container {
	max-width: 940px;
	margin: 0 auto;
	padding: 0 30px;
}

.container--narrow {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 30px;
}


/* --------------------------------------------------------------------------
3. Header (.site-header)
-------------------------------------------------------------------------- */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background: transparent;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 50px;
}

.header-logo img {
	width: 121px;
	height: auto;
}

.header-nav {
	display: flex;
	align-items: center;
	gap: 30px;
}

.nav-link {
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 0.72px;
	color: #000;
	transition: opacity 0.3s;
}

.nav-link:hover {
	opacity: 0.7;
}

.nav-link--bordered {
	border: 2px solid #000;
	padding: 10px 30px;
	transition: background 0.3s, color 0.3s;
}

.nav-link--bordered:hover {
	background: #000;
	color: #fff;
	opacity: 1;
}


/* --------------------------------------------------------------------------
4. Hamburger (.hamburger)
-------------------------------------------------------------------------- */

.hamburger {
	width: 30px;
	height: 12px;
	position: relative;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 101;
}

.hamburger__line {
	display: block;
	height: 2px;
	background: #000;
	position: absolute;
	left: 0;
	transition: transform 0.3s, top 0.3s, width 0.3s;
}

.hamburger__line:first-child {
	width: 30px;
	top: 0;
}

.hamburger__line:last-child {
	width: 20px;
	bottom: 0;
}

.hamburger.is-active .hamburger__line:first-child {
	transform: rotate(45deg);
	top: 50%;
	width: 30px;
}

.hamburger.is-active .hamburger__line:last-child {
	transform: rotate(-45deg);
	top: 50%;
	bottom: auto;
	width: 30px;
}


/* --------------------------------------------------------------------------
5. Global Navigation Overlay (.global-nav)
-------------------------------------------------------------------------- */

.global-nav {
	position: fixed;
	inset: 0;
	z-index: 99;
	background: #e5e5e5;
	transform: translateY(-100%);
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	overflow-y: auto;
}

.global-nav.is-active {
	transform: translateY(0);
}

.global-nav__inner {
	display: flex;
	max-width: 1000px;
	margin: 0 auto;
	padding: 160px 20px;
	min-height: 100%;
}

.global-nav__menu {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0;
	align-items: flex-start;
}

/* Menu items: start invisible, fade in after slide */
.global-nav__link,
.global-nav__divider {
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.global-nav.is-visible .global-nav__link,
.global-nav.is-visible .global-nav__divider {
	opacity: 1;
	transform: translateY(0);
}

.global-nav__link {
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 20px;
	letter-spacing: 1.2px;
	line-height: 48px;
	color: #000;
	padding: 0;
	display: inline-block;
}

.global-nav__link:hover {
	opacity: 0.6;
}

.global-nav__divider {
	border: none;
	border-top: 1px solid #000;
	width: 300px;
	margin: 15px 0;
}

.global-nav__image {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease 0.15s;
}

.global-nav.is-visible .global-nav__image {
	opacity: 1;
}

.global-nav__image img {
	max-width: 100%;
	height: auto;
}


/* --------------------------------------------------------------------------
6. Footer (.site-footer)
-------------------------------------------------------------------------- */

/* Main content bottom spacing before footer */
.main-content {
	padding-bottom: 160px;
}

.site-footer {
	border-top: 1px solid #000;
	margin: 0 30px;
	padding-top: 20px;
	padding-bottom: 20px;
}

.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 0px;
	position: relative;
}

.footer-copyright {
	font-size: 10px;
}

.footer-logo {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.footer-logo img {
	width: 90px;
	height: auto;
}

.footer-pagetop {
	position: absolute;
	right: 0;
	transition: opacity 0.3s;
}

.footer-pagetop:hover {
	opacity: 0.6;
}


/* --------------------------------------------------------------------------
7. Page Header
-------------------------------------------------------------------------- */

.page-header {
	padding: 160px 0 60px;
	text-align: center;
}

.page-title {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 30px;
	letter-spacing: 1.2px;
}


/* --------------------------------------------------------------------------
8. Section MV (Hero)
-------------------------------------------------------------------------- */

.section-mv {
	padding-top: 120px;
}

.section-mv__inner {
	max-width: 1100px;
	margin: 0 auto;
}

.section-mv__video {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 1100 / 727;
}


/* --------------------------------------------------------------------------
9. Section Concept
-------------------------------------------------------------------------- */

.section-concept {
	padding: 160px 0;
}

.section-concept__inner {
	text-align: center;
	max-width: 940px;
	margin: 0 auto;
	padding: 0 30px;
}

.section-concept__label {
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 24px;
	letter-spacing: 0.72px;
	margin-bottom: 40px;
}

.section-concept__body {
	font-size: 14px;
	line-height: 2;
	margin-bottom: 40px;
}

.section-concept__body p {
	margin-bottom: 20px;
	font-weight: bold;
}

.section-concept__body p:last-child {
	margin-bottom: 0;
}

.section-concept__lead {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 30px;
}

.section-concept__brand {
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.72px;
}


/* --------------------------------------------------------------------------
10. Brand Sections (.section-brand)
-------------------------------------------------------------------------- */

.section-brand {
	padding: 0;
}

.section-brand + .section-brand {
	margin-top: 400px;
}

/* Brand Banner */
.brand-banner {
	background: #161616;
	height: 316px;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 940px;
	margin: 0 auto;
}


#synque .brand-banner {
	margin: 0 auto 80px;
}

.brand-banner--ee {
	background: #fefce9;
}

.brand-banner__logo {
	width: 225px;
	height: auto;
}

#synque .brand-banner__logo {
	filter:invert(100%) ;
}

.section-brand--ee .brand-banner__logo  {
	width: 150px;
	height: auto;
}

.brand-detail__desc {
	font-weight: bold;
}

/* Brand Images */

.brand-images {
	display: flex;
	gap: 0;
	max-width: 940px;
	margin: 0 auto;
}

#synque .brand-images {
	margin-bottom: 100px;  
}


.brand-images__item {
	flex: 1;
}

.brand-images__item img {
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 470 / 625;
}

/* Brand Detail */
.brand-detail {
	display: flex;
	gap: 60px;
	max-width: 940px;
	margin: 60px auto;
	padding: 0 30px;
}

.brand-detail__text {
	flex: 1;
}

.brand-detail__name {
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.8px;
	margin-bottom: 30px;
}

.brand-detail__desc p {
	font-size: 14px;
	line-height: 2;
	margin-bottom: 20px;
	letter-spacing: 0.28px;
}

.brand-detail__desc p:last-child {
	margin-bottom: 0;
}

.brand-detail__image {
	width: 442px;
	flex-shrink: 0;
}

.brand-detail__image img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.brand-detail--reverse {
	flex-direction: row-reverse;
}

/* Brand Gallery */
.brand-gallery {
	max-width: 940px;
	margin: 0 auto;
	position: relative;
}

.brand-gallery__item {
	position: relative;
	overflow: hidden;
}

.brand-gallery__item a {
	display: block;
	position: relative;
}

.brand-gallery__item img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.brand-gallery__item a:hover img {
	transform: scale(1.05);
}

.brand-gallery__overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 35px;
	letter-spacing: 1.4px;
	text-align: center;
	white-space: nowrap;
}

.brand-gallery__item--right {
	width: 570px;
	margin-left: auto;
}

.brand-gallery__item--left {
	width: 420px;
	margin-top: -50px;
}

.brand-gallery__item--right-tall {
	width: 420px;
	margin-left: auto;
	margin-top: -200px;
}


/* --------------------------------------------------------------------------
11. Bottom Gallery
-------------------------------------------------------------------------- */

.section-bottom-gallery__inner {
	max-width: 940px;
	margin: 200px auto 0;
	padding: 0 30px;
}

.section-bottom-gallery__item {
	position: relative;
	overflow: hidden;
}

.section-bottom-gallery__full img {
	width: 100%;
	height: auto;
}


/* --------------------------------------------------------------------------
12. Store Page
-------------------------------------------------------------------------- */

.store-section {
	max-width: 940px;
	margin: 0 auto;
}

.store-image img {
	width: 100%;
	height: auto;
	aspect-ratio: 940 / 420;
	object-fit: cover;
}

.store-info {
	margin-top: 30px;
}

.store-info__row {
	display: flex;
	padding: 12px 0;
}

.store-info__row dt {
	width: 185px;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.49px;
	line-height: 26px;
	flex-shrink: 0;
}

.store-info__row dd {
	flex: 1;
	font-size: 14px;
	line-height: 26px;
	font-weight: bold;
}

.map-link {
	text-decoration: underline;
}

.map-link:hover {
	opacity: 0.7;
}


/* --------------------------------------------------------------------------
13. News Archive
-------------------------------------------------------------------------- */

.news-filter {
	margin-bottom: 40px;
}

.news-filter__list {
	display: flex;
	justify-content: center;
	gap: 30px;
}

.news-filter__link {
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.42px;
	color: #666;
	padding: 5px 0;
	border-bottom: 1px solid transparent;
	transition: color 0.3s, border-color 0.3s;
}

.news-filter__link.is-active,
.news-filter__link:hover {
	color: #000;
	border-bottom: 1px solid #000;
}

.news-filter__link--tag {
	color: #999;
	font-size: 13px;
}

.news-filter__link--tag.is-active,
.news-filter__link--tag:hover {
	color: #000;
	border-bottom: 1px solid #000;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 30px;
}

.news-card {
	text-decoration: none;
	color: #000;
	display: block;
}

.news-card__thumb {
	aspect-ratio: 270 / 180;
	overflow: hidden;
	margin-bottom: 15px;
	background: #e5e5e5;
}

.news-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s;
}

.news-card:hover .news-card__thumb img {
	transform: scale(1.05);
}

.news-card__title {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.64px;
	margin-bottom: 5px;
}

.news-card__meta {
	font-size: 12px;
	color: #000;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	letter-spacing: 0.48px;
	margin-bottom: 10px;
}

.news-card__tag {
	font-size: 12px;
	color: #999;
	margin-left: 8px;
	font-weight: 400;
}

.news-card__excerpt {
	font-size: 14px;
	line-height: 1.57;
	letter-spacing: 0.56px;
	color: #000;
}


/* --------------------------------------------------------------------------
14. News Single
-------------------------------------------------------------------------- */

/* News Single Title Override */
.page-news-single .page-header {
	padding-bottom: 10px;
}

.page-news-single .page-title {
	font-size: 24px;
	font-weight: bold;
	font-family: 'YuGothic', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
	letter-spacing: 0.8px;
	line-height: 1.4;
}

.news-single__meta {
	text-align: center;
	font-size: 12px;
	color: #000;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	letter-spacing: 0.48px;
	margin-bottom: 80px;
}

.news-single__date {
	margin-right: 5px;
}

.news-single__category {
	margin-left: 5px;
}

.news-single__image {
	margin-bottom: 40px;
}

.news-single__image img {
	width: 100%;
	height: auto;
	aspect-ratio: 940 / 644;
	object-fit: cover;
}

/* Post Content */
.news-single__content h2 {
	font-size: 20px;
	font-weight: bold;
	margin: 40px 0 20px;
	line-height: 1.6;
}

.news-single__content h3 {
	font-size: 16px;
	font-weight: bold;
	margin: 30px 0 15px;
	line-height: 1.6;
}

.news-single__content p {
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.875;
	letter-spacing: 0.64px;
	font-weight: 500;
}

.news-single__content ul,
.news-single__content ol {
	margin: 20px 0;
	padding-left: 1.5em;
}

.news-single__content ul {
	list-style: disc;
}

.news-single__content ol {
	list-style: decimal;
}

.news-single__content li {
	margin-bottom: 8px;
	font-size: 16px;
	line-height: 1.875;
	letter-spacing: 0.64px;
}

.news-single__content figure {
	margin: 30px 0;
}

.news-single__content figure img {
	width: 100%;
	height: auto;
}

.news-single__content figcaption {
	font-size: 14px;
	color: #999;
	letter-spacing: 0.64px;
	line-height: 1.875;
	margin-top: 5px;
	text-align: center;
}

.news-single__content a {
	text-decoration: underline;
	transition: opacity 0.3s;
}

.news-single__content a:hover {
	opacity: 0.7;
}

.news-single__content strong {
	font-weight: bold;
}

.news-single__content blockquote {
	border-left: 3px solid #e5e5e5;
	padding: 15px 20px;
	margin: 20px 0;
	color: #333;
	font-style: italic;
}

/* Post Navigation */
.post-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 60px;
	padding-top: 30px;
	border-top: 1px solid #e5e5e5;
}

.post-nav__link {
	font-size: 12px;
	transition: opacity 0.3s;
}

.post-nav__link:hover {
	opacity: 0.7;
}


/* --------------------------------------------------------------------------
15. Contact / Form
-------------------------------------------------------------------------- */

/* CF7 wrapper */
.wpcf7 {
	max-width: 690px;
	margin: 0 auto;
}

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

.contact-form__row {
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
}

.contact-form__label {
	width: 182px;
	flex-shrink: 0;
	padding-top: 15px;
	font-size: 13px;
	font-weight: bold;
}

.contact-form__required {
	color: #ff6450;
	font-size: 20px;
	margin-left: 2px;
	vertical-align: middle;
}

.contact-form__field {
	flex: 1;
}

/* CF7 input/textarea styling */
.contact-form__input,
.contact-form__textarea,
.wpcf7 .wpcf7-form-control:not(.wpcf7-submit) {
	width: 100%;
	border: 1px solid #b4b4b4;
	border-radius: 5px;
	padding: 15px;
	font-size: 14px;
	font-family: inherit;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
}

.contact-form__input:focus,
.contact-form__textarea:focus,
.wpcf7 .wpcf7-form-control:not(.wpcf7-submit):focus {
	outline: none;
	border-color: #000;
}

.contact-form__textarea,
.wpcf7 textarea.wpcf7-form-control {
	height: 240px;
	resize: vertical;
}

.contact-form__submit {
	margin-top: 20px;
	padding-left: 182px;
}

/* CF7 submit button */
.btn,
.wpcf7 .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	background: #000;
	color: #fff;
	font-size: 13px;
	padding: 15px 40px;
	min-width: 223px;
	border: none;
	cursor: pointer;
	font-family: inherit;
	letter-spacing: 0.5px;
	transition: opacity 0.3s;
	border-radius: 0;
	font-weight: bold;
}

.btn:hover,
.wpcf7 .wpcf7-submit:hover {
	opacity: 0.7;
}

/* CF7 validation & messages */
.wpcf7-not-valid-tip {
	color: #ff6450;
	font-size: 12px;
	margin-top: 5px;
	display: block;
}

.wpcf7 form .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 15px;
	border: 1px solid #b4b4b4;
	border-radius: 5px;
	font-size: 14px;
	text-align: center;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450;
	color: #46b450;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output {
	border-color: #ff6450;
	color: #ff6450;
}

/* CF7 spinner */
.wpcf7-spinner {
	margin-left: 10px;
}

.btn svg {
	width: 12px;
	height: 10px;
}


.wpcf7-turnstile.cf-turnstile {
	margin: 0 auto 30px auto;
	padding-left: 181px;
}

/* --------------------------------------------------------------------------
16. Thanks Page
-------------------------------------------------------------------------- */

.thanks-section {
	text-align: center;
	padding: 80px 0;
}

.thanks-message {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 40px;
}


/* --------------------------------------------------------------------------
17. Pagination
-------------------------------------------------------------------------- */

.pagination,
.nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 60px;
}

.page-numbers {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 200;
	letter-spacing: 0.28px;
	padding: 5px 8px;
	transition: color 0.3s;
}

.page-numbers.current {
	font-size: 15px;
	font-weight: 400;
	color: #000;
}

.page-numbers:not(.current) {
	color: #000;
}

.page-numbers:not(.current):hover {
	color: #000;
}


/* --------------------------------------------------------------------------
18. Page Transition
-------------------------------------------------------------------------- */

.page-transition-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: #fff;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.page-transition-overlay.is-active {
	opacity: 1;
	pointer-events: auto;
}

/* Initial page load: body hidden until ready */
body.is-loading {
	opacity: 0;
}

body.is-loaded {
	opacity: 1;
	transition: opacity 0.5s ease;
}


/* --------------------------------------------------------------------------
19. GSAP Animation States
-------------------------------------------------------------------------- */

.js-fade {
	opacity: 0;
	transform: translateY(30px);
	transition: none;
}


/* --------------------------------------------------------------------------
19. Responsive - Tablet (768px - 1024px)
-------------------------------------------------------------------------- */

@media (max-width: 1024px) {
	.header-inner {
		padding: 20px 25px;
	}

	.nav-link {
		font-size: 16px;
	}

	.header-nav {
		gap: 18px;
	}

	.global-nav__inner {
		padding: 120px 80px;
	}

	.global-nav__link {
		font-size: 26px;
		line-height: 56px;
	}

	.section-mv__inner {
		padding: 0 40px;
	}

	.section-concept {
		padding: 120px 0 120px;
	}
	
	.brand-detail {
		gap: 40px;
	}

	.brand-detail__image {
		width: 340px;
	}

	.brand-gallery__item--right {
		width: 60%;
	}

	.brand-gallery__item--left {
		width: 45%;
		margin-top: -30px;
	}

	.brand-gallery__item--right-tall {
		width: 45%;
		margin-top: -120px;
	}

	.news-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}

	.store-info__row dt {
		width: 150px;
	}
	
	
}


/* --------------------------------------------------------------------------
20. Responsive - Mobile (< 768px)
-------------------------------------------------------------------------- */

@media (max-width: 767px) {
	.header-inner {
		padding: 15px 20px;
	}

	.header-logo img {
		width: 80px;
	}

	.nav-link {
		display: none;
	}

	.nav-link--bordered {
		display: none;
	}

	.container {
		padding: 0 20px;
	}

	.page-header {
		padding: 100px 0 40px;
	}

	.page-title {
		font-size: 22px;
	}

	/* Hero - Center video in viewport on mobile */
	.section-mv {
		padding-top: 0;
		height: 100svh;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.section-mv__inner {
		padding: 0 30px;
		max-width: none;
		width: 100%;
	}

	/* Concept */

	.section-concept {
		padding: 30px 0 120px;
	}
	
	.section-concept__inner {
		padding: 0 30px;
		text-align: left;
	}

	/* Brand */
	.section-brand + .section-brand {
		margin-top: 200px;
	}
	
	#synque .brand-banner, #ee .brand-banner {
		margin: 0 30px 70px;
		aspect-ratio: 4 / 3;
		height: auto;
	}

	.brand-banner__logo, .section-brand--ee .brand-banner__logo  {
		width: 100px;
		height: auto;
	}

	.brand-detail {
		flex-direction: column;
		gap: 60px;
		margin-bottom: 120px;
	}

	.brand-detail--reverse {
		flex-direction: column;
		padding: 0;
	}

	.brand-detail__image {
		width: 100%;
	}
	
	#ee .brand-detail__image {

	}
	
	#ee .brand-detail__text {
		padding: 0 30px;
	}
	
	.brand-gallery {
		margin: 0 30px;
	}
	
	.brand-gallery__item--left {
		width: 100%;
		margin: 70px 30px 70px 0;
		padding-right: 40px;
	}
	
	.brand-gallery__item--right {
		width: 100%;
		margin: 40px 0 40px 30px;
	}
	
	.brand-gallery__item--right-tall {
		width: 100%;
		margin: 40px 40px 0;
        padding: 0 40px;
	}
	.brand-gallery__overlay {
		font-size: 24px;
	}
	
	/* News */
	.news-grid {
		grid-template-columns: 1fr;
	}

	/* Form */
	.contact-form__row {
		flex-direction: column;
	}

	.contact-form__label {
		width: 100%;
		padding-top: 0;
		margin-bottom: 8px;
	}

	.contact-form__submit {
		padding-left: 0;
	}

	.wpcf7-turnstile.cf-turnstile {
		padding-left: 0;
	}

	/* Global Nav */
	.global-nav__inner {
		flex-direction: column;
		padding: 100px 30px;
	}

	.global-nav__link {
		font-size: 24px;
		line-height: 52px;
	}

	.global-nav__image {
		display: none;
	}

	/* Footer */
	.site-footer {
		margin: 0 20px;
	}

	.footer-inner {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: flex-end;
		text-align: left;
		padding: 42px 0 0;
		gap: 0;
	}

	.footer-logo {
		position: absolute;
		left: 0;
		transform: translate(0, -50%);
	}

	.footer-logo img {
		width: 65px;
	}

	.footer-copyright {
		margin-left: 0px;
	}

	.footer-pagetop {
		position: absolute;
		right: 0;
		bottom: 20px;
	}

	/* Single News */
	.news-single__content {
		padding: 0;
	}

	/* Main content bottom spacing */
	.main-content {
		padding-bottom: 100px;
	}

	/*global-nav__menu*/
	.global-nav__menu {
		align-items: stretch;
	}
	
	/*store*/
	.store-info__row {
		flex-direction: column;
	}
	.sp-none {
		display: none;
	}
	
}
