/* ==========================================================================
   STUDIO TOCCATA — Editorial Design System
   Loaded after Astra's stylesheet; resets what it needs to and builds the
   exhibition-grade layer described in the brief.
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------ */
:root {
	/* Colour — clean, low-clutter surfaces. Pure light neutrals only:
	   no background textures, patterns, or noise anywhere in the system. */
	--st-paper:        #FAFAFA;
	--st-paper-deep:    #F0F0EF;
	--st-ink:           #1A1A1A;
	--st-ink-soft:      #555555;
	--st-bronze:        #86754F;
	--st-bronze-light:  #A8926A;
	--st-line:          #E2E1DD;
	--st-viewer-bg:     #0B0B09;
	--st-white:         #FFFFFF;

	/* Type — Heebo first (excellent Hebrew + Latin coverage), Assistant as
	   the alternate Hebrew-friendly choice, Arial as the universal fallback.
	   One family for headings, body, menus and buttons — no separate serif
	   or monospace display faces, per the readability brief. */
	--st-font-display: "Heebo", "Assistant", Arial, sans-serif;
	--st-font-body:    "Heebo", "Assistant", Arial, sans-serif;
	--st-font-mono:    "Heebo", "Assistant", Arial, sans-serif;

	/* Motion */
	--st-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--st-duration-slow: 1400ms;
	--st-duration-med: 700ms;
	--st-duration-fast: 320ms;

	/* Layout */
	--st-gutter: clamp(20px, 4vw, 64px);
	--st-max: 1440px;
}

/* ---- Reset / base -------------------------------------------------------- */
.st-home, .st-project-single, .st-project-archive, body {
	background: var(--st-paper);
	color: var(--st-ink);
	font-family: var(--st-font-body);
	font-weight: 400;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body * { box-sizing: border-box; }

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

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

h1, h2, h3 {
	font-family: var(--st-font-display);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0;
	margin: 0;
}

.st-eyebrow {
	font-family: var(--st-font-mono);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--st-bronze);
	margin: 0 0 12px;
	display: inline-block;
	position: relative;
	padding-left: 22px;
}
.st-eyebrow::before {
	content: "";
	position: absolute;
	left: 0; top: 50%;
	width: 14px; height: 1px;
	background: var(--st-bronze);
}

.st-skip-link {
	position: absolute;
	left: -9999px;
	background: var(--st-ink);
	color: var(--st-white);
	padding: 12px 20px;
	z-index: 999;
}
.st-skip-link:focus { left: 12px; top: 12px; }

*:focus-visible {
	outline: 2px solid var(--st-bronze);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---- Header -------------------------------------------------------------- */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background-color: transparent;
	transition: background-color var(--st-duration-med) var(--st-ease),
		backdrop-filter var(--st-duration-med) var(--st-ease);
}

.st-home .site-header {
	background-color: transparent;
}

.site-header.is-scrolled {
	background-color: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px);
	box-shadow: 0 1px 0 var(--st-line);
}

.st-header-inner {
	max-width: var(--st-max);
	margin: 0 auto;
	padding: 22px var(--st-gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.st-logo {
	font-family: var(--st-font-display);
	font-weight: 700;
	font-size: 19px;
	letter-spacing: 0;
}

.st-primary-nav .st-nav-list {
	list-style: none;
	display: flex;
	flex-direction: row-reverse;
	gap: clamp(20px, 3vw, 44px);
	margin: 0;
	padding: 0;
}

.st-nav-list a {
	font-family: var(--st-font-body);
	font-size: 14px;
	font-weight: 500;
	position: relative;
	padding-bottom: 4px;
}

.st-nav-list a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: currentColor;
	transition: width var(--st-duration-fast) var(--st-ease);
}

.st-nav-list a:hover::after,
.st-nav-list a:focus-visible::after {
	width: 100%;
}

.st-nav-toggle {
	display: none;
}


/* Mobile */

@media (max-width: 780px) {

	.st-primary-nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: var(--st-paper);
		display: flex;
		align-items: center;
		justify-content: center;
		transform: translateY(-100%);
		transition: transform var(--st-duration-med) var(--st-ease);
		z-index: 90;
		direction: rtl;
		overflow: hidden;
	}
	.st-primary-nav.is-open {
		transform: translateY(0);
	}

	.st-nav-list {
		list-style: none;
		display: flex;
		flex-direction: column;
		gap: 28px;
		margin: 0;
		padding: 0;
		text-align: center;
		direction: rtl;
	}

	.st-nav-list a {
		font-size: 15px;
	}

	.st-nav-toggle {
		display: flex;
		flex-direction: column;
		gap: 5px;
		background: none;
		border: none;
		padding: 6px;
		z-index: 95;
		position: relative;
	}

	.st-nav-toggle span {
		width: 22px;
		height: 1px;
		background: var(--st-ink);
	}

	.st-nav-toggle[aria-expanded="true"] span:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	.st-nav-toggle[aria-expanded="true"] span:nth-child(2) {
		opacity: 0;
	}

	.st-nav-toggle[aria-expanded="true"] span:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

}

