/* ==========================================================================
   Bro Wood — main stylesheet
   Mobile-first. Breakpoints: 768px (tablet), 1440px (desktop / design width)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
	--color-brown: #333230;
	--color-bg: #fdf9f5;
	--color-text-secondary: #5d5b57;
	--color-accent: #f76c46;
	--color-primary-btn: #8f5331;
	--color-border: #c4bdb1;
	--color-beige: #e5dfd5;
	--color-olive: #7d825c;
	--color-olive-input: #b0b496;
	--color-yellow: #e9e778;
	--font-heading: "Fredoka", sans-serif;
	--font-body: "Poppins", sans-serif;
	--container-max: 1360px;
	--gutter: 20px;
}

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-padding-top: 96px;
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	color: var(--color-brown);
	background-color: var(--color-bg);
}

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

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

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
p {
	margin: 0;
}

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

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

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

section>.hero__inner,
.about__inner,
.steps__inner,
.gallery__inner,
.colors__inner,
.partners__inner,
.quote-form__inner,
.testimonials__inner,
.faq__inner,
.footer__inner,
.reviews-page__inner,
.instagram-banner__inner,
.site-header__inner {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding-left: var(--gutter);
	padding-right: var(--gutter);
}

@media (min-width: 768px) {
	:root {
		--gutter: 40px;
	}
}

/* ---------- Buttons ---------- */
.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 16px;
	overflow: hidden;
	padding: 8px 8px 8px 18px;
	border: 2px solid var(--color-brown);
	border-radius: 100px;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 14px;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	transition: opacity 0.2s ease;
}

.btn:hover {
	opacity: 0.85;
}

.btn--primary {
	background-color: var(--color-primary-btn);
	color: var(--color-bg);
}

.btn--primary::before {
	content: "";
	position: absolute;
	top: 6px;
	bottom: 6px;
	right: 6px;
	left: calc(100% - 40px);
	border-radius: 100px;
	background-color: var(--color-bg);
	transition: left 0.35s ease;
	z-index: 0;
	pointer-events: none;
}

.btn--primary:hover::before {
	left: 6px;
}

.btn--primary:hover .btn__text {
	color: var(--color-brown);
	transition: color 0.35s ease;
}