/* ---- Hero ------------------------------------------------------------- */
.st-hero {
	position: relative;
	height: 65vh;
	min-height: 480px;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
}

.st-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	z-index: 0;
}

.st-hero__overlay {
	position: absolute;
	right: var(--st-gutter);
	bottom: 12%;
	width: min(60ch, calc(100% - (var(--st-gutter) * 2)));
	color: var(--st-white);
	text-align: right;
	z-index: 2;
}

.st-hero__scroll-cue {
	position: absolute;
	right: var(--st-gutter);
	bottom: 40px;
	z-index: 2;
}

/* ---- Editorial intro ---------------------------------------------------- */
.st-intro {
	max-width: 900px;
	margin: 0 auto;
	padding: clamp(90px, 12vw, 160px) var(--st-gutter);
	text-align: center;
}
.st-intro__text {
	font-family: var(--st-font-display);
	font-style: normal;
	font-weight: 400;
	font-size: clamp(20px, 2.6vw, 28px);
	line-height: 1.7;
	color: var(--st-ink-soft);
}

/* ---- Reveal-on-scroll base state ---------------------------------------- */
[data-st-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity var(--st-duration-med) var(--st-ease), transform var(--st-duration-med) var(--st-ease);
	transition-delay: var(--st-delay, 0ms);
}
[data-st-reveal="fade-slow"] { transition-duration: var(--st-duration-slow); }
[data-st-reveal].is-revealed { opacity: 1; transform: translateY(0); }

/* ---- Project Worlds ------------------------------------------------------ */

.st-worlds {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 60px;
	padding: 120px var(--st-gutter);
	align-items: start;
}

.st-world {
	display: block;
	text-decoration: none;
	color: inherit;
}

.st-world__media {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #f5f5f3;
}

.st-world__media img {
	width: 100%;
	height: 520px;
	display: block;
	object-fit: cover;
	transition: transform 1200ms var(--st-ease);
}

.st-world:hover .st-world__media img,
.st-world:focus-visible .st-world__media img {
	transform: scale(1.025);
}

.st-world__caption {
	position: relative;
	padding-top: 28px;
	color: var(--st-black);
}

.st-world__index {
	display: block;
	font-family: var(--st-font-mono);
	font-size: 12px;
	letter-spacing: 0.08em;
	color: var(--st-bronze);
	margin-bottom: 14px;
}

.st-world__title {
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 500;
	color: var(--st-black);
	margin: 0;
	letter-spacing: -0.02em;
}

.st-world__cta {
	display: inline-block;
	margin-top: 18px;
	font-family: var(--st-font-mono);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--st-black);
	opacity: 0.7;
}

/* Mobile */

@media (max-width: 768px) {

	.st-worlds {
		grid-template-columns: 1fr;
		gap: 80px;
		padding: 70px 20px;
	}

	.st-world__caption {
		padding-top: 20px;
	}

	.st-world__title {
		font-size: 30px;
	}
}
/* ---- Meta line (project location / year / type) --------------------------- */
.st-meta-line {
	font-family: var(--st-font-mono);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: var(--st-ink-soft);
	display: flex;
	align-items: center;
	gap: 14px;
}
.st-meta-line::before {
	content: "";
	width: 28px; height: 1px;
	background: var(--st-bronze);
	display: inline-block;
}
.st-meta-line--project {
	max-width: var(--st-max);
	margin: 0 auto;
	padding: 40px var(--st-gutter) 0;
}

/* ---- Archive header / filter --------------------------------------------- */
.st-archive-header {
	max-width: var(--st-max);
	margin: 0 auto;
	padding: clamp(130px, 16vw, 200px) var(--st-gutter) 30px;
}
.st-archive-title { font-size: clamp(32px, 3.2vw, 42px); }
.st-archive-description { max-width: 60ch; margin-top: 18px; color: var(--st-ink-soft); }

.st-category-filter {
	max-width: var(--st-max);
	margin: 0 auto;
	padding: 0 var(--st-gutter) 56px;
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}
.st-category-filter__link {
	font-family: var(--st-font-body);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	padding: 10px 20px;
	border-radius: 999px;
	color: var(--st-ink-soft);
	background: var(--st-paper-deep);
	border: 1px solid transparent;
	transition: background var(--st-duration-fast) var(--st-ease), color var(--st-duration-fast) var(--st-ease);
}
.st-category-filter__link:hover {
	color: var(--st-ink);
	background: var(--st-line);
}
.st-category-filter__link.is-active {
	color: var(--st-white);
	background: var(--st-ink);
}

/* ---- Project gallery --------------------------------------------------------
   Clean, uniform grid: every item is the same width and the same crop
   ratio, with consistent gutters. Auto-fill/minmax keeps it fully
   responsive without extra breakpoints. The lg/md/sm modifier classes
   stay in the markup (unchanged HTML structure) but no longer vary the
   size — they're intentionally normalised here for an even, architectural
   layout instead of a scattered/mixed one. */
.st-masonry {
	max-width: var(--st-max);
	margin: 0 auto;
	padding: 60px var(--st-gutter) 140px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: clamp(20px, 2.4vw, 40px);
}
.st-masonry__item,
.st-masonry__item--lg,
.st-masonry__item--md,
.st-masonry__item--sm {
	grid-column: span 1;
	position: relative;
	overflow: hidden;
}

.st-masonry__media,
.st-masonry__item--lg .st-masonry__media,
.st-masonry__item--md .st-masonry__media,
.st-masonry__item--sm .st-masonry__media {
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--st-paper-deep);
}
.st-masonry__media img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 900ms var(--st-ease);
}
.st-masonry__item:hover .st-masonry__media img { transform: scale(1.03); }

.st-masonry__caption { padding-top: 16px; }
.st-masonry__title { font-size: 18px; font-weight: 500; }
.st-masonry__caption .st-meta-line { margin-top: 6px; font-size: 12px; }
.st-masonry__caption .st-meta-line::before { width: 18px; }