.btn--secondary {
	background-color: transparent;
	color: var(--color-brown);
	padding: 8px 18px;
	height: 48px;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn--secondary:hover {
	opacity: 1;
	background-color: rgba(143, 83, 49, 0.1);
	border-color: var(--color-primary-btn);
	color: var(--color-primary-btn);
}

.btn--secondary:disabled,
.btn--secondary.is-disabled {
	border-color: #5e5e5e;
	color: #a2a2a2;
	cursor: not-allowed;
	pointer-events: none;
}

.btn--on-photo {
	background-color: #f3e6d7;
	border-color: var(--color-brown);
	color: var(--color-brown);
}

.btn--on-photo::before {
	background-color: var(--color-brown);
}

.btn--on-photo:hover .btn__text {
	color: #f3e6d7;
}

.btn--on-photo .btn__icon {
	background-color: var(--color-brown);
}

.btn__text {
	position: relative;
	z-index: 1;
}

.btn__icon {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 100px;
	background-color: var(--color-bg);
	flex-shrink: 0;
}

.btn__icon img {
	width: 18px;
	height: 18px;
}

@media (min-width: 768px) {
	.btn {
		font-size: 16px;
	}
}

/* ==========================================================================
   Site Header
   ========================================================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background-color: transparent;
	transition: background-color 0.2s ease, backdrop-filter 0.2s ease;
}

.site-header.is-scrolled {
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	background-color: rgba(253, 249, 245, 0.2);
}

@media (max-width: 767px) {
	.site-header {
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
		background-color: rgba(253, 249, 245, 0.2);
		transition: none;
	}

	.site-header--over-hero:not(.site-header--menu-open) .site-header__burger {
		color: #fff;
	}
}

.site-header--over-hero:not(.site-header--menu-open) .site-header__logo img {
	filter: brightness(0) invert(1);
}

.site-header--over-hero:not(.site-header--menu-open) .site-nav__link,
.site-header--over-hero:not(.site-header--menu-open) .site-header__phone {
	color: #fff;
}

.site-header--over-hero:not(.site-header--menu-open) .site-header__phone img {
	filter: brightness(0) invert(1);
}

.site-header--menu-open {
	background-color: var(--color-bg);
	backdrop-filter: none;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 16px;
	padding-bottom: 16px;
}

.site-header__brand {
	display: flex;
	align-items: center;
	gap: 40px;
}

.site-header__logo img {
	display: block;
	width: 52px;
	height: 40px;
	object-fit: contain;
}

.site-nav {
	position: fixed;
	top: 72px;
	left: 0;
	right: 0;
	background-color: var(--color-bg);
	border-bottom: 1px solid var(--color-border);
	max-height: 0;
	overflow-y: auto;
	transition: max-height 0.3s ease;
}

.site-nav.is-open {
	max-height: calc(100vh - 72px);
}

.site-nav__list {
	display: flex;
	flex-direction: column;
	padding: 24px var(--gutter) 0;
	gap: 24px;
}

.site-nav__link {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 16px;
	text-transform: uppercase;
}

.site-nav__link::after {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 100px;
	background-color: transparent;
	transition: background-color 0.2s ease;
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after {
	background-color: var(--color-primary-btn);
}

.site-nav__actions {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin: 24px var(--gutter) 0;
	padding: 24px 0;
	border-top: 1px solid var(--color-border);
}

.site-nav__phone {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 16px;
	text-transform: uppercase;
}

.site-nav__cta {
	width: 100%;
	justify-content: space-between;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.site-header__phone {
	display: none;
	align-items: center;
	gap: 8px;
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: 14px;
}

.site-header__cta {
	display: none;
}

.site-header__burger {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 16px;
	text-transform: uppercase;
	color: var(--color-text-secondary);
}

@media (min-width: 1024px) {
	.site-header__logo img {
		width: 62px;
		height: 48px;
	}

	.site-header__burger {
		display: none;
	}

	.site-nav {
		position: static;
		max-height: none;
		overflow: visible;
		background: none;
		border: none;
	}

	.site-nav__list {
		flex-direction: row;
		align-items: center;
		padding: 0;
		gap: 32px;
	}

	.site-nav__actions {
		display: none;
	}

	.site-header__phone {
		display: flex;
	}

	.site-header__cta {
		display: inline-flex;
	}
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	color: var(--color-bg);
	overflow: hidden;
}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero__media-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: absolute;
	inset: 0;
}

.hero__media-img--mobile {
	display: block;
}

.hero__media-img--desktop {
	display: none;
}

@media (min-width: 768px) {
	.hero__media-img--mobile {
		display: none;
	}

	.hero__media-img--desktop {
		display: block;
	}
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(105deg, rgba(0, 0, 0, 0) 5.7%, rgba(0, 0, 0, 0.5) 92.5%);
}

.hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	min-height: 100vh;
	min-height: 100svh;
	align-items: flex-start;
	padding-top: 100px;
	padding-bottom: 40px;
}

.hero__content {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.hero__text {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hero__header {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.hero__label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 14px;
	line-height: 1;
	text-transform: uppercase;
}

.hero__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--color-accent);
	flex-shrink: 0;
}

.hero__title {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 32px;
	line-height: 1;
	text-transform: uppercase;
}

.hero__subtitle {
	font-size: 16px;
	color: #ece9e5;
	max-width: 480px;
}

.hero__buttons {
	display: flex;
	align-items: center;
	gap: 16px;
}

.hero__buttons .btn--primary {
	flex: none;
	gap: 8px;
	padding-left: 12px;
	background-color: #f3e6d7;
	border-color: var(--color-brown);
	color: var(--color-brown);
}

.hero__buttons .btn--primary::before {
	background-color: var(--color-brown);
}

.hero__buttons .btn--primary:hover .btn__text {
	color: #f3e6d7;
}

.hero__buttons .btn--primary .btn__icon {
	background-color: var(--color-brown);
}

.hero__buttons .btn--secondary {
	flex: 1 1 0;
	padding-left: 12px;
	padding-right: 12px;
	backdrop-filter: blur(8px);
	background-color: rgba(243, 230, 215, 0.01);
	border-color: #f3e6d7;
	color: #f3e6d7;
}

.hero__buttons .btn--secondary:hover {
	opacity: 1;
	background-color: rgba(143, 83, 49, 0.1);
	border-color: var(--color-primary-btn);
	color: var(--color-primary-btn);
}

@media (min-width: 768px) {
	.hero__inner {
		padding-top: 140px;
		padding-bottom: 80px;
	}

	.hero__label {
		font-size: 16px;
	}

	.hero__title {
		font-size: 48px;
		max-width: 539px;
	}

	.hero__subtitle {
		font-size: 20px;
		font-weight: 500;
		color: var(--color-bg);
		max-width: 557px;
	}

	.hero__buttons .btn {
		height: 48px;
	}

	.hero__buttons .btn--primary {
		justify-content: flex-start;
		gap: 16px;
		padding-left: 18px;
		overflow: visible;
	}

	.hero__buttons .btn--secondary {
		flex: none;
		padding-left: 18px;
		padding-right: 18px;
	}
}

@media (min-width: 1440px) {
	.hero__title {
		font-size: 62px;
		max-width: 701px;
	}
}

/* ==========================================================================
   About
   ========================================================================== */
.about {
	background-color: var(--color-bg);
	padding: 56px 0;
}

.about__title {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 28px;
	text-transform: uppercase;
	margin-bottom: 32px;
}

.about__content {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.about__main {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.about__lead {
	display: flow-root;
}

.about__photo img {
	width: 100%;
	height: 100%;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	object-fit: cover;
}

.about__photo--small {
	float: left;
	width: 149px;
	height: 177px;
	margin: 0 24px 0 0;
}

.about__quote {
	font-family: var(--font-body);
	font-size: 32px;
	line-height: 1.3;
	color: var(--color-brown);
	margin-top: 141px;
}

@media (max-width: 767px) {
	.about__photo--small {
		float: none;
		width: 100%;
		height: auto;
		aspect-ratio: 149 / 177;
		margin: 0 0 24px;
	}

	.about__quote {
		margin-top: 0;
	}
}

.about__stats {
	display: flex;
	flex-wrap: nowrap;
	gap: 16px;
	width: 100%;
}

.about__stat {
	flex: 1 1 0;
	min-width: 0;
}

.about__stat-number {
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: 44px;
	line-height: 1;
	color: var(--color-accent);
	margin-bottom: 8px;
}

.about__stat-label {
	font-size: 14px;
	color: var(--color-text-secondary);
}

.about__side {
	display: flex;
	flex-direction: column;
	gap: 40px;
	border-top: 1px solid var(--color-border);
	padding-top: 24px;
}

.about__texts {
	display: flex;
	flex-direction: column;
	gap: 16px;
	font-size: 16px;
	color: var(--color-text-secondary);
}

.about__photo--large {
	height: 225px;
}

@media (min-width: 768px) {
	.about__title {
		font-size: 34px;
	}

	.about__content {
		flex-direction: row;
		align-items: flex-start;
	}

	.about__main {
		flex: 1;
	}

	.about__stats {
		width: auto;
		gap: 24px;
	}

	.about__stat {
		flex: none;
	}

	.about__photo--small {
		margin-right: 32px;
	}

	.about__quote {
		font-size: 40px;
		margin-top: 130px;
	}

	.about__side {
		width: 320px;
		flex-shrink: 0;
		border-top: none;
		border-left: 1px solid var(--color-border);
		padding-top: 0;
		padding-left: 24px;
		justify-content: space-between;
	}
}

@media (min-width: 1440px) {
	.about__quote {
		font-size: 56px;
		margin-top: 130px;
	}

	.about__stat-number {
		font-size: 72px;
	}

	.about__side {
		width: 376px;
	}
}

/* ==========================================================================
   Steps ("Our Process")
   ========================================================================== */
.steps {
	position: relative;
	height: auto;
	color: var(--color-bg);
}

.steps__pin {
	display: none;
}

.steps__mobile {
	background-color: var(--color-bg);
	color: var(--color-brown);
	padding-bottom: 32px;
}

.steps__mobile-inner {
	display: flex;
	flex-direction: column;
}

.steps__mobile-track {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.steps__mobile-track::-webkit-scrollbar {
	display: none;
}

.steps__mobile-slide {
	position: relative;
	flex: 0 0 92%;
	scroll-snap-align: start;
	min-height: 100vh;
	min-height: 100svh;
	overflow: hidden;
	color: var(--color-bg);
}

.steps__mobile-media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.steps__mobile-slide .steps__overlay {
	z-index: 1;
}

.steps__mobile-slide-inner {
	position: relative;
	z-index: 2;
	height: 100%;
	padding: 100px 16px 32px;
	display: flex;
	flex-direction: column;
}

.steps__mobile-slide .steps__title {
	margin-bottom: 40px;
}

.steps__mobile-slide .steps__top-row {
	gap: 12px;
}

.steps__mobile-slide .steps__content {
	flex: none;
	overflow: visible;
}

.steps__mobile-slide .steps__content .btn--primary {
	width: 100%;
	justify-content: space-between;
}

.steps__mobile-hint {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 24px;
	padding-left: var(--gutter);
	padding-right: var(--gutter);
	font-size: 14px;
	color: var(--color-text-secondary);
}

@media (min-width: 768px) {
	.steps {
		height: var(--steps-scroll-height);
	}

	.steps__pin {
		position: sticky;
		top: 0;
		height: 100vh;
		overflow: hidden;
		display: flex;
		align-items: stretch;
	}

	.steps__mobile {
		display: none;
	}
}

.steps__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.steps__bg-item {
	position: absolute;
	inset: 0;
	clip-path: inset(100% 0 0 0);
}

.steps__bg-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.steps__overlay {
	position: absolute;
	inset: 0;
	z-index: 10;
	background-color: rgba(0, 0, 0, 0.5);
}

.steps__inner {
	position: relative;
	z-index: 20;
	width: 100%;
	padding: 100px var(--gutter) 24px;
	display: flex;
	flex-direction: column;
}

.steps__title {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 28px;
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 40px;
}

.steps__top-row {
	display: flex;
	align-items: center;
	gap: 80px;
	flex-shrink: 0;
}

.steps__number-value {
	font-size: 16px;
	flex-shrink: 0;
}

.steps__number-label {
	display: none;
	font-size: 16px;
}

.steps__pills {
	position: relative;
	flex: 1;
	min-height: 32px;
}

.steps__track {
	position: relative;
	width: 100%;
	height: 1px;
	background-color: rgba(253, 249, 245, 0.3);
	margin: 12px 0;
	flex-shrink: 0;
}

.steps__progress {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0%;
	background-color: var(--color-bg);
}

.steps__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
	flex: 1;
	min-height: 0;
	overflow-y: auto;
}

.steps__panels {
	position: relative;
}

.steps__fade-item {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	pointer-events: none;
}

.steps__fade-item.is-active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.steps__panel {
	width: 100%;
}

.steps__panel .btn--primary {
	width: 100%;
	justify-content: space-between;
}

.steps__pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--color-brown);
	padding: 4px 12px 4px 8px;
	border-radius: 100px;
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: 14px;
	white-space: nowrap;
}

.steps__pill img {
	width: 20px;
	height: 20px;
}

.steps__heading {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 28px;
	line-height: 1.2;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.steps__desc {
	font-size: 16px;
	margin-bottom: 16px;
}

.steps__bullets {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 32px;
}

.steps__bullets li {
	position: relative;
	padding-left: 24px;
	font-size: 16px;
}

.steps__bullets li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--step-color, #d5b682);
}

.steps__scroll {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
	font-size: 14px;
	flex-shrink: 0;
}

.steps__scroll-icon {
	transform: rotate(90deg);
}

@media (min-width: 768px) {
	.steps__title {
		font-size: 34px;
	}

	.steps__inner {
		padding-top: 40px;
	}

	.steps__heading {
		font-size: 32px;
		max-width: 700px;
	}

	.steps__desc,
	.steps__bullets li {
		font-size: 18px;
	}

	.steps__content {
		max-width: 620px;
		overflow-y: visible;
	}
}

@media (min-width: 1024px) {
	.steps__inner {
		padding-top: 40px;
		padding-bottom: 40px;
		justify-content: space-between;
	}

	.steps__top-row {
		gap: 12px;
	}

	.steps__number-value {
		width: 435px;
	}

	.steps__content {
		flex-direction: row;
		align-items: flex-start;
		gap: 0;
		max-width: 1000px;
	}

	.steps__number-label {
		display: block;
		width: 435px;
		flex-shrink: 0;
	}

	.steps__panels {
		flex: 1;
	}

	.steps__panel .btn--primary {
		width: auto;
	}

	.steps__heading {
		font-size: 38px;
	}

	.steps__desc,
	.steps__bullets li {
		font-size: 20px;
	}
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery {
	background-color: var(--color-bg);
	padding: 56px 0;
}

.gallery__title {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 26px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.gallery__header-row {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 32px;
}

.gallery__desc {
	color: var(--color-text-secondary);
	font-size: 16px;
}

.gallery__arrows {
	display: none;
	gap: 16px;
}

.gallery__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 3px solid #868686;
}

.gallery__arrow img {
	width: 22px;
	height: 22px;
	opacity: 0.4;
}

#gallery-prev img {
	transform: scaleX(-1);
}

.gallery__arrow--active {
	border-color: var(--color-brown);
	background-color: rgba(51, 50, 48, 0.1);
}

.gallery__arrow--active img {
	opacity: 1;
}

.gallery__arrow:disabled {
	cursor: default;
}

.gallery__track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.gallery__track::-webkit-scrollbar {
	display: none;
}

.gallery__card {
	position: relative;
	flex: 0 0 90%;
	scroll-snap-align: start;
	border-radius: 12px;
	overflow: hidden;
	height: 488px;
}

.gallery__compare {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 12px;
	cursor: ew-resize;
}

.gallery__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
	user-select: none;
}

.gallery__img--before {
	z-index: 1;
}

.gallery__img-after-wrap {
	position: absolute;
	inset: 0;
	z-index: 2;
	clip-path: inset(0 0 0 50%);
	pointer-events: none;
}

.gallery__pill {
	position: absolute;
	top: 8px;
	z-index: 3;
	background-color: #d5b682;
	color: var(--color-brown);
	padding: 4px 12px;
	border-radius: 100px;
	font-family: var(--font-heading);
	font-size: 12px;
	pointer-events: none;
}

.gallery__pill--before {
	left: 8px;
}

.gallery__pill--after {
	right: 8px;
}

.gallery__divider {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 3px;
	background-color: var(--color-bg);
	transform: translateX(-50%);
	z-index: 4;
	pointer-events: none;
}

.gallery__handle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 5;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	padding: 0;
	cursor: ew-resize;
	touch-action: none;
}

.gallery__handle img {
	width: 100%;
	height: 100%;
	pointer-events: none;
}

@media (min-width: 768px) {
	.gallery__title {
		font-size: 34px;
	}

	.gallery__header-row {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.gallery__arrows {
		display: flex;
	}

	.gallery__desc {
		font-size: 20px;
		max-width: 600px;
	}

	.gallery__card {
		flex: 0 0 calc((100% - 32px) / 3);
		height: 488px;
	}
}

/* ==========================================================================
   Colors / Door configurator
   ========================================================================== */
.colors {
	background-color: var(--color-beige);
	padding: 56px 0;
}

.colors__title {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 26px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.colors__header-row {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 32px;
}

.colors__cta {
	width: 100%;
	flex-shrink: 0;
	justify-content: space-between;
}

.colors__desc {
	color: var(--color-text-secondary);
	font-size: 16px;
}

.colors__body {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.colors__preview {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.colors__door {
	width: 220px;
	aspect-ratio: 250 / 474;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top center;
	border-radius: 6px;
}

.colors__panel {
	display: flex;
	flex-direction: column;
}

.colors__block {
	padding: 24px 0;
}

.colors__block--info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.colors__block--info .colors__label {
	font-weight: 400;
	margin-bottom: 0;
}

.colors__block:first-child {
	padding-top: 0;
}

.colors__block--bordered {
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.colors__label {
	font-size: 16px;
	font-weight: 600;
	color: var(--color-text-secondary);
	margin-bottom: 16px;
}

@media (min-width: 768px) {
	.colors__block--info {
		flex-direction: row;
		gap: 24px;
	}

	.colors__block--info .colors__label {
		flex: 0 0 140px;
	}
}

@media (min-width: 1024px) {
	.colors__block--info .colors__label {
		flex-basis: 167px;
	}
}

.colors__finish-name {
	color: var(--color-brown);
	font-weight: 600;
}

.colors__door-types {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.colors__door-type {
	padding: 8px 16px;
	border-radius: 6px;
	border: 1px solid var(--color-border);
	background-color: var(--color-beige);
	color: var(--color-text-secondary);
	font-size: 15px;
}

.colors__door-type.is-active {
	background-color: #f8f7f6;
	border: 2px solid var(--color-brown);
}

.colors__swatches {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}

.colors__swatch {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px;
	border-radius: 12px;
	border: 1px solid var(--color-border);
	background-color: var(--color-beige);
	text-align: center;
}

.colors__swatch.is-active {
	background-color: #f8f7f6;
	border: 2px solid var(--color-brown);
}

.colors__swatch-dot {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--color-border);
}

.colors__swatch-name {
	font-size: 14px;
	color: var(--color-text-secondary);
}

.colors__swatch-check {
	position: absolute;
	top: 6px;
	right: 6px;
	display: none;
	width: 16px;
	height: 16px;
}

.colors__swatch.is-active .colors__swatch-check {
	display: block;
}

.colors__text {
	font-size: 15px;
	color: var(--color-brown);
}

@media (min-width: 768px) {
	.colors__title {
		font-size: 34px;
	}

	.colors__header-row {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.colors__cta {
		width: auto;
		flex-shrink: 0;
		justify-content: flex-start;
	}

	.colors__desc {
		font-size: 20px;
		max-width: 600px;
		flex: 1;
		min-width: 0;
	}

	.colors__body {
		flex-direction: row;
		gap: 40px;
	}

	.colors__preview {
		flex: 0 0 300px;
	}

	.colors__door {
		position: sticky;
		top: 96px;
	}

	.colors__panel {
		flex: 1;
		border-left: 1px solid var(--color-border);
		padding-left: 40px;
	}

	.colors__swatches {
		grid-template-columns: repeat(4, 1fr);
	}

	.colors__swatch-dot {
		width: 56px;
		height: 56px;
	}

	.colors__swatch-name,
	.colors__text,
	.colors__label,
	.colors__door-type {
		font-size: 18px;
	}
}

@media (min-width: 1024px) {
	.colors__desc {
		max-width: 1024px;
	}
}

@media (min-width: 1440px) {
	.colors__door {
		width: 360px;
	}
}

/* ==========================================================================
   Partners
   ========================================================================== */
.partners {
	background-color: var(--color-bg);
	padding: 56px 0;
}

.partners__title {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 26px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.partners__desc {
	color: var(--color-text-secondary);
	font-size: 16px;
	margin-bottom: 32px;
}

.partners__marquee {
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent, #000 40px, #000 calc(100% - 40px), transparent);
	mask-image: linear-gradient(to right, transparent, #000 40px, #000 calc(100% - 40px), transparent);
}

.partners__logos {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 64px;
	width: max-content;
	animation: partners-marquee 28s linear infinite;
}

.partners__logo {
	flex: 0 0 auto;
}

.partners__logo img {
	max-height: 40px;
	width: auto;
}

@keyframes partners-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-33.3334%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.partners__logos {
		animation: none;
	}
}

@media (min-width: 768px) {
	.partners__title {
		font-size: 34px;
	}

	.partners__desc {
		font-size: 20px;
	}

	.partners__logo img {
		max-height: 56px;
	}
}

/* ==========================================================================
   Quote form
   ========================================================================== */
.quote-form {
	background-color: var(--color-bg);
	padding: 56px 0;
}

.quote-form__panel {
	background-color: var(--color-olive);
	border-radius: 12px;
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	gap: 48px;
	color: var(--color-bg);
}

.quote-form__left {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.quote-form__lead {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 22px;
	text-transform: uppercase;
	line-height: 1;
	color: #ece9e5;
	margin-bottom: 56px;
}

.quote-form__note-title {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
	color: var(--color-yellow);
	margin-bottom: 16px;
}

.quote-form__note p:not(.quote-form__note-title) {
	font-size: 16px;
	color: #ece9e5;
	margin-bottom: 24px;
}

.quote-form__note p:last-child {
	margin-bottom: 0;
}

.quote-form__note strong {
	font-weight: 600;
}

.quote-form__contacts {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.quote-form__contact-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 500;
	color: #ece9e5;
}

.quote-form__form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.quote-form__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.quote-form__field label {
	font-size: 16px;
}

.quote-form__required {
	color: #ff6467;
}

.quote-form__field input,
.quote-form__field textarea {
	background-color: var(--color-olive-input);
	border: 1px solid var(--color-bg);
	border-radius: 100px;
	padding: 8px 18px;
	height: 56px;
	color: var(--color-brown);
	font-size: 16px;
}

.quote-form__field input::placeholder,
.quote-form__field textarea::placeholder {
	color: #e3e3e3;
}

.quote-form__field textarea {
	border-radius: 32px;
	height: 140px;
	resize: vertical;
	padding-top: 12px;
}

.quote-form__hint {
	align-self: flex-end;
	font-size: 12px;
	color: #ece9e5;
}

.quote-form__submit {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 16px;
}

.quote-form__button {
	width: 100%;
	justify-content: space-between;
	background-color: rgba(111, 112, 101, 0.8);
	border-color: #808080;
	color: #a2a2a2;
}

.quote-form__button .btn__icon {
	background-color: #afafaf;
}

.quote-form__button.is-valid {
	background-color: var(--color-primary-btn);
	border-color: var(--color-brown);
	color: var(--color-bg);
}

.quote-form__button.is-valid .btn__icon {
	background-color: var(--color-bg);
}

.quote-form__button.is-valid::before {
	content: "";
	position: absolute;
	top: 6px;
	bottom: 6px;
	right: 6px;
	left: calc(100% - 40px);
	border-radius: 100px;
	background-color: var(--color-bg);
	transition: left 0.35s ease;
	z-index: 0;
	pointer-events: none;
}

.quote-form__button.is-valid:hover::before {
	left: 6px;
}

.quote-form__button.is-valid:hover .btn__text {
	color: var(--color-brown);
	transition: color 0.35s ease;
}

.quote-form__button:disabled {
	cursor: not-allowed;
	opacity: 0.6;
}

.quote-form__disclaimer {
	font-size: 14px;
	color: #ece9e5;
	text-align: center;
}

.quote-form__status {
	font-size: 14px;
	font-weight: 600;
	min-height: 1.2em;
}

.quote-form__status--success {
	color: var(--color-yellow);
}

.quote-form__status--error {
	color: #ff6467;
}

@media (min-width: 768px) {
	.quote-form__lead {
		font-size: 34px;
	}

	.quote-form__note-title {
		font-size: 24px;
	}

	.quote-form__note p {
		font-size: 20px;
	}

	.quote-form__contact-item {
		font-size: 18px;
	}

	.quote-form__field label {
		font-size: 20px;
	}

	.quote-form__field input,
	.quote-form__field textarea {
		font-size: 20px;
	}
}

@media (min-width: 1024px) {
	.quote-form__panel {
		flex-direction: row;
		gap: 72px;
		padding: 40px;
	}

	.quote-form__left {
		flex: 1;
		justify-content: space-between;
	}

	.quote-form__right {
		width: 568px;
		flex-shrink: 0;
	}

	.quote-form__disclaimer {
		text-align: left;
	}
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials {
	background-color: var(--color-beige);
	padding: 56px 0;
}

.testimonials__title {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 28px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.testimonials__header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 40px;
}

.testimonials__desc {
	color: var(--color-text-secondary);
	font-size: 16px;
	max-width: 280px;
}

.testimonials__rating {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	flex-shrink: 0;
}

.testimonials__rating-number {
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: 36px;
	color: var(--color-accent);
}

.testimonials__rating-label {
	font-size: 16px;
	color: var(--color-text-secondary);
	text-align: center;
}

.testimonials__list {
	display: flex;
	flex-direction: row;
	width: 100%;
	min-width: 0;
	gap: 8px;
	margin-bottom: 40px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.testimonials__list::-webkit-scrollbar {
	display: none;
}

.testimonials__card {
	background-color: #f8f7f6;
	border: 1px solid var(--color-border);
	border-radius: 12px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	flex: 0 0 90%;
	height: 370px;
	scroll-snap-align: start;
}

.testimonials__card-head {
	display: flex;
	align-items: center;
	gap: 16px;
}

.testimonials__avatar {
	border-radius: 50%;
	width: 58px;
	height: 58px;
	object-fit: cover;
	flex-shrink: 0;
}

.testimonials__avatar--initial {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-olive);
	color: var(--color-bg);
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 22px;
	text-transform: uppercase;
}

.testimonials__name {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 20px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.testimonials__stars-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.testimonials__stars img {
	width: 22px;
	height: 22px;
	display: inline-block;
}

.testimonials__rating-value {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 22px;
	color: var(--color-text-secondary);
}

.testimonials__text {
	font-size: 20px;
	color: var(--color-text-secondary);
	flex: 1;
	min-height: 0;
	overflow: hidden;
}

.testimonials__reviews {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.testimonials__reviews .btn--secondary {
	width: 100%;
	justify-content: center;
}

@media (min-width: 768px) {
	.testimonials__title {
		font-size: 34px;
	}

	.testimonials__header-row {
		align-items: flex-end;
	}

	.testimonials__desc {
		font-size: 20px;
		max-width: 600px;
	}
}

@media (min-width: 1024px) {
	.testimonials__list {
		flex-direction: row;
		overflow-x: visible;
	}

	.testimonials__card {
		flex: 1;
		height: 370px;
	}

	.testimonials__reviews .btn--secondary {
		width: auto;
	}

	.testimonials__text {
		font-size: 18px;
		overflow: hidden;
	}
}

/* ==========================================================================
   Reviews page
   ========================================================================== */
.reviews-page {
	background-color: var(--color-bg);
	padding-top: 100px;
	padding-bottom: 56px;
}

.reviews-page__header {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 40px;
}

.reviews-page__title {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 26px;
	text-transform: uppercase;
}

.reviews-page__desc {
	color: var(--color-text-secondary);
	font-size: 16px;
}

.reviews-page__content {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.reviews-page__summary {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

/* ---------- Review form ---------- */
.review-form {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.review-form__fields {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.review-form__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.review-form__field label,
.review-form__label {
	font-size: 16px;
	color: var(--color-brown);
}

.review-form__required {
	color: #ff6467;
}

.review-form__field input,
.review-form__field textarea {
	background-color: var(--color-olive-input);
	border: 1px solid #5d5b57;
	border-radius: 100px;
	padding: 8px 18px;
	height: 56px;
	color: var(--color-brown);
	font-size: 16px;
}

.review-form__field input::placeholder,
.review-form__field textarea::placeholder {
	color: #e3e3e3;
}

.review-form__field textarea {
	border-radius: 24px;
	height: 120px;
	resize: vertical;
	padding-top: 12px;
}

.review-form__hint {
	align-self: flex-end;
	font-size: 12px;
	color: var(--color-text-secondary);
}

.review-form__stars {
	display: flex;
	align-items: center;
	gap: 4px;
}

.review-form__star {
	position: relative;
	display: inline-flex;
	width: 22px;
	height: 22px;
	cursor: pointer;
}

.review-form__star-input {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	cursor: pointer;
}

.review-form__star-icon {
	display: block;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.review-form__star-input:focus-visible~.review-form__star-icon {
	outline: 2px solid var(--color-brown);
	outline-offset: 2px;
	border-radius: 2px;
}

.review-form__consent {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.review-form__consent label {
	flex: 1;
	font-size: 16px;
	color: var(--color-brown);
}

.review-form__checkbox {
	appearance: none;
	-webkit-appearance: none;
	flex-shrink: 0;
	width: 29px;
	height: 30px;
	border: 2px solid #5d5b57;
	border-radius: 100px;
	background-color: var(--color-olive-input);
	position: relative;
	cursor: pointer;
}

.review-form__checkbox:checked {
	background-color: var(--color-primary-btn);
	border-color: var(--color-brown);
}

.review-form__checkbox:checked::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--color-bg);
	transform: translate(-50%, -50%);
}

.review-form__checkbox:focus-visible {
	outline: 2px solid var(--color-brown);
	outline-offset: 2px;
}

.review-form__submit {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.review-form__button {
	width: 100%;
	justify-content: space-between;
	background-color: rgba(111, 112, 101, 0.8);
	border-color: #808080;
	color: #a2a2a2;
}

.review-form__button .btn__icon {
	background-color: #afafaf;
}

.review-form__button.is-valid {
	background-color: var(--color-primary-btn);
	border-color: var(--color-brown);
	color: var(--color-bg);
}

.review-form__button.is-valid .btn__icon {
	background-color: var(--color-bg);
}

.review-form__button.is-valid::before {
	content: "";
	position: absolute;
	top: 6px;
	bottom: 6px;
	right: 6px;
	left: calc(100% - 40px);
	border-radius: 100px;
	background-color: var(--color-bg);
	transition: left 0.35s ease;
	z-index: 0;
	pointer-events: none;
}

.review-form__button.is-valid:hover::before {
	left: 6px;
}

.review-form__button.is-valid:hover .btn__text {
	color: var(--color-brown);
	transition: color 0.35s ease;
}

.review-form__button:disabled {
	cursor: not-allowed;
	opacity: 0.6;
}

.review-form__status {
	font-size: 14px;
	font-weight: 600;
	min-height: 1.2em;
}

.review-form__status--success {
	color: var(--color-primary-btn);
}

.review-form__status--error {
	color: #ff6467;
}

/* ---------- Summary + review list ---------- */
.reviews-summary {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.reviews-summary__title {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 20px;
	text-transform: uppercase;
}

.reviews-summary__stars {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.reviews-summary__rating {
	display: flex;
	align-items: center;
	gap: 16px;
}

.reviews-summary__number {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 26px;
	text-transform: uppercase;
}

.reviews-summary__stars-icons {
	display: flex;
	align-items: center;
}

.reviews-summary__count {
	font-size: 16px;
	color: var(--color-text-secondary);
}

.reviews-summary__bars {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.reviews-summary__bar-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.reviews-summary__bar-label,
.reviews-summary__bar-pct {
	font-size: 14px;
	color: var(--color-text-secondary);
	flex-shrink: 0;
}

.reviews-summary__bar-pct {
	width: 36px;
	text-align: right;
}

.reviews-summary__bar-track {
	flex: 1;
	height: 10px;
	border-radius: 100px;
	background-color: #cdcccb;
	overflow: hidden;
}

.reviews-summary__bar-fill {
	height: 100%;
	border-radius: 100px;
	background-color: var(--color-accent);
}

.reviews-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.reviews-list .testimonials__card {
	height: auto;
	min-height: 300px;
}

.reviews-list__empty {
	color: var(--color-text-secondary);
	font-size: 16px;
}

@media (min-width: 768px) {
	.reviews-page__title {
		font-size: 34px;
	}

	.reviews-page__desc {
		font-size: 20px;
		max-width: 600px;
	}

	.reviews-page {
		padding-top: 130px;
	}

	.review-form__field label,
	.review-form__label,
	.review-form__consent label {
		font-size: 20px;
	}

	.reviews-summary__number {
		font-size: 34px;
	}

	.reviews-summary__count {
		font-size: 20px;
	}
}

@media (min-width: 1024px) {
	.reviews-page__content {
		flex-direction: row;
		align-items: flex-start;
		gap: 72px;
	}

	.review-form {
		flex: 1 1 0;
		max-width: 700px;
	}

	.reviews-page__summary {
		width: 578px;
		flex-shrink: 0;
	}
}

@media (min-width: 1440px) {
	.reviews-page {
		padding-top: 152px;
	}
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
	background-color: var(--color-bg);
	padding: 56px 0;
}

.faq__header {
	display: flex;
	flex-direction: column;
	gap: 32px;
	margin-bottom: 32px;
}

.faq__cta {
	width: 100%;
	justify-content: space-between;
}

.faq__title {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 26px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.faq__desc {
	color: var(--color-text-secondary);
	font-size: 16px;
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq__item {
	border: 1px solid var(--color-border);
	border-radius: 12px;
	background-color: transparent;
	padding: 24px;
	transition: background-color 0.2s ease;
}

.faq__item:hover,
.faq__item--open {
	background-color: #fffcf9;
}

.faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	text-align: left;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 15px;
	text-transform: uppercase;
	color: var(--color-brown);
}

.faq__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	flex-shrink: 0;
}

.faq__icon img {
	transform: rotate(90deg);
	transition: transform 0.25s ease;
}

.faq__item--open .faq__icon img {
	transform: rotate(-90deg);
}

.faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq__answer p {
	padding-top: 24px;
	font-size: 15px;
	color: var(--color-text-secondary);
}

.faq__item--open .faq__answer {
	max-height: 400px;
}

@media (min-width: 1024px) {
	.faq__inner {
		display: flex;
		gap: 76px;
	}

	.faq__header {
		width: 358px;
		flex-shrink: 0;
		margin-bottom: 0;
	}

	.faq__title {
		font-size: 34px;
	}

	.faq__desc {
		font-size: 20px;
	}

	.faq__list {
		flex: 1;
	}

	.faq__question {
		font-size: 20px;
	}

	.faq__answer p {
		font-size: 20px;
	}
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
	background-color: var(--color-beige);
	padding: 56px 0;
}

.footer__top {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-bottom: 40px;
}

.footer__heading {
	position: relative;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 22px;
	line-height: 1.3;
	padding-top: 22px;
	text-indent: 80px;
}

.footer__heading-logo {
	position: absolute;
	top: 0;
	left: 0;
	width: 62px;
	height: 48px;
}

.footer__info {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.footer__col-title {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 16px;
	text-transform: uppercase;
	color: var(--color-text-secondary);
	margin-bottom: 16px;
}

.footer__list li {
	margin-bottom: 16px;
	font-size: 16px;
}

.footer__list li:last-child {
	margin-bottom: 0;
}

.footer__contact-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	margin-bottom: 16px;
}

.footer__contact-item:last-child {
	margin-bottom: 0;
}

.footer__map {
	width: 100%;
	height: 220px;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 16px;
}

.footer__bottom {
	display: flex;
	flex-direction: column;
	gap: 8px;
	border-top: 1px solid var(--color-border);
	padding-top: 24px;
	font-size: 14px;
	color: var(--color-text-secondary);
}

@media (min-width: 768px) {
	.footer__top {
		flex-direction: row;
		justify-content: space-between;
	}

	.footer__intro {
		width: 338px;
		flex-shrink: 0;
	}

	.footer__heading {
		font-size: 32px;
		line-height: 1;
	}

	.footer__info {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 40px;
	}

	.footer__map {
		width: 300px;
		height: 260px;
	}

	.footer__col-title {
		font-size: 20px;
		margin-bottom: 24px;
	}

	.footer__list {
		columns: 2;
		column-gap: 64px;
	}

	.footer__list li {
		font-size: 20px;
		break-inside: avoid;
	}

	.footer__contact-item {
		font-size: 20px;
	}

	.footer__bottom {
		flex-direction: row;
		justify-content: space-between;
		font-size: 16px;
	}
}

@media (min-width: 1024px) {
	.footer__info {
		flex-wrap: nowrap;
		gap: 40px;
	}

	.footer__map {
		width: 240px;
		height: 240px;
	}
}

/* ==========================================================================
   Instagram banner
   ========================================================================== */
.instagram-banner {
	background-color: var(--color-bg);
	padding: 56px 0;
}

.instagram-banner__card {
	background-color: var(--color-olive);
	border-radius: 12px;
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	color: var(--color-bg);
	overflow: hidden;
}

.instagram-banner__left {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.instagram-banner__text {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.instagram-banner__header {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.instagram-banner__label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	color: #ece9e5;
}

.instagram-banner__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--color-yellow);
	flex-shrink: 0;
}

.instagram-banner__title {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 26px;
	line-height: 1.2;
	text-transform: uppercase;
}

.instagram-banner__desc {
	font-size: 16px;
	color: #ece9e5;
}

.instagram-banner__handle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	align-self: flex-start;
	width: 100%;
	background-color: var(--color-brown);
	border: 1px solid var(--color-yellow);
	border-radius: 100px;
	padding: 14px 24px;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	color: var(--color-bg);
	transition: opacity 0.2s ease;
}

.instagram-banner__handle:hover {
	opacity: 0.85;
}

.instagram-banner__media {
	position: relative;
	width: calc(100% + 48px);
	margin-left: -24px;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.instagram-banner__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (min-width: 768px) {
	.instagram-banner__title {
		font-size: 30px;
	}
}

@media (min-width: 1024px) {
	.instagram-banner__card {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 40px;
		padding: 40px;
	}

	.instagram-banner__title {
		font-size: 34px;
	}

	.instagram-banner__left {
		width: 550px;
		min-width: 0;
		flex-shrink: 1;
	}

	.instagram-banner__handle {
		width: auto;
	}

	.instagram-banner__media {
		width: 594px;
		max-width: 594px;
		min-width: 0;
		margin-left: 0;
		flex-shrink: 1;
		aspect-ratio: auto;
		overflow: visible;
	}

	.instagram-banner__media img {
		height: auto;
		object-fit: initial;
	}
}

@media (min-width: 1024px) and (max-width: 1439px) {
	.instagram-banner__left {
		width: 42%;
	}

	.instagram-banner__media {
		width: 46%;
	}
}