@media (max-width: 560px) {
	.st-masonry { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}

.st-empty-state {
	max-width: var(--st-max);
	margin: 0 auto;
	padding: 0 var(--st-gutter) 160px;
	color: var(--st-ink-soft);
	font-style: italic;
	font-family: var(--st-font-display);
}

/* ---- Single project ------------------------------------------------------ */
.st-project__hero {
	position: relative;
	height: 100vh;
	min-height: 500px;
	overflow: hidden;
	margin-top: 0;
}
.st-project__hero-image {
	width: 100%; height: 100%; object-fit: cover;
	opacity: 0; transform: scale(1.05);
	transition: opacity var(--st-duration-slow) var(--st-ease), transform 2200ms var(--st-ease);
}
.st-project__hero.is-revealed .st-project__hero-image,
.st-project__hero .st-project__hero-image { opacity: 1; transform: scale(1); } /* CSS-only fallback if JS disabled */
.st-project__hero-overlay {
	position: absolute;
	right: var(--st-gutter);
	bottom: 50px;
	color: var(--st-white);
	text-align: right;
}
.st-project__title {
	font-size: clamp(28px, 3.5vw, 44px);
	color: var(--st-white);
	text-shadow: 0 2px 30px rgba(0,0,0,0.25);
	direction: rtl;
	text-align: right;
}

.st-project__intro {
	max-width: 70ch;
	margin: 34px auto 0;
	padding: 0 var(--st-gutter);
	font-size: 18px;
	color: var(--st-ink-soft);
}

.st-sequence {
	max-width: var(--st-max);
	margin: 60px auto 0;
	padding: 0 var(--st-gutter);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(16px, 2vw, 36px);
}
.st-sequence__item--wide { grid-column: 1 / -1; }
.st-sequence__trigger {
	all: unset;
	display: block;
	width: 100%;
	cursor: zoom-in;
	overflow: hidden;
}
.st-sequence__item img {
	width: 100%; height: auto;
	transition: transform 1000ms var(--st-ease), filter 600ms var(--st-ease);
}
.st-sequence__trigger:hover img { transform: scale(1.015); }

/* ---- Full-screen lightbox viewer ----------------------------------------- */
.st-lightbox {
	position: fixed; inset: 0;
	background: var(--st-viewer-bg);
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--st-duration-med) var(--st-ease);
}
.st-lightbox.is-open { opacity: 1; visibility: visible; }
.st-lightbox__stage { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.st-lightbox__image {
	position: absolute;
	max-width: 88vw; max-height: 84vh;
	width: auto; height: auto;
	object-fit: contain;
	opacity: 0;
	transition: opacity var(--st-duration-med) var(--st-ease);
}
.st-lightbox__image.is-active { opacity: 1; }

.st-lightbox__close, .st-lightbox__prev, .st-lightbox__next {
	position: absolute;
	background: none; border: none;
	color: var(--st-white);
	font-size: 34px;
	cursor: pointer;
	opacity: 0.7;
	transition: opacity var(--st-duration-fast) var(--st-ease);
	padding: 12px;
}
.st-lightbox__close:hover, .st-lightbox__prev:hover, .st-lightbox__next:hover { opacity: 1; }
.st-lightbox__close { top: 24px; right: 24px; font-size: 30px; }
.st-lightbox__prev { left: clamp(10px, 3vw, 40px); font-size: 46px; }
.st-lightbox__next { right: clamp(10px, 3vw, 40px); font-size: 46px; }
.st-lightbox__count {
	position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
	color: var(--st-white);
	font-family: var(--st-font-mono);
	font-size: 11px; letter-spacing: 0.16em;
	opacity: 0.7;
}

/* ---- Project pagination --------------------------------------------------- */
.st-project-pagination {
	max-width: var(--st-max);
	margin: 100px auto 0;
	padding: 40px var(--st-gutter) 120px;
	border-top: 1px solid var(--st-line);
	display: flex;
	justify-content: space-between;
	gap: 24px;
}
.st-project-pagination__link { max-width: 45%; }
.st-project-pagination__link .st-eyebrow { display: block; }
.st-project-pagination__link--prev { text-align: left; }
.st-project-pagination__link--next { text-align: right; margin-left: auto; }
.st-project-pagination__link--next .st-eyebrow { padding-left: 0; padding-right: 22px; }
.st-project-pagination__link--next .st-eyebrow::before { left: auto; right: 0; }

/* ---- About ----------------------------------------------------------------- */
.st-about__header {
	max-width: var(--st-max);
	margin: 0 auto;
	padding: clamp(130px, 16vw, 200px) var(--st-gutter) 40px;
}
.st-about__header h1 { font-size: clamp(32px, 3.2vw, 42px); }
.st-about__grid {
	max-width: var(--st-max);
	margin: 0 auto;
	padding: 0 var(--st-gutter) 140px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(30px, 5vw, 80px);
	align-items: start;
}
.st-about__portrait { aspect-ratio: 4/5; overflow: hidden; }
.st-about__portrait img { width: 100%; height: 100%; object-fit: cover; }
.st-about__narrative { font-size: 18px; color: var(--st-ink-soft); padding-top: 12px; }
.st-about__narrative p { margin: 0 0 24px; }
@media (max-width: 820px) {
	.st-about__grid { grid-template-columns: 1fr; }
}

/* ---- Contact ---------------------------------------------------------------- */
.st-contact__header {
	max-width: var(--st-max);
	margin: 0 auto;
	padding: clamp(130px, 16vw, 200px) var(--st-gutter) 40px;
}
.st-contact__header h1 { font-size: clamp(32px, 3.2vw, 42px); }
.st-contact__grid {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 var(--st-gutter) 160px;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(30px, 6vw, 90px);
}
.st-contact__info { font-size: 17px; color: var(--st-ink-soft); }
.st-contact__direct { margin-top: 28px; font-family: var(--st-font-mono); font-size: 14px; letter-spacing: 0.02em; }
.st-contact__direct a { border-bottom: 1px solid var(--st-line); }

.st-form-row { margin-bottom: 22px; }
.st-form-row--hidden { position: absolute; left: -9999px; }
..st-contact-form label {
	display: block;
	font-family: var(--st-font-body);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
	color: var(--st-ink-soft);
	margin-bottom: 10px;
	text-align: right;
}
.st-contact-form input,
.st-contact-form textarea {
	width: 100%;
	border: none;
	border-bottom: 1px solid var(--st-line);
	background: transparent;
	padding: 10px 2px;
	font-family: var(--st-font-body);
	font-size: 16px;
	color: var(--st-ink);
	transition: border-color var(--st-duration-fast) var(--st-ease);
}
.st-contact-form input:focus,
.st-contact-form textarea:focus { border-color: var(--st-bronze); outline: none; }

.st-button {
	font-family: var(--st-font-mono);
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	background: var(--st-ink);
	color: var(--st-white);
	border: none;
	padding: 16px 30px;
	cursor: pointer;
	transition: background var(--st-duration-fast) var(--st-ease), transform var(--st-duration-fast) var(--st-ease);
}
.st-button:hover { background: var(--st-bronze); }
.st-button:active { transform: translateY(1px); }

.st-contact-form__status { margin-top: 16px; font-size: 14px; color: var(--st-ink-soft); min-height: 20px; }
.st-contact-form__status[data-state="error"] { color: #9a4a3a; }
.st-contact-form__status[data-state="success"] { color: var(--st-bronze); }

@media (max-width: 780px) {
	.st-contact__grid { grid-template-columns: 1fr; }
}

/* ---- Footer ---------------------------------------------------------------- */
.site-footer {
	background-color: var(--st-ink);
	color: var(--st-paper);
	padding: 90px 0 0;
}
.st-footer-inner {
	max-width: var(--st-max);
	margin: 0 auto;
	padding: 0 var(--st-gutter) 60px;
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 40px;
}
.st-logo--footer { font-size: 20px; font-weight: 700; color: var(--st-paper); }
.st-footer-tagline {
	font-family: var(--st-font-body);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
	color: var(--st-bronze-light);
	margin-top: 14px;
}
.st-footer-nav-list {
	list-style: none;
	margin: 0; padding: 0;
	display: flex; flex-direction: column; gap: 14px;
}
.st-footer-nav-list a {
	font-family: var(--st-font-body);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	color: var(--st-paper);
	opacity: 0.85;
}
.st-footer-nav-list a:hover { opacity: 1; }
.st-footer-meta p { margin: 0 0 10px; font-size: 14px; }
.st-footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.12);
	padding: 24px var(--st-gutter);
	font-family: var(--st-font-body);
	font-size: 12px;
	letter-spacing: 0;
	opacity: 0.65;
}
@media (max-width: 780px) {
	.st-footer-inner { grid-template-columns: 1fr; gap: 34px; }
}
/* Fix Hebrew punctuation direction */
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
li {
    direction: rtl;
    unicode-bidi: plaintext;
}
/* Hebrew content RTL only */

.entry-content,
.st-page-content,
.project-content,
.single-project,
.page-content {
    direction: rtl;
    text-align: right;
    unicode-bidi: plaintext;
}
.entry-content p,
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    text-align: right;
}
/* Hebrew content only - keep header natural */
.entry-content,
.st-page-content,
.project-content,
.single-project,
.page-content {
    direction: rtl;
    text-align: right;
    unicode-bidi: plaintext;
}

html, body {
    overflow-x: hidden;
}
/* Restore header direction */
.site-header,
.st-header-inner {
    direction: ltr;
}

.st-logo {
    direction: ltr;
}

.st-primary-nav {
    direction: ltr;
}
/* Mobile header layout */

@media (max-width: 780px) {

    .st-header-inner {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .st-logo {
        order: 1;
    }

    .st-nav-toggle {
        order: 2;
        display: flex;
    }

    .st-primary-nav {
        order: 3;
    }
    /* Mobile menu size fix */

@media (max-width: 780px) {

    .st-primary-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        max-width: 100vw;
        overflow: hidden;
    }
    html, body {
	overflow-x: hidden;
}
.st-home {
	overflow-x: hidden;
}
/* Hebrew header text alignment only */
.st-header-inner {
	direction: ltr;
}

.st-logo {
	direction: rtl;
	text-align: right;
}

.st-nav-list {
	direction: rtl;
}

.st-nav-list a {
	text-align: right;
}
.st-footer-meta {
    text-align: left;
}

.st-footer-meta .st-eyebrow {
    padding-left: 0;
}

.st-footer-meta a {
    display: block;
}
@media (max-width: 768px) {
	.st-category-filter {
		flex-wrap: nowrap;
		overflow-x: auto;
		white-space: nowrap;
		padding-bottom: 30px;
	}

	.st-category-filter__link {
		flex-shrink: 0;
	}
/* ---- Footer Contact Form ----------------------------------------------- */

.st-footer-form-row {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: 12px;
	direction: rtl;
	width: 100%;
}

.st-footer-field {
	flex: 1 1 0;
	min-width: 0;
}

.st-footer-field p {
	margin: 0;
	width: 100%;
}

.st-footer-field .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.st-footer-field input[type="text"],
.st-footer-field input[type="tel"],
.st-footer-field input[type="email"] {
	width: 100%;
	height: 44px;
	box-sizing: border-box;
}

.st-footer-field--button {
	flex: 0 0 auto;
}

.st-footer-field--button p {
	width: auto;
}

.st-footer-field--button input[type="submit"] {
	height: 44px;
	padding: 0 24px;
	white-space: nowrap;
}
/* TEST FOOTER FLEX */
.st-footer-form-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 12px !important;
